forked from Mudlet/Mudlet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTEasyButtonBar.cpp
More file actions
220 lines (198 loc) · 7.81 KB
/
TEasyButtonBar.cpp
File metadata and controls
220 lines (198 loc) · 7.81 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/***************************************************************************
* Copyright (C) 2008-2013 by Heiko Koehn - KoehnHeiko@googlemail.com *
* Copyright (C) 2014 by Ahmed Charles - acharles@outlook.com *
* Copyright (C) 2017 by Stephen Lyons - slysven@virginmedia.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "TEasyButtonBar.h"
#include "Host.h"
#include "TAction.h"
#include "TConsole.h"
#include "TFlipButton.h"
#include "pre_guard.h"
#include <QDebug>
#include <QGridLayout>
#include "post_guard.h"
TEasyButtonBar::TEasyButtonBar(TAction* pA, QString name, QWidget* pW)
: QWidget( pW )
, mpTAction( pA )
, mVerticalOrientation( false )
, mpWidget( new QWidget )
, mName( name )
, mRecordMove( false )
, mpLayout( 0 )
, mItemCount( 0 )
, mpBar( pW )
{
mButtonList.clear();
auto layout = new QVBoxLayout;
setLayout(layout);
layout->setContentsMargins(0, 0, 0, 0);
layout->setMargin(0);
layout->setSpacing(0);
layout->addWidget(mpWidget);
if (!mpTAction->mUseCustomLayout) {
mpLayout = new QGridLayout(mpWidget);
setContentsMargins(0, 0, 0, 0);
mpLayout->setContentsMargins(0, 0, 0, 0);
mpLayout->setMargin(0);
mpLayout->setSpacing(0);
QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
mpWidget->setSizePolicy(sizePolicy);
} else {
mpWidget->setMinimumHeight(mpTAction->mSizeY);
mpWidget->setMaximumHeight(mpTAction->mSizeY);
mpWidget->setMinimumWidth(mpTAction->mSizeX);
mpWidget->setMaximumWidth(mpTAction->mSizeX);
mpWidget->setGeometry(mpTAction->mPosX, mpTAction->mPosY, mpTAction->mSizeX, mpTAction->mSizeY);
}
setStyleSheet(mpTAction->css);
mpWidget->setStyleSheet(mpTAction->css);
}
void TEasyButtonBar::addButton(TFlipButton* pB)
{
if (!mpTAction->mUseCustomLayout) {
QSize size = pB->minimumSizeHint();
if (pB->mpTAction->getButtonRotation() > 0) {
size.transpose();
pB->setMaximumSize(size);
}
} else {
qDebug() << "setting up custom sizes";
QSize size = QSize(pB->mpTAction->mSizeX, pB->mpTAction->mSizeY);
pB->setMaximumSize(size);
pB->setMinimumSize(size);
pB->setParent(mpWidget);
pB->setGeometry(pB->mpTAction->mPosX, pB->mpTAction->mPosY, pB->mpTAction->mSizeX, pB->mpTAction->mSizeY);
}
pB->setStyleSheet(pB->mpTAction->css);
pB->setFlat(pB->mpTAction->getButtonFlat());
int rotation = pB->mpTAction->getButtonRotation();
switch (rotation) {
case 0:
pB->setOrientation(Qt::Horizontal);
break;
case 1:
pB->setOrientation(Qt::Vertical);
break;
case 2:
pB->setOrientation(Qt::Vertical);
pB->setMirrored(true);
break;
}
if (!mpTAction->mUseCustomLayout) {
// tool bar mButtonColumns > 0 -> autolayout
// case == 0: use individual button placment for user defined layouts
int columns = mpTAction->getButtonColumns();
if (columns <= 0) {
columns = 1;
}
if (columns > 0) {
mItemCount++;
int row = mItemCount / columns;
int col = mItemCount % columns;
if (mVerticalOrientation) {
mpLayout->addWidget(pB, row, col);
} else {
mpLayout->addWidget(pB, col, row);
}
}
} else {
pB->move(pB->mpTAction->mPosX, pB->mpTAction->mPosY);
}
// Was using released() signal but now we want to track the ACTUAL state of
// the underlying QAbstractButton
connect(pB, SIGNAL(clicked(const bool)), this, SLOT(slot_pressed(const bool)));
mButtonList.push_back(pB);
pB->setChecked(pB->mpTAction->mButtonState);
}
void TEasyButtonBar::finalize()
{
if (mpTAction->mUseCustomLayout) {
return;
}
auto fillerWidget = new QWidget;
QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
fillerWidget->setSizePolicy(sizePolicy);
int columns = mpTAction->getButtonColumns();
if (columns <= 0) {
columns = 1;
}
int row = (++mItemCount) / columns;
int column = mItemCount % columns;
if (mpLayout) {
mpLayout->addWidget(fillerWidget, row, column);
}
}
// Used by buttons directly on an TEasyButtonBar instance - we now retrieve the
// button state to ensure the visible representation is used.
void TEasyButtonBar::slot_pressed(const bool isChecked)
{
TFlipButton* pB = dynamic_cast<TFlipButton*>(sender());
if (!pB) {
return;
}
TAction* pA = pB->mpTAction;
// NOTE: This function blocks until an item is selected from the menu, and,
// as the action to "pop-up" the menu is the same as "buttons" use to
// perform their command/scripts is why "commands" are (no longer) permitted
// on a "menu". It also means that the script for a "menu" is run every
// time it is "clicked" upon to display the pop-up containing the menu
// entries...
pB->showMenu();
if (pA->mIsPushDownButton) {
// DO NOT MANIPULATE THE BUTTON STATE OURSELF NOW
pA->mButtonState = isChecked;
pA->mpHost->mpConsole->mButtonState = (pA->mButtonState ? 2 : 1);
} else {
pA->mButtonState = false; // Forces a fixup if not correct
pB->setChecked(false); // This does NOT invoke the clicked() signal!
pA->mpHost->mpConsole->mButtonState = 1; // Was effectively 0 but that is wrong
}
pA->execute();
}
void TEasyButtonBar::clear()
{
auto pW = new QWidget;
for (auto& flipButton : mButtonList) {
disconnect(flipButton, SIGNAL(clicked(const bool)), this, SLOT(slot_pressed(const bool)));
}
mButtonList.clear();
mpWidget->deleteLater();
mpWidget = pW;
if (!mpTAction->mUseCustomLayout) {
mpLayout = new QGridLayout;
mpWidget->setLayout(mpLayout);
mpLayout->setContentsMargins(0, 0, 0, 0);
mpLayout->setSpacing(0);
mpLayout->setMargin(0);
QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
mpWidget->setSizePolicy(sizePolicy);
mpWidget->setContentsMargins(0, 0, 0, 0);
mpLayout->setMargin(0);
} else {
mpLayout = 0;
mpWidget->setMinimumHeight(mpTAction->mSizeY);
mpWidget->setMaximumHeight(mpTAction->mSizeY);
mpWidget->setMinimumWidth(mpTAction->mSizeX);
mpWidget->setMaximumWidth(mpTAction->mSizeX);
mpWidget->setGeometry(mpTAction->mPosX, mpTAction->mPosY, mpTAction->mSizeX, mpTAction->mSizeY);
}
layout()->addWidget(pW);
setStyleSheet(mpTAction->css);
mpWidget->setStyleSheet(mpTAction->css);
}