aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/GetPluginDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core-utils/lumina-config/GetPluginDialog.h')
-rw-r--r--src-qt5/core-utils/lumina-config/GetPluginDialog.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src-qt5/core-utils/lumina-config/GetPluginDialog.h b/src-qt5/core-utils/lumina-config/GetPluginDialog.h
new file mode 100644
index 00000000..b728edb3
--- /dev/null
+++ b/src-qt5/core-utils/lumina-config/GetPluginDialog.h
@@ -0,0 +1,38 @@
+//===========================================
+// Lumina-DE source code
+// Copyright (c) 2015, Ken Moore
+// Available under the 3-clause BSD license
+// See the LICENSE file for full details
+//===========================================
+#ifndef _LUMINA_CONFIG_GET_PLUGIN_DIALOG_H
+#define _LUMINA_CONFIG_GET_PLUGIN_DIALOG_H
+
+#include <QDialog>
+
+#include "LPlugins.h"
+
+namespace Ui{
+ class GetPluginDialog;
+};
+
+class GetPluginDialog : public QDialog{
+ Q_OBJECT
+public:
+ GetPluginDialog(QWidget* parent = 0);
+ ~GetPluginDialog();
+
+ void LoadPlugins(QString type, LPlugins *DB);
+
+ bool selected; //this is set to true if a plugin was selected by the user
+ QString plugID; //this is set to the ID of the selected plugin
+
+private:
+ Ui::GetPluginDialog *ui;
+
+private slots:
+ void pluginchanged();
+ void accept();
+
+};
+
+#endif \ No newline at end of file
bgstack15