editfilterdialog.h

来自「Amarok是一款在LINUX或其他类UNIX操作系统中运行的音频播放器软件。 」· C头文件 代码 · 共 108 行

H
108
字号
// (c) 2006 Giovanni Venturi <giovanni@kde-it.org>// See COPYING file for licensing information.#ifndef AMAROK_EDITFILTERDIALOG_H#define AMAROK_EDITFILTERDIALOG_H#include <qvaluelist.h>#include <qvaluevector.h>#include <kdialogbase.h>class QWidget;class QVBoxLayout;class QComboBox;class QCheckBox;class QLineEdit;class QRadioButton;class QGroupBox;class QSpinBox;class QStringList;class KComboBox;class EditFilterDialog : public KDialogBase{    Q_OBJECT    public:        EditFilterDialog( QWidget* parent, bool metaBundleKeywords, const QString &text = "" );        ~EditFilterDialog();        QString filter() const;    signals:        void filterChanged( const QString &filter );    private:        QVBoxLayout *m_mainLay;        QCheckBox *m_prefixNOT;        QComboBox *m_comboKeyword;        KLineEdit *m_editKeyword;        QGroupBox *m_groupBox;        QComboBox *m_comboCondition;        QLabel *m_filesizeLabel;        QComboBox *m_comboUnitSize;        QRadioButton *m_minMaxRadio;        QSpinBox *m_spinMin1, *m_spinMin2;        QLabel *m_andLabel;        QSpinBox *m_spinMax1, *m_spinMax2;        QGroupBox *m_groupBox2;        QRadioButton *m_checkALL;        QRadioButton *m_checkAtLeastOne;        QRadioButton *m_checkExactly;        QRadioButton *m_checkExclude;        QValueList<QRadioButton*> m_actionCheck;        QGroupBox *m_groupBox3;        QRadioButton *m_checkAND;        QRadioButton *m_checkOR;        bool m_appended;               // true if a filter appended        int m_selectedIndex;           // the position of the selected keyword in the combobox        QValueVector<QString> m_vector; // the vector of the amarok filter keyword        QString m_filterText;          // the resulting filter string        QString m_previousFilterText;  // the previous resulting filter string        QString m_strPrefixNOT;        // is empty if no NOT prefix is needed else it's "-"    private:        void exclusiveSelectOf( int which );        QString keywordConditionString(const QString& keyword) const;        void setMinMaxValueSpins();    private slots:        void selectedKeyword(int index);        void minSpinChanged(int value);        void maxSpinChanged(int value);        void textWanted();        void textWanted( const QStringList &completions );        void valueWanted();        void chooseCondition(int index);        void chooseOneValue();        void chooseMinMaxValue();        void slotCheckAll();        void slotCheckAtLeastOne();        void slotCheckExactly();        void slotCheckExclude();        void slotCheckAND();        void slotCheckOR();        void assignPrefixNOT();    protected slots:        virtual void slotDefault();        virtual void slotUser1();        virtual void slotUser2();        virtual void slotOk();};#endif /* AMAROK_EDITFILTERDIALOG_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?