-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpowerdialog.h
169 lines (141 loc) · 5.46 KB
/
powerdialog.h
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
#ifndef POWERDIALOG_H
#define POWERDIALOG_H
#include <QDialog>
#include <QLabel>
#include <QTableWidget>
#include <QTreeWidgetItem>
#include <QTreeWidget>
#include <QVBoxLayout>
#include "powers.h"
#include "shared.h"
namespace Ui {
class PowerDialog;
}
class PowerDialog : public QDialog
{
Q_OBJECT
public:
explicit PowerDialog(QWidget *parent = nullptr, shared_ptr<Power>& save = _dummy);
PowerDialog(const PowerDialog&) = delete;
PowerDialog(PowerDialog&&) = delete;
~PowerDialog() override;
PowerDialog& operator=(const PowerDialog&) = delete;
PowerDialog& operator=(PowerDialog&&) = delete;
QTableWidget* createAdvantages(QWidget* parent, QVBoxLayout* layout);
QTableWidget* createLimitations(QWidget* parent, QVBoxLayout* layout);
PowerDialog& powerorequipment(shared_ptr<class Power> s);
Ui::PowerDialog* UI() { return ui; }
shared_ptr<class Power> powerorequipment() { return _power; }
void multipower() { _inMultipower = true; }
bool isAccepted() { return _done && _accepted; }
bool isCanceled() { return _done && !_accepted; }
bool isDone() { return _done; }
void setCellLabel(QTableWidget*, int, int, QString, QFont&);
void setColumns(QTableWidget* tablewidget);
void updateForm();
shared_ptr<Power> saved() { return _saved; }
void save(shared_ptr<Power> s) { _saved = s; }
static PowerDialog& ref() { return *_ptr; }
static PowerDialog* _ptr; // NOLINT
void setEquipment() { _equipment = true; }
private:
Ui::PowerDialog *ui;
static shared_ptr<Power> _dummy; // NOLINT
static const bool WordWrap = true;
bool _accepted = false;
QTableWidget* _advantages = nullptr;
QMenu* _advantagesMenu = nullptr;
QPushButton* _cancel = nullptr;
QLabel* _description = nullptr;
bool _done = false;
bool _equipment = false;
QLabel* _errorMsg = nullptr;
bool _inMultipower = false;
QTableWidget* _limitations = nullptr;
QMenu* _limitationsMenu = nullptr;
shared_ptr<ModifiersDialog> _mod = nullptr;
QPushButton* _ok = nullptr;
QLabel* _points = nullptr;
shared_ptr<Power> _power = nullptr;
shared_ptr<Power>& _saved; // NOLINT
bool _skipUpdate = false;
struct menuItems {
menuItems()
: text("-")
, action(nullptr) { }
menuItems(QString x)
: text(x)
, action(nullptr) { }
menuItems(QString x, QAction** y)
: text(x)
, action(y) { }
menuItems(const menuItems& mi)
: text(mi.text)
, action(mi.action) { }
menuItems(menuItems&& mi)
: text(mi.text)
, action(mi.action) { }
virtual ~menuItems() { }
menuItems& operator=(const menuItems&) = delete;
menuItems& operator=(menuItems&&) = delete;
QString text = "";
QAction** action = nullptr;
};
QMenu* createMenu(QWidget*, const QFont&, QList<menuItems>);
QLabel* createLabel(QVBoxLayout* parent, QString text, bool wordWrap = false);
QWidget* createEditButton(QWidget*, QVBoxLayout*, const QList<const char*>&);
QTableWidget* createTableWidget(QWidget*, QVBoxLayout*, QList<int>, QString, int);
void setupPower(shared_ptr<Power>&);
QAction* _newAdvantage = nullptr;
QAction* _editAdvantage = nullptr;
QAction* _deleteAdvantage = nullptr;
QAction* _cutAdvantage = nullptr;
QAction* _copyAdvantage = nullptr;
QAction* _pasteAdvantage = nullptr;
QAction* _moveAdvantageUp = nullptr;
QAction* _moveAdvantageDown = nullptr;
QAction* _newLimitation = nullptr;
QAction* _editLimitation = nullptr;
QAction* _deleteLimitation = nullptr;
QAction* _cutLimitation = nullptr;
QAction* _copyLimitation = nullptr;
QAction* _pasteLimitation = nullptr;
QAction* _moveLimitationUp = nullptr;
QAction* _moveLimitationDown = nullptr;
public slots:
void advantageDoubleClicked(QTableWidgetItem*) { editAdvantage(); }
void limitationDoubleClicked(QTableWidgetItem*) { editLimitation(); }
void doUpdate() { updateForm(); }
void aboutToShowAdvantagesMenu();
void aboutToShowLimitationsMenu();
void activated(int);
void advantagesMenu(QPoint);
void buttonPressed(bool);
void cancel();
void copyAdvantage();
void copyLimitation();
void currentIndexChanged(int);
void cutAdvantage();
void cutLimitation();
void deleteAdvantage();
void deleteLimitation();
void editAdvantage();
void editLimitation();
void itemChanged(QTreeWidgetItem*,int);
void itemSelectionChanged();
void limitationsMenu(QPoint);
void moveAdvantageDown();
void moveLimitationDown();
void moveAdvantageUp();
void moveLimitationUp();
void newAdvantage();
void newLimitation();
void ok();
void pasteAdvantage();
void pasteLimitation();
void pickOne(int);
void pickType(int);
void stateChanged(int state);
void textChanged(QString);
};
#endif // POWERDIALOG_H