forked from twiniars/RESpecTa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StateTypeWidgets.h
595 lines (531 loc) · 12.3 KB
/
StateTypeWidgets.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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
class MyTypeWidget;
class sysIniWidget;
class runGenWidget;
class stopGenWidget;
class iniSensorWidget;
class getSensorWidget;
class emptyGenForSetWidget;
class emptyGenWidget;
class waitStateWidget;
class CoordDialog;
class MPDialog;
class ECPDialog;
#ifndef STATETYPEWIDGETS_H
#define STATETYPEWIDGETS_H
#include "respecta.h"
#include "States.h"
#include "globals.h"
#include "Pose.h"
#include "stateWidget.h"
#include <QDialog>
QT_BEGIN_NAMESPACE
class QCheckBox;
class QDialogButtonBox;
class QComboBox;
class QGroupBox;
class QLabel;
class QLineEdit;
class QPushButton;
class QGridLayout;
class QVBoxLayout;
class QListWidget;
class QListItemWidget;
class QWidget;
QT_END_NAMESPACE
/**
* Base class to all widgets, which allow editing different state types.
*/
class MyTypeWidget : public QWidget
{
Q_OBJECT
public:
MyTypeWidget(QWidget * parent,Model * newmod ):QWidget(parent){mod = newmod;}
/**
* Function returning object of the class, which is represented by the child-class of this class.
*/
virtual BaseState * getStateObject() = 0;
/**
* Function opening state State(of a child-class of BaseState) for edition in the widget.
*/
virtual void setState(BaseState * State) = 0;
private:
Model * mod;
};
/**
* Widget allowing to edit sysInitState.
*/
class sysIniWidget : public MyTypeWidget
{
Q_OBJECT
public:
sysIniWidget(QWidget * parent,Model * newmod );
BaseState * getStateObject();
void setState(BaseState * state);
signals:
/**
* Signal to parent, that an error has ocured.
*/
void reportError(QString msgString);
private slots:
void ItemClicked(QModelIndex);
/**
* Removes ECP section connected with the robot, which is selected in the robotsInitialized widget.
*/
void removeECPSection();
/**
* Opens ECPDialog.
*/
void createECPSection();
/**
* Opens MPDialog.
*/
void changeMPSection();
/**
* Adds new ECP section.
* @param newInit Robot initialization object to insert.
*/
void InsertECP(robotInit newInit);
/**
* Changes MP section.
*/
void InsertMP (std::vector<Sensor> sensors, Transmitter trans);
/**
* Forwards errors from DialogBox using reportError signal.
*/
void forwardError(QString msgString){emit reportError(msgString);}
private:
/**
* State, which is being edited.
*/
sysInitState * State;
/**
* Widget, which lists all initialized robots.
*/
QListWidget * robotsInitialized;
/**
* A dialogbox allowing to create a new ECP section(robots).
*/
ECPDialog * ecpDialog;
/**
* A dialogbox allowing to change MP section(sensors,transmitters, etc.).
*/
MPDialog * mpDialog;
};
/**
* Widget allowing to edit runGenState.
*/
class runGenWidget : public MyTypeWidget
{
Q_OBJECT
public:
runGenWidget(QWidget * parent,Model * newmod );
BaseState * getStateObject();
void setState(BaseState * state);
signals:
/**
* Signal to parent, that an error has ocured.
*/
void reportError(QString msgString);
private slots:
/**
* Inserts coordinates to the state.
* @param newCoords Coordinates sent from the CoordsDialog to insert.
*/
void CoordsInsert(Coordinates * newCoords);
/**
* Opens CoordDialog.
*/
void showAddPosesDialog();
/**
* Opens file browse dialog allowing to choose the trajectory file.
*/
void selectTrjFilePath();
/**
* Forwards errors from DialogBox using reportError signal.
*/
void forwardError(QString msgString){emit reportError(msgString);}
private:
/**
* State to edit.
*/
RunGenState * State;
/**
* Combobox containing generatorTypes.
*/
QComboBox * genTypeCombo;
/**
* combobox containing robotTypes.
*/
QComboBox * robotCombo;
/**
* Lineedit allowing to add argument for the generator.
*/
QLineEdit * argsLineEdit;
/**
* Lineedit allowing to specify speech for the robot.
*/
QLineEdit * speechLineEdit;
/**
* Lineedit allowing to spedify path for trajectory file.
*/
QLineEdit * trjFileName;
/**
* DialogBox allowing to edit Coordiantes.
*/
CoordDialog * coordDialog;
};
/**
* Widget allowing to edit emptyGenForSetState.
*/
class emptyGenForSetWidget : public MyTypeWidget
{
Q_OBJECT
public:
emptyGenForSetWidget(QWidget * parent,Model * newmod );
BaseState * getStateObject();
void setState(BaseState * state);
signals:
/**
* Signal to parent, that an error has ocured.
*/
void reportError(QString msgString);
private slots:
/**
* Adds robot selected in FirstComboBox to the FirstRobotList.
*/
void addFirst();
/**
* Removes robot selected in FirstComboBox from the FirstRobotList.
*/
void removeFirst();
/**
* Adds robot selected in SecondComboBox to the SecondRobotList.
*/
//void addSecond();
/**
* Removes Robot selected in SecondComboBox from SecondRobotList.
*/
//void removeSecond();
private:
/**
* State, which is edited.
*/
EmptyGenForSetState * State;
/**
* List of robots in the first Set.
*/
QListWidget * FirstRobotList;
/**
* List of robots in the second Set.
*/
//QListWidget * SecondRobotList;
/**
* Combobox allowing to choose Robot for the first set.
*/
QComboBox * FirstRobotCombo;
/**
* Combobox allowing to choose Robot for the second set.
*/
//QComboBox * SecondRobotCombo;
};
/**
* Widget allowing to edit EmptyGenState.
*/
class emptyGenWidget : public MyTypeWidget
{
Q_OBJECT
public:
emptyGenWidget(QWidget * parent,Model * newmod );
BaseState * getStateObject();
void setState(BaseState * state);
private:
/**
* State, which is edited.
*/
EmptyGenState * State;
/**
* LineEdit allowing to add an argument, which will be passed to the function in MRROC++.
*/
QLineEdit * argLineEdit;
/**
* Combobox allowing to choose Robot, for which the empty generator will be stared.
*/
QComboBox * RobotCombo;
};
/**
* Widget allowing to edit waitState.
*/
class waitStateWidget : public MyTypeWidget
{
Q_OBJECT
public:
waitStateWidget(QWidget * parent,Model * newmod );
BaseState * getStateObject();
void setState(BaseState * state);
private:
/**
* State, which is edited.
*/
WaitState * State;
/**
* Lineedit allowing to specify time (in ms.) for which the system will be idle.
*/
QLineEdit * timeSpan;
};
/**
* Widget allowing to edit stopGenState.
*/
class stopGenWidget : public MyTypeWidget
{
Q_OBJECT
public:
stopGenWidget(QWidget * parent,Model * newmod );
BaseState * getStateObject();
void setState(BaseState * state);
signals:
/**
* Signal to parent, that an error has ocured.
*/
void reportError(QString msgString);
private slots:
/**
* Adds a robot selected in RobotCombo to RobotList.
*/
void add();
/**
* Removes a robot selected in RobotCombo from RobotList.
*/
void remove();
private:
/**
* State which is edited.
*/
StopGenState * State;
/**
* List of robots, which will be stopped.
*/
QListWidget * RobotList;
/**
* Combobox allowing to choose a robot which will be added/removed from the list.
*/
QComboBox * RobotCombo;
};
/**
* State allowing to edit iniSensorState.
*/
class iniSensorWidget : public MyTypeWidget
{
Q_OBJECT
public:
iniSensorWidget(QWidget * parent,Model * newmod );
BaseState * getStateObject();
void setState(BaseState * state);
private:
/**
* State, which is edited.
*/
InitiateSensorState * State;
/**
* Combobox, allowing to choose Sensor.
*/
QComboBox * SensorCombo;
};
/**
* Widget allowing to edit getSensorState.
*/
class getSensorWidget : public MyTypeWidget
{
Q_OBJECT
public:
getSensorWidget(QWidget * parent,Model * newmod );
BaseState * getStateObject();
void setState(BaseState * state);
private:
/**
* State, which is edited.
*/
GetSensorState * State;
/**
* Combobox, allowing to choose Sensor.
*/
QComboBox * SensorCombo;
};
//*********************************************** DIALOGS ***********************************************//
/**
* Dialogbox allowing to specify coordinates for runGenState.
*/
class CoordDialog:public QDialog
{
Q_OBJECT
public:
CoordDialog(QWidget * parent);
Coordinates * getCoords(){return coords;}
void setCoords(Coordinates * newCoords){coords = newCoords;}
void coordsUpdated();
signals:
/**
* Signal to RunGenWidget, that user has accepted Coordinates.
*/
void InsertCoords(Coordinates * newCoords);
/**
* Signal to parent, that an error has ocured.
*/
void reportError(QString msgString);
private slots:
/**
* Adds a pose to the list.
*/
void AddPose();
/**
* Accepts poses and exits the dialogbox.
*/
void PoseOK();
/**
* Exits without saving poses.
*/
void PoseCancel();
/**
* Resets all poses in the list.
*/
void PosesReset();
private:
/**
* Number of values in pose specification.
*/
int num;
/**
* List of poses.
*/
QListWidget * poseList;
/**
* Combobox allowing to choose between relative and absolute Pose specification.
*/
QComboBox * motionTypeCombo;
/**
* Combobox allowing to choose motion type.
*/
QComboBox * coordTypeCombo;
/**
* Lineedits to edit Coordinates.
*/
std::vector<QLineEdit *> coordEdit;
/**
* Lineedits to edit Velocities.
*/
std::vector<QLineEdit *> velEdit;
/**
* Lineedits to edit Accelerations.
*/
std::vector<QLineEdit *> accEdit;
/**
* Coordinates of the move.
*/
Coordinates * coords;
};
/**
* Widget allowing to create new robotInit instances for sysIniState.
*/
class ECPDialog:public QDialog
{
Q_OBJECT
public:
ECPDialog(QWidget * parent);
void openForECP(robotInit robotIni);
signals:
/**
* Signal to parent, that a new robotInit instance has been added.
*/
void InsertECP(robotInit newInit);
/**
* Signal to parent, that an error has ocured.
*/
void reportError(QString msgString);
private slots:
/**
* Removes items selected on the genList.
*/
void remove();
/**
* Adds generator and his argument to the list.
*/
void add();
/**
* Saves data and exits dialog.
*/
void OKPressed();
/**
* Exits the dialog without saving.
*/
void CancelPressed();
private:
/**
* List of generators used for the robot, with their arguments.
*/
QListWidget * genList;
/**
* Combobox allowing to choose a generator to add.
*/
QComboBox * genTypeCombo;
/**
* Lineedit to specify argument for generator.
*/
QLineEdit * argLineEdit;
/**
* Combobox allowing to choose robot.
*/
QComboBox * robotCombo;
/**
* robotInit object, which is edited.
*/
robotInit robotInitObj;
};
/**
* DialogBox allowing to edit MP section of the sysIniState.
*/
class MPDialog:public QDialog
{
Q_OBJECT
public:
MPDialog(QWidget * parent);
void setSensTrans(std::vector<Sensor> sens, Transmitter tran);
signals:
/**
* Signals parent, that user has accepted changes.
*/
void InsertMP (std::vector<Sensor> sensors, Transmitter trans);
/**
* Signal to parent, that an error has ocured.
*/
void reportError(QString msgString);
private slots:
/**
* Removes sensor selected on the list.
*/
void remove();
/**
* Removes sensor selected in the combobox from the list.
*/
void add();
/**
* Saves changes and exit the dialogbox.
*/
void OKPressed();
/**
* Exit dialogbox without saving changes.
*/
void CancelPressed();
private:
/**
* List of used sensors.
*/
QListWidget * sensorList;
/**
* Combobox allowing to choose sensors to add and remove sensors.
*/
QComboBox * sensorCombo;
/**
* Combobox allowing to choose a transmitter to initialize.
*/
QComboBox * transmitterCombo;
};
#endif // STATETYPEWIDGETS_H