forked from AustralianSynchrotron/ctgui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadditional_classes.h
More file actions
266 lines (192 loc) · 5.08 KB
/
additional_classes.h
File metadata and controls
266 lines (192 loc) · 5.08 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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
#include <QPlainTextEdit>
#include <QLabel>
#include <QDebug>
#include <QLineEdit>
#include <QToolButton>
#include <QStyle>
#include <QProcess>
#include <QTemporaryFile>
#include <QGridLayout>
#include <QTableWidget>
#include <QWidgetList>
#include <QProgressBar>
#include <QCheckBox>
#include "ui_upvorcom.h"
#include <qtpv.h>
#ifndef CTGUIADDITIONALCLASSES
#define CTGUIADDITIONALCLASSES
/*
namespace Ui {
class QSCheckBox;
}
*/
class QSCheckBox : public QCheckBox {
Q_OBJECT;
//Ui::QSCheckBox ui;
public :
QSCheckBox(QWidget * parent = 0);
protected:
virtual bool hitButton ( const QPoint & pos ) const ;
};
struct ColumnResizerPrivate;
class ColumnResizer : public QObject {
Q_OBJECT;
public:
ColumnResizer(QObject* parent = 0);
~ColumnResizer();
void addWidget(QWidget* widget);
void addWidgetsFromGridLayout(QGridLayout*, int column);
private Q_SLOTS:
void updateWidth();
protected:
bool eventFilter(QObject*, QEvent* event);
private:
ColumnResizerPrivate* const d;
};
class QPTEext : public QPlainTextEdit {
Q_OBJECT;
public:
QPTEext(QWidget * parent=0) : QPlainTextEdit(parent) {};
signals:
void editingFinished();
void focusIned();
void focusOuted();
protected:
bool event(QEvent *event);
void focusInEvent ( QFocusEvent * e );
void focusOutEvent ( QFocusEvent * e );
};
class CtGuiLineEdit : public QLineEdit {
Q_OBJECT;
private:
QToolButton *clearButton;
public:
CtGuiLineEdit(QWidget *parent);
protected:
void resizeEvent(QResizeEvent *);
private slots:
void updateCloseButton(const QString& text) {
clearButton->setVisible(!text.isEmpty());
}
};
class EasyTabWidget : public QTabWidget {
Q_OBJECT;
QWidgetList wdgs;
QHash<QWidget*, QString> titles;
public:
EasyTabWidget( QWidget * parent = 0 ) : QTabWidget(parent) {}
void finilize();
void setTabVisible(QWidget * tab, bool visible);
void setTabTextColor(QWidget * tab, const QColor & color);
const QWidgetList & tabs() const {return wdgs;};
QWidgetList tabs() {return wdgs;}
};
class CTprogressBar : public QProgressBar {
Q_OBJECT;
QLabel * label;
void updateLabel();
public:
CTprogressBar(QWidget * parent=0);
void setTextVisible(bool visible) ;
public slots:
void setValue(int value) ;
void setMinimum(int minimum);
void setMaximum(int maximum);
protected:
virtual void resizeEvent(QResizeEvent * event);
};
class Script : public QObject {
Q_OBJECT;
private:
QProcess proc;
QTemporaryFile fileExec;
QString _path;
static const QString shell;
public:
explicit Script(QObject *parent = 0);
const QString & path() const {return _path;}
const QString out() {return proc.readAllStandardOutput();}
const QString err() {return proc.readAllStandardError();}
int exitCode() const { return proc.exitCode(); }
int waitStop();
bool isRunning() const { return proc.state() != QProcess::NotRunning; }
int evaluate(const QString & par = QString());
static int executeOnce(const QString & _p, const QString & par = QString()) {
Script scr; scr.setPath(_p) ; return scr.execute(par); }
public slots:
bool start(const QString & par = QString());
void stop() {if (isRunning()) proc.kill();}
int execute( const QString & par = QString() ) { return start(par) ? waitStop() : -1 ; }
const QString & setPath( const QString & _p );
private slots:
void onState(QProcess::ProcessState state);
signals:
void pathSet(const QString & newPath);
void finished(int status);
void started();
};
namespace Ui {
class UScript;
}
class UScript : public QWidget {
Q_OBJECT;
private:
Ui::UScript *ui;
public:
Script * script;
public:
explicit UScript(QWidget *parent = 0);
~UScript();
void addToColumnResizer(ColumnResizer * columnizer);
private slots:
void browse();
void onStartStop() { if (script->isRunning()) script->stop(); else script->start(); }
void updateState();
void updatePath();
signals:
void editingFinished();
};
class PVorCOM : public QObject {
Q_OBJECT;
QEpicsPv * pv;
Script * sr;
public:
enum WhoAmI {
EPICSPV,
GOODSCRIPT,
BADSCRIPT,
RUNNINGSCRIPT
};
PVorCOM(QObject *parent = 0);
public slots:
void setName( const QString & nm = QString() );
const QString & getName() const { return pv->pv(); }
void put( const QString & val = QString() ) ;
const QString get() const { return pv->isConnected() ? pv->get().toString() : sr->out(); }
WhoAmI state();
signals:
void valueUpdated( const QString & );
void nameUpdated( const QString & );
void stateUpdated(PVorCOM::WhoAmI);
private slots:
void updateVal() { emit valueUpdated(get()); }
void updateState() { emit stateUpdated(state());}
};
namespace Ui {
class UPVorCOM;
}
class UPVorCOM : public QWidget {
Q_OBJECT;
private:
Ui::UPVorCOM *ui;
public:
PVorCOM * pvc;
UPVorCOM (QWidget *parent = 0);
void setPlaceholderText(const QString & text) { ui->name->setPlaceholderText(text); }
private slots:
void setValueText(const QString & txt);
void setPVCname() { pvc->setName(ui->name->text()); }
void indicateState(PVorCOM::WhoAmI state);
void evaluateScript();
};
#endif // CTGUIADDITIONALCLASSES