-
Notifications
You must be signed in to change notification settings - Fork 0
/
edycja_specjalna.h
176 lines (144 loc) · 6.83 KB
/
edycja_specjalna.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
#ifndef EDYCJA_SPECJALNA_H
#define EDYCJA_SPECJALNA_H
#include <QWizard>
#include <QWizardPage>
#include <QLabel>
#include <QLineEdit>
#include <QVBoxLayout>
#include <elementy_drabinki.h>
class edycja_specjalna : public QWizard
{
public:
edycja_specjalna(elementy_drabinki *temp);
void accept() override;
private:
elementy_drabinki *adres_temp;
QWizardPage *edycja_licznika();
QWizardPage *edycja_timera();
QWizardPage *edycja_MOVE();
QWizardPage *edycja_operatora_matematycznego();
QWizardPage *edycja_operatora_porownania();
};
class licznik_strona : public QWizardPage
{
public:
licznik_strona(elementy_drabinki *temp) {
adres_temp = temp;
QLabel *podanie_zmiennej = new QLabel("Podaj zmienną licznika:");
QLineEdit *podanie_zmiennej_QLineEdit = new QLineEdit();
podanie_zmiennej_QLineEdit->setText(adres_temp->zmienna);
QLabel *podanie_wartosci = new QLabel("Podaj PV:");
QLineEdit *podanie_wartosci_QLineEdit = new QLineEdit();
podanie_wartosci_QLineEdit->setInputMask("99999");
podanie_wartosci_QLineEdit->setText(adres_temp->parametry.value(PV));
QLabel *podanie_zmiennej_resetujacej = new QLabel("Podaj zmienną resetujacą:");
QLineEdit *podanie_zmiennej_resetujacej_QLineEdit = new QLineEdit();
podanie_zmiennej_resetujacej_QLineEdit->setText(adres_temp->parametry.value(ZMIENNA_RESETUJACA));
QVBoxLayout *layout = new QVBoxLayout;
layout->addWidget(podanie_zmiennej);
layout->addWidget(podanie_zmiennej_QLineEdit);
layout->addWidget(podanie_wartosci);
layout->addWidget(podanie_wartosci_QLineEdit);
layout->addWidget(podanie_zmiennej_resetujacej);
layout->addWidget(podanie_zmiennej_resetujacej_QLineEdit);
this->setLayout(layout);
this->registerField("podanie_zmiennej_QLineEdit", podanie_zmiennej_QLineEdit);
this->registerField("podanie_wartosci_QLineEdit", podanie_wartosci_QLineEdit);
this->registerField("podanie_zmiennej_resetujacej_QLineEdit", podanie_zmiennej_resetujacej_QLineEdit);
}
elementy_drabinki *adres_temp;
};
class timer_strona : public QWizardPage
{
public:
timer_strona(elementy_drabinki *temp) {
adres_temp = temp;
QLabel *podanie_zmiennej = new QLabel("Podaj zmienną timera:");
QLineEdit *podanie_zmiennej_QLineEdit = new QLineEdit();
podanie_zmiennej_QLineEdit->setText(adres_temp->zmienna);
QLabel *podanie_wartosci = new QLabel("Podaj PV(ms):");
QLineEdit *podanie_wartosci_QLineEdit = new QLineEdit();
podanie_wartosci_QLineEdit->setInputMask("99999");
podanie_wartosci_QLineEdit->setText(adres_temp->parametry.value(PV));
QVBoxLayout *layout = new QVBoxLayout;
layout->addWidget(podanie_zmiennej);
layout->addWidget(podanie_zmiennej_QLineEdit);
layout->addWidget(podanie_wartosci);
layout->addWidget(podanie_wartosci_QLineEdit);
this->setLayout(layout);
this->registerField("podanie_zmiennej_QLineEdit", podanie_zmiennej_QLineEdit);
this->registerField("podanie_wartosci_QLineEdit", podanie_wartosci_QLineEdit);
}
elementy_drabinki *adres_temp;
};
class move_strona : public QWizardPage
{
public:
move_strona(elementy_drabinki *temp) {
adres_temp = temp;
QLabel *podanie_wartosci = new QLabel("Podaj element do przeniesienia:");
QLineEdit *podanie_wartosci_QLineEdit = new QLineEdit();
podanie_wartosci_QLineEdit->setText(adres_temp->parametry.value(ELEMENT_DO_PRZENIESIENIA));
QLabel *podanie_zmiennej_docelowej = new QLabel("Podaj zmienną docelową:");
QLineEdit *podanie_zmiennej_docelowej_QLineEdit = new QLineEdit();
podanie_zmiennej_docelowej_QLineEdit->setText(adres_temp->parametry.value(ZMIENNA_DOCELOWA));
QVBoxLayout *layout = new QVBoxLayout;
layout->addWidget(podanie_wartosci);
layout->addWidget(podanie_wartosci_QLineEdit);
layout->addWidget(podanie_zmiennej_docelowej);
layout->addWidget(podanie_zmiennej_docelowej_QLineEdit);
this->setLayout(layout);
this->registerField("podanie_wartosci_QLineEdit", podanie_wartosci_QLineEdit);
this->registerField("podanie_zmiennej_docelowej_QLineEdit", podanie_zmiennej_docelowej_QLineEdit);
}
elementy_drabinki *adres_temp;
};
class operator_porownania_strona : public QWizardPage
{
public:
operator_porownania_strona(elementy_drabinki *temp) {
adres_temp = temp;
QLabel *napis_informacyjny = new QLabel("Blok porównuje pierwszy element z drugim.");
QLabel *podanie_element1 = new QLabel("Podaj pierwszy element:");
QLineEdit *podanie_element1_QLineEdit = new QLineEdit();
podanie_element1_QLineEdit->setText(adres_temp->parametry.value(ELEMENT1));
QLabel *podanie_element2 = new QLabel("Podaj drugi element:");
QLineEdit *podanie_element2_QLineEdit = new QLineEdit();
podanie_element2_QLineEdit->setText(adres_temp->parametry.value(ELEMENT2));
QVBoxLayout *layout = new QVBoxLayout;
layout->addWidget(napis_informacyjny);
layout->addWidget(podanie_element1);
layout->addWidget(podanie_element1_QLineEdit);
layout->addWidget(podanie_element2);
layout->addWidget(podanie_element2_QLineEdit);
this->setLayout(layout);
this->registerField("podanie_element1_QLineEdit", podanie_element1_QLineEdit);
this->registerField("podanie_element2_QLineEdit", podanie_element2_QLineEdit);
}
elementy_drabinki *adres_temp;
};
class operator_matematyczny_strona : public QWizardPage
{
public:
operator_matematyczny_strona(elementy_drabinki *temp) {
adres_temp = temp;
QLabel *napis_informacyjny = new QLabel("Blok przeprowadza działanie matematyczne i zapisuje jego wynik w miejscu pierwszego elementu.");
QLabel *podanie_element1 = new QLabel("Podaj pierwszy element:");
QLineEdit *podanie_element1_QLineEdit = new QLineEdit();
podanie_element1_QLineEdit->setText(adres_temp->parametry.value(ELEMENT1));
QLabel *podanie_element2 = new QLabel("Podaj drugi element:");
QLineEdit *podanie_element2_QLineEdit = new QLineEdit();
podanie_element2_QLineEdit->setText(adres_temp->parametry.value(ELEMENT2));
QVBoxLayout *layout = new QVBoxLayout;
layout->addWidget(napis_informacyjny);
layout->addWidget(podanie_element1);
layout->addWidget(podanie_element1_QLineEdit);
layout->addWidget(podanie_element2);
layout->addWidget(podanie_element2_QLineEdit);
this->setLayout(layout);
this->registerField("podanie_element1_QLineEdit", podanie_element1_QLineEdit);
this->registerField("podanie_element2_QLineEdit", podanie_element2_QLineEdit);
}
elementy_drabinki *adres_temp;
};
#endif // EDYCJA_SPECJALNA_H