1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//===========================================
// Lumina-desktop source code
// Copyright (c) 2018, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
// This is the Widgets version of a generic plugin
//===========================================
#ifndef _DESKTOP_WIDGETS_GENERIC_PLUGIN_H
#define _DESKTOP_WIDGETS_GENERIC_PLUGIN_H
#include <global-includes.h>
//Base plugin type for a canvas/widget
class Plugin : public QWidget{
Q_OBJECT
private:
QString _id;
signals:
void orientationChanged();
public:
QBoxLayout *boxLayout;
bool isPanelPlugin;
bool isVertical; //only used for panel plugins
//These static functions are defined in "Plugin.cpp"
static QStringList built_in_plugins();
static Plugin* createPlugin(QWidget *parent, QString id, bool panelplug = false);
Plugin(QWidget *parent, QString id, bool panelplug = false) : QWidget(parent){
isPanelPlugin = panelplug;
isVertical = false;
_id = id;
boxLayout = new QBoxLayout(QBoxLayout::LeftToRight);
this->setLayout( boxLayout );
boxLayout->setContentsMargins(0,0,0,0);
updateLayoutOrientation();
connect(this, SIGNAL(orientationChanged()), this, SLOT(updateLayoutOrientation()) );
}
void setVertical(bool set){
if(set!=isVertical){ isVertical = set; emit orientationChanged(); }
}
QString id(){ return _id; }
private slots:
void updateLayoutOrientation(){
boxLayout->setDirection( this->isVertical ? QBoxLayout::TopToBottom : QBoxLayout::LeftToRight );
}
};
//Special subclass for a button-based plugin
class PluginButton : public Plugin{
Q_OBJECT
public:
QToolButton *button;
PluginButton(QWidget *parent, QString id, bool panelplug=false) : Plugin(parent, id, panelplug) {
button = new QToolButton(this);
this->layout()->addWidget(button);
}
~PluginButton(){}
};
#endif
|