From 6f72ae7e3e61b330dd1874a951b258075649fe8e Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Thu, 29 Oct 2009 09:43:25 +0000 Subject: added kde notifications plugin (author: Artur Guzik) (Closes issue 164) git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1337 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/kdenotify/settingsdialog.h | 28 ++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/plugins/General/kdenotify/settingsdialog.h (limited to 'src/plugins/General/kdenotify/settingsdialog.h') diff --git a/src/plugins/General/kdenotify/settingsdialog.h b/src/plugins/General/kdenotify/settingsdialog.h new file mode 100644 index 000000000..500167612 --- /dev/null +++ b/src/plugins/General/kdenotify/settingsdialog.h @@ -0,0 +1,28 @@ +#ifndef SETTINGSDIALOG_H +#define SETTINGSDIALOG_H + +#include + +namespace Ui { + class SettingsDialog; +} + +class SettingsDialog : public QDialog +{ +Q_OBJECT + +public: + SettingsDialog(QWidget *parent = 0); + ~SettingsDialog(); + +public slots: + virtual void accept(); + +protected: + void changeEvent(QEvent *e); + +private: + Ui::SettingsDialog *ui; +}; + +#endif // SETTINGSDIALOG_H -- cgit v1.2.3-13-gbd6f