aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/src-cpp/plugins-desktop.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-01-08 14:19:58 -0500
committerKen Moore <ken@ixsystems.com>2018-01-08 14:19:58 -0500
commit9fe1845f0e2d75dc8a6d3d49fac6780b394b0067 (patch)
tree606fbe23fe8d0cd7311b4fe6910f5136dc9bccc8 /src-qt5/src-cpp/plugins-desktop.h
parentChanged color and removed comments from Matrix screensaver (diff)
downloadlumina-9fe1845f0e2d75dc8a6d3d49fac6780b394b0067.tar.gz
lumina-9fe1845f0e2d75dc8a6d3d49fac6780b394b0067.tar.bz2
lumina-9fe1845f0e2d75dc8a6d3d49fac6780b394b0067.zip
Another large update to Lumina 2:
Starting to hook up the new QML window frame with the C++ backend.
Diffstat (limited to 'src-qt5/src-cpp/plugins-desktop.h')
-rw-r--r--src-qt5/src-cpp/plugins-desktop.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src-qt5/src-cpp/plugins-desktop.h b/src-qt5/src-cpp/plugins-desktop.h
index 4d34f188..260f9070 100644
--- a/src-qt5/src-cpp/plugins-desktop.h
+++ b/src-qt5/src-cpp/plugins-desktop.h
@@ -20,19 +20,16 @@
#include <QIcon>
class DTPlugin : public BasePlugin{
-private:
- QSize gridSize;
- bool panelPossible;
- QIcon pluginIcon;
+
public:
DTPlugin();
~DTPlugin();
virtual bool isValid() Q_DECL_OVERRIDE;
- QSize getSize { return gridSize; }
- bool getPanelable { return panelPossible; }
- QIcon getIcon { return pluginIcon; }
+ QSize getSize();
+ bool supportsPanel();
+ QString getIcon();
};
#endif
bgstack15