From ed5ecf7ea7a482b4649e66ecb35fbc60af680684 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 25 Apr 2016 13:08:12 -0400 Subject: Rearrange the Lumina source tree quite a bit: Now the utilites are arranged by category (core, core-utils, desktop-utils), so all the -utils may be excluded by a package system (or turned into separate packages) as needed. --- src-qt5/core-utils/lumina-config/GetPluginDialog.h | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src-qt5/core-utils/lumina-config/GetPluginDialog.h (limited to 'src-qt5/core-utils/lumina-config/GetPluginDialog.h') 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 + +#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 -- cgit