diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | e2de64d6f1beb9e492daf5b886e19933c1fa41dd (patch) | |
tree | 9047cf9e6b5c43878d5bf82660adae77ceee097a /juk/exampleoptions.h | |
download | tdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.tar.gz tdemultimedia-e2de64d6f1beb9e492daf5b886e19933c1fa41dd.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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: |