diff options
Diffstat (limited to 'src/dirdialog.h')
-rwxr-xr-x | src/dirdialog.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/dirdialog.h b/src/dirdialog.h new file mode 100755 index 0000000..4227a9e --- /dev/null +++ b/src/dirdialog.h @@ -0,0 +1,65 @@ + +#ifndef DIRDIALOG_H +#define DIRDIALOG_H + +#include <kdialog.h> + +class Config; + +class QCheckBox; + +class KLineEdit; +class KPushButton; +// class KURLRequester; +class KListBox; + +/** + * @short The Replay Gain Tool + * @author Daniel Faust <[email protected]> + * @version 0.3 + */ +class DirDialog : public KDialog +{ + Q_OBJECT +public: + enum Mode { + Convert = 0x0001, + ReplayGain = 0x0002 + }; + + /** + * Constructor + */ + DirDialog( Config*, Mode, QWidget* parent=0, const char* name=0, bool modal=true, WFlags f=0 ); + + /** + * Destructor + */ + virtual ~DirDialog(); + + QString directory; + QStringList selectedFileTypes; + bool recursive; + +private slots: + void selectDirectoryClicked(); + void okClicked(); + void selectAllClicked(); + void selectNoneClicked(); + void recursiveToggled( bool ); + +private: +// KURLRequester* uDirectory; + KLineEdit* lDirectory; + KPushButton* pDirectory; + KListBox* fileTypes; + KPushButton* pSelectAll; + KPushButton* pSelectNone; + QCheckBox* cRecursive; + KPushButton* pCancel; + KPushButton* pOk; + +}; + + +#endif |