editfilterdialog.cpp
来自「Amarok是一款在LINUX或其他类UNIX操作系统中运行的音频播放器软件。 」· C++ 代码 · 共 792 行 · 第 1/2 页
CPP
792 行
// (c) 2006 Giovanni Venturi <giovanni@kde-it.org>// See COPYING file for licensing information.#include <qlayout.h>#include <qdatetime.h>#include <qlabel.h>#include <qgroupbox.h>#include <qradiobutton.h>#include <qlineedit.h>#include <qcombobox.h>#include <qcheckbox.h>#include <qspinbox.h>#include <qtooltip.h>#include <qwhatsthis.h>#include <kglobal.h>#include <klineedit.h>#include <klocale.h>#include <kpushbutton.h>#include <kmessagebox.h>#include <ktoolbarbutton.h>#include "amarokcore/amarokconfig.h"#include "collectiondb.h"#include "debug.h"#include "editfilterdialog.h"#include "metabundle.h"EditFilterDialog::EditFilterDialog( QWidget* parent, bool metaBundleKeywords, const QString &text ) : KDialogBase( Plain, i18n("Edit Filter"), User1|User2|Default|Ok|Cancel, Cancel, parent, "editfilter", /*modal*/true, /*separator*/false ), m_minMaxRadio(0), m_filterText(text){ // Redefine "Default" button KGuiItem defaultButton( i18n("&Append"), "add" ); setButtonWhatsThis( Default, i18n( "<qt><p>By clicking here you can add the defined condition. The \"OK\" button will " "close the dialog and apply the defined filter. With this button you can add more than " "one condition to create a more complex filtering condition.</p></qt>" ) ); setButtonTip(Default, i18n( "Add this filter condition to the list" ) ); setButtonGuiItem( Default, defaultButton ); // define "User1" button KGuiItem user1Button( i18n("&Clear"), "remove" ); setButtonWhatsThis( User1, i18n( "<p>By clicking here you will clear the filter. If you intend to " "undo the last appending just click on the \"Undo\" button.</p>" ) ); setButtonTip(User1, i18n( "Clear the filter" ) ); setButtonGuiItem( User1, user1Button ); // define "User2" button KGuiItem user2Button( i18n("this \"undo\" will undo the last appended filter... be careful how you will translate it " "to avoid two buttons (\"Cancel\" and \"Undo\") with same label in the same dialog", "&Undo"), "undo" ); setButtonWhatsThis( User2, i18n( "<p>Clicking here will remove the last appended filter. " "You cannot undo more than one action.</p>" ) ); setButtonTip(User2, i18n( "Remove last appended filter" ) ); setButtonGuiItem( User2, user2Button ); m_mainLay = new QVBoxLayout( plainPage() ); m_mainLay->activate(); // no filter rule available m_appended = false; // text explanation of this dialog QLabel *label1 = new QLabel( plainPage(), "label1" ); label1->setText( i18n("<p>Edit the filter for finding tracks with specific attributes" ", e.g. you can look for a track that has a length of three minutes.</p>") ); m_mainLay->addWidget( label1 ); m_mainLay->addItem( new QSpacerItem( 10, 10, QSizePolicy::Expanding, QSizePolicy::Minimum ) ); // choosing keyword filtering QHBoxLayout *keywordLayout = new QHBoxLayout( plainPage() ); QLabel *label3 = new QLabel( i18n("Attribute:"), plainPage(), "label3" ); QWhatsThis::add( label3, i18n("you can translate the keyword as you will do for the combobox", "<p>Here you can choose to <i>Simple Search</i> directly or to use " "some keywords to specify some attributes, such as the artist name " "and so on. The keywords selectable are divided by their specific value. " "Some keywords are numeric and others are alphanumeric. You do not need " "to know it directly. When a keyword is numeric it will be used to search " "the numeric data for each track.</p><p>The alphanumeric " "keywords are the following: <b>album</b>, <b>artist</b>, <b>filename</b> " " (including path), <b>mountpoint</b> (e.g. /home/user1), <b>filetype</b> " " (you can specify mp3, ogg, flac, ... and the file extensions will be matched), " "<b>genre</b>, <b>comment</b>, <b>composer</b>, <b>directory</b>, <b>lyrics</b>, " "<b>title</b>, and <b>label</b>.</p>" "<p>The numeric keywords are: <b>bitrate</b>, <b>disc/discnumber</b>, " "<b>length</b> (expressed in seconds), <b>playcount</b>, <b>rating</b>, " "<b>samplerate</b>, <b>score</b>, <b>size/filesize</b> (expressed in bytes, " "kbytes, and megabytes as specified in the unit for the filesize keyword), " "<b>track</b> (i.e. the track number), and <b>year</b>.</p>") ); keywordLayout->addWidget( label3 ); keywordLayout->addItem( new QSpacerItem( 5, 10, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); m_comboKeyword = new QComboBox( plainPage(), "keywordComboBox"); QToolTip::add( m_comboKeyword, i18n("Select an attribute for the filter") ); label3->setBuddy( m_comboKeyword ); m_comboKeyword->insertItem( i18n("Simple Search") ); m_vector.push_back("Simple Search"); if( metaBundleKeywords ) { for( int i=0; i < MetaBundle::NUM_COLUMNS; ++i ) { if( i == MetaBundle::Mood ) continue; if( !AmarokConfig::useRatings() && i == MetaBundle::Rating ) continue; if( !AmarokConfig::useScores() && i == MetaBundle::Score ) continue; m_comboKeyword->insertItem( MetaBundle::prettyColumnName( i ) ); m_vector.push_back( MetaBundle::exactColumnName( i ).lower() ); } } else { m_comboKeyword->insertItem( i18n("Album") ); m_vector.push_back( "album" ); m_comboKeyword->insertItem( i18n("Artist") ); m_vector.push_back( "artist" ); m_comboKeyword->insertItem( i18n("Bitrate") ); m_vector.push_back( "bitrate" ); m_comboKeyword->insertItem( i18n("BPM") ); m_vector.push_back( "bpm" ); m_comboKeyword->insertItem( i18n("Comment") ); m_vector.push_back( "comment" ); m_comboKeyword->insertItem( i18n("Composer") ); m_vector.push_back( "composer" ); m_comboKeyword->insertItem( i18n("Directory") ); m_vector.push_back( "directory" ); m_comboKeyword->insertItem( i18n("Disc Number") ); m_vector.push_back( "disc" ); m_comboKeyword->insertItem( i18n("Filename") ); m_vector.push_back( "filename" ); m_comboKeyword->insertItem( i18n("Mount Point") ); m_vector.push_back( "mountpoint" ); m_comboKeyword->insertItem( i18n("Filetype") ); m_vector.push_back( "filetype" ); m_comboKeyword->insertItem( i18n("Genre") ); m_vector.push_back( "genre" ); m_comboKeyword->insertItem( i18n("Length") ); m_vector.push_back( "length" ); m_comboKeyword->insertItem( i18n("Label") ); m_vector.push_back( "label" ); m_comboKeyword->insertItem( i18n("Lyrics") ); m_vector.push_back( "lyrics" ); m_comboKeyword->insertItem( i18n("Play Count") ); m_vector.push_back( "playcount" ); if( AmarokConfig::useRatings() ) { m_comboKeyword->insertItem( i18n("Rating") ); m_vector.push_back( "rating" ); } m_comboKeyword->insertItem( i18n("Sample Rate") ); m_vector.push_back( "samplerate" ); if( AmarokConfig::useScores() ) { m_comboKeyword->insertItem( i18n("Score") ); m_vector.push_back( "score" ); } m_comboKeyword->insertItem( i18n("File Size") ); m_vector.push_back( "size" ); m_comboKeyword->insertItem( i18n("Title") ); m_vector.push_back( "title" ); m_comboKeyword->insertItem( i18n("Track") ); m_vector.push_back( "track" ); m_comboKeyword->insertItem( i18n("Year") ); m_vector.push_back( "year" ); } // the "Simple Search" text is selected in the comboKeyword m_selectedIndex = 0; keywordLayout->addWidget( m_comboKeyword ); keywordLayout->addItem( new QSpacerItem( 5, 10, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); m_editKeyword = new KLineEdit( plainPage(), "editKeywordBox" ); QWhatsThis::add( m_editKeyword, i18n("<p>Type the attribute value or the text to look for here.</p>") ); keywordLayout->addWidget( m_editKeyword ); m_mainLay->addLayout( keywordLayout ); m_mainLay->addItem( new QSpacerItem( 10, 10, QSizePolicy::Expanding, QSizePolicy::Minimum ) ); connect(m_comboKeyword, SIGNAL(activated(int)), this, SLOT(selectedKeyword(int))); // group of options on numeric attribute keywords: a value <,>,= ... or a value between Min and Max m_groupBox = new QGroupBox( plainPage(), "groupBox" ); m_groupBox->setTitle( i18n( "Attribute value is" ) ); m_mainLay->addWidget( m_groupBox ); m_mainLay->addItem( new QSpacerItem( 10, 10, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); QVBoxLayout *vertLayout = new QVBoxLayout( m_groupBox, 15, 5 ); // choose other keyword parameters: smaller than, greater than, equal to... QHBoxLayout *paramLayout = new QHBoxLayout( vertLayout ); m_comboCondition = new QComboBox( m_groupBox, "valuecondition"); m_comboCondition->insertItem( i18n("smaller than") ); m_comboCondition->insertItem( i18n("larger than") ); m_comboCondition->insertItem( i18n("equal to") ); m_comboCondition->insertItem( i18n("between") ); paramLayout->addWidget( m_comboCondition ); paramLayout->addItem( new QSpacerItem( 5, 10, QSizePolicy::Fixed, QSizePolicy::Minimum ) ); m_spinMin1 = new QSpinBox( m_groupBox, "minimum1" ); paramLayout->addWidget( m_spinMin1 ); paramLayout->addItem( new QSpacerItem( 5, 10, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); m_spinMin2 = new QSpinBox( m_groupBox, "minimum2" ); paramLayout->addWidget( m_spinMin2 ); paramLayout->addItem( new QSpacerItem( 5, 10, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); connect(m_spinMin1, SIGNAL(valueChanged(int)), this, SLOT(minSpinChanged(int))); m_andLabel = new QLabel( i18n("and"), m_groupBox, "andLabel"); paramLayout->addWidget( m_andLabel ); paramLayout->addItem( new QSpacerItem( 5, 10, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); m_spinMax1 = new QSpinBox( m_groupBox, "maximum1" ); paramLayout->addWidget( m_spinMax1 ); paramLayout->addItem( new QSpacerItem( 5, 10, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); m_spinMax2 = new QSpinBox( m_groupBox, "maximum2" ); paramLayout->addWidget( m_spinMax2 ); connect(m_spinMax1, SIGNAL(valueChanged(int)), this, SLOT(maxSpinChanged(int))); QHBoxLayout *filesizeLayout = new QHBoxLayout( vertLayout ); filesizeLayout->setAlignment( AlignLeft ); m_filesizeLabel = new QLabel( i18n("Unit:"), m_groupBox, "filesizeLabel"); filesizeLayout->addWidget( m_filesizeLabel ); filesizeLayout->addItem( new QSpacerItem( 5, 10, QSizePolicy::Fixed, QSizePolicy::Minimum ) ); m_comboUnitSize = new QComboBox( m_groupBox, "comboUnitSize" ); m_filesizeLabel->setBuddy( m_comboUnitSize ); m_comboUnitSize->insertItem( i18n("B (1 Byte)") ); m_comboUnitSize->insertItem( i18n("KB (1024 Bytes)") ); m_comboUnitSize->insertItem( i18n("MB (1024 KB)") ); filesizeLayout->addWidget( m_comboUnitSize ); // type text selected textWanted(); // check the "One Value Choosing" by default chooseOneValue(); connect( m_comboCondition, SIGNAL(activated(int)), SLOT(chooseCondition(int)) ); QHBoxLayout *otherOptionsLayout = new QHBoxLayout( plainPage() ); otherOptionsLayout->setAlignment( AlignHCenter ); m_mainLay->addLayout( otherOptionsLayout ); // the groupbox to select the action filter m_groupBox2 = new QGroupBox( plainPage(), "groupBox2" ); m_groupBox2->setTitle( i18n( "Filter action" ) ); otherOptionsLayout->addWidget( m_groupBox2 ); QVBoxLayout* ratioLay = new QVBoxLayout( m_groupBox2, 15, 0 ); m_checkALL = new QRadioButton( i18n("Match all words"), m_groupBox2, "checkall" ); QToolTip::add( m_checkALL, i18n("<p>Check this box to look for the tracks that contain all the words you typed " "in the related Simple Search edit box</p>")); ratioLay->addWidget( m_checkALL ); m_checkAtLeastOne = new QRadioButton( i18n("Match any word"), m_groupBox2, "checkor"); QToolTip::add( m_checkAtLeastOne, i18n("<p>Check this box to look for the tracks that contain at least one of the words " "you typed in the related Simple Search edit box</p>")); ratioLay->addWidget( m_checkAtLeastOne ); m_checkExactly = new QRadioButton( i18n("Exact match"), m_groupBox2, "checkexactly"); QToolTip::add( m_checkExactly, i18n("<p>Check this box to look for all the tracks that contain exactly the words you typed " "in the related Simple Search edit box</p>")); ratioLay->addWidget( m_checkExactly ); m_checkExclude = new QRadioButton( i18n("Exclude"), m_groupBox2, "checkexclude"); QToolTip::add( m_checkExclude, i18n("<p>Check this box to look for all the tracks that do not contain the words you typed " "in the related Simple Search edit box</p>")); ratioLay->addWidget( m_checkExclude ); m_actionCheck << m_checkALL; m_actionCheck << m_checkAtLeastOne; m_actionCheck << m_checkExactly; m_actionCheck << m_checkExclude; connect( m_checkALL, SIGNAL(clicked()), this, SLOT(slotCheckAll()) ); connect( m_checkAtLeastOne, SIGNAL(clicked()), this, SLOT(slotCheckAtLeastOne()) ); connect( m_checkExactly, SIGNAL(clicked()), this, SLOT(slotCheckExactly()) ); connect( m_checkExclude, SIGNAL(clicked()), this, SLOT(slotCheckExclude()) ); // check "select all words" as default slotCheckAll(); // some vertical space otherOptionsLayout->addItem( new QSpacerItem( 50, 5, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); QVBoxLayout* verticalCondLay = new QVBoxLayout( otherOptionsLayout, 15, 0 ); m_groupBox3 = new QGroupBox( plainPage(), "groupBox3" ); m_groupBox3->setTitle( i18n( "Appending condition" ) ); verticalCondLay->addWidget( m_groupBox3 ); QVBoxLayout* ratioLay2 = new QVBoxLayout( m_groupBox3, 15, 0 ); m_checkAND = new QRadioButton( i18n("AND logic condition", "AND"), m_groupBox3, "checkAND" ); QToolTip::add( m_checkAND, i18n("<p>Check this box if you want to add another condition and you want that the filter " "to match both the previous conditions and this new one</p>")); ratioLay2->addWidget( m_checkAND ); m_checkOR = new QRadioButton( i18n("OR logic condition", "OR"), m_groupBox3, "checkOR" ); QToolTip::add( m_checkOR, i18n("<p>Check this box if you want to add another condition and you want that the filter " "to match either the previous conditions or this new one</p>")); ratioLay2->addWidget( m_checkOR ); otherOptionsLayout->addItem( new QSpacerItem( 10, 10, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); m_prefixNOT = new QCheckBox( i18n("Invert condition"), plainPage(), "prefixNOT" ); QToolTip::add( m_prefixNOT, i18n("Check this box to negate the defined filter condition")); QWhatsThis::add( m_prefixNOT, i18n("<p>If this option is checked the defined filter condition will be negated. " "This means that, for example, you can define a filter that looks for all " "tracks that are not of a specific album, artist, and so on.</p>")); verticalCondLay->addWidget( m_prefixNOT ); m_prefixNOT->setEnabled( false ); connect(m_prefixNOT, SIGNAL(clicked()), SLOT(assignPrefixNOT())); m_mainLay->addItem( new QSpacerItem( 10, 20, QSizePolicy::Minimum, QSizePolicy::Minimum ) ); // you need to append at least one filter condition to specify if do // an "AND" or an "OR" with the next condition if the filter is empty if (m_filterText.isEmpty()) m_groupBox3->setEnabled( false ); connect( m_checkAND, SIGNAL(clicked()), SLOT(slotCheckAND()) ); connect( m_checkOR, SIGNAL(clicked()), SLOT(slotCheckOR()) ); // check "AND" condition as default slotCheckAND(); // setup Min Max Value spin setMinMaxValueSpins();}EditFilterDialog::~EditFilterDialog(){ delete m_editKeyword;}QString EditFilterDialog::filter() const{ return m_filterText;}void EditFilterDialog::exclusiveSelectOf( int which ){ int size = static_cast<int>( m_actionCheck.count() ); for ( int i = 0; i < size; i++ ) if ( i != which ) m_actionCheck[i]->setChecked( false ); else m_actionCheck[i]->setChecked( true );}QString EditFilterDialog::keywordConditionString(const QString& keyword) const{ // this member is called when there is a keyword that needs numeric attributes QString result, unit; if (m_vector.at(m_selectedIndex) == "size") switch (m_comboUnitSize->currentItem()) { case 1: // kbytes unit = "k"; break; case 2: // mbytes unit = "m"; break; } switch(m_comboCondition->currentItem()) { case 0: // less than... result = m_strPrefixNOT + keyword + ":<"; if (keyword == "length") result += QString::number( m_spinMin1->value() * 60 + m_spinMin2->value() ) + unit; else result += m_spinMin1->text() + unit; break; case 1:
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?