aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/kdenotify/kdenotifyfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/kdenotify/kdenotifyfactory.cpp')
-rw-r--r--src/plugins/General/kdenotify/kdenotifyfactory.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/plugins/General/kdenotify/kdenotifyfactory.cpp b/src/plugins/General/kdenotify/kdenotifyfactory.cpp
new file mode 100644
index 000000000..2fdd9f75b
--- /dev/null
+++ b/src/plugins/General/kdenotify/kdenotifyfactory.cpp
@@ -0,0 +1,43 @@
+#include "kdenotifyfactory.h"
+#include "kdenotify.h"
+#include "settingsdialog.h"
+
+#include <QtGui>
+
+const GeneralProperties KdeNotifyFactory::properties() const
+{
+ GeneralProperties properties;
+ properties.name = tr("KDE 4 notification plugin");
+ properties.shortName = "kdenotify_icon";
+ properties.hasAbout = TRUE;
+ properties.hasSettings = TRUE;
+ properties.visibilityControl = FALSE;
+ return properties;
+}
+
+General *KdeNotifyFactory::create(QObject *parent)
+{
+ return new KdeNotify(parent);
+}
+
+QDialog *KdeNotifyFactory::createConfigDialog(QWidget *parent)
+{
+ return new SettingsDialog(parent);
+}
+
+void KdeNotifyFactory::showAbout(QWidget *parent)
+{
+ QMessageBox::about (parent, tr("About KDE Notification Plugin"),
+ tr("KDE 4 notification plugin for Qmmp \n") +
+ "Artur Guzik <a.guzik88@gmail.com>");
+}
+
+QTranslator *KdeNotifyFactory::createTranslator(QObject *parent)
+{
+ QTranslator *translator = new QTranslator(parent);
+ QString locale = Qmmp::systemLanguageID();
+ translator->load(QString(":/kdenotify_plugin_") + locale);
+ return translator;
+}
+
+Q_EXPORT_PLUGIN(KdeNotifyFactory)