diff options
Diffstat (limited to 'src/plugins/General/kdenotify/kdenotifyfactory.h')
| -rw-r--r-- | src/plugins/General/kdenotify/kdenotifyfactory.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/plugins/General/kdenotify/kdenotifyfactory.h b/src/plugins/General/kdenotify/kdenotifyfactory.h new file mode 100644 index 000000000..075f9b5f4 --- /dev/null +++ b/src/plugins/General/kdenotify/kdenotifyfactory.h @@ -0,0 +1,23 @@ +#ifndef KDENOTIFYFACTORY_H +#define KDENOTIFYFACTORY_H + +#include <QObject> +#include <QTranslator> +#include <QDialog> + +#include <qmmpui/general.h> +#include <qmmpui/generalfactory.h> + +class KdeNotifyFactory : public QObject, public GeneralFactory +{ + Q_OBJECT; + Q_INTERFACES(GeneralFactory) +public: + const GeneralProperties properties() const; + General *create(QObject *parent); + QDialog *createConfigDialog(QWidget *parent); + void showAbout(QWidget *parent); + QTranslator *createTranslator(QObject *parent); +}; + +#endif // KDENOTIFYFACTORY_H |
