diff options
Diffstat (limited to 'juk/exampleoptions.h')
-rw-r--r-- | juk/exampleoptions.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/juk/exampleoptions.h b/juk/exampleoptions.h new file mode 100644 index 00000000..26ee23c1 --- /dev/null +++ b/juk/exampleoptions.h @@ -0,0 +1,63 @@ +/*************************************************************************** + begin : Thu Oct 28 2004 + copyright : (C) 2004 by Michael Pyne + email : michael.pyne@kdemail.net +***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef JUK_EXAMPLEOPTIONS_H +#define JUK_EXAMPLEOPTIONS_H + +#include <qdialog.h> +#include "exampleoptionsbase.h" + +class ExampleOptions : public ExampleOptionsBase +{ + Q_OBJECT + public: + ExampleOptions(QWidget *parent); + + protected slots: + virtual void exampleSelectionChanged(); + virtual void exampleDataChanged(); + virtual void exampleFileChanged(); +}; + +// We're not using KDialog(Base) because this dialog won't have any push +// buttons to close it. It's just a little floating dialog. +class ExampleOptionsDialog : public QDialog +{ + Q_OBJECT + public: + ExampleOptionsDialog(QWidget *parent); + + const ExampleOptions *widget() const { return m_options; } + + protected: + virtual void hideEvent(QHideEvent *); + virtual void showEvent(QShowEvent *); + + protected slots: + void fileModeSelected(); + + signals: + void fileChanged(const QString &); + void dataChanged(); + void signalHidden(); + void signalShown(); + + private: + ExampleOptions *m_options; +}; + +#endif /* JUK_EXAMPLEOPTIONS_H */ + +// vim: set et sw=4 ts=4: |