1/********************************************************************************
2** Form generated from reading UI file 'debuggeneralwidget.ui'
3**
4** Created by: Qt User Interface Compiler version 5.15.3
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_DEBUGGENERALWIDGET_H
10#define UI_DEBUGGENERALWIDGET_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QButtonGroup>
15#include <QtWidgets/QCheckBox>
16#include <QtWidgets/QFontComboBox>
17#include <QtWidgets/QGridLayout>
18#include <QtWidgets/QGroupBox>
19#include <QtWidgets/QHBoxLayout>
20#include <QtWidgets/QLabel>
21#include <QtWidgets/QRadioButton>
22#include <QtWidgets/QSpacerItem>
23#include <QtWidgets/QSpinBox>
24#include <QtWidgets/QVBoxLayout>
25#include <QtWidgets/QWidget>
26
27QT_BEGIN_NAMESPACE
28
29class Ui_DebugGeneralWidget
30{
31public:
32 QVBoxLayout *verticalLayout;
33 QGroupBox *grpUseGDBServer;
34 QGridLayout *gridLayout;
35 QLabel *label_4;
36 QSpinBox *spinGDBServerPort;
37 QSpacerItem *horizontalSpacer_3;
38 QCheckBox *chkSkipSystemLib;
39 QCheckBox *chkSkipProjectLib;
40 QCheckBox *chkSkipCustomLib;
41 QGroupBox *grpEnableDebugConsole;
42 QVBoxLayout *verticalLayout_2;
43 QWidget *widget;
44 QHBoxLayout *horizontalLayout;
45 QLabel *label;
46 QFontComboBox *cbFont;
47 QCheckBox *chkOnlyMono;
48 QSpacerItem *horizontalSpacer;
49 QWidget *widget_2;
50 QHBoxLayout *horizontalLayout_2;
51 QLabel *label_2;
52 QSpinBox *sbFontSize;
53 QSpacerItem *horizontalSpacer_2;
54 QCheckBox *chkShowDetailLog;
55 QGroupBox *groupBox;
56 QVBoxLayout *verticalLayout_6;
57 QWidget *widget_5;
58 QHBoxLayout *horizontalLayout_4;
59 QLabel *label_5;
60 QSpinBox *spinMemoryViewRows;
61 QSpacerItem *horizontalSpacer_4;
62 QWidget *widget_6;
63 QHBoxLayout *horizontalLayout_5;
64 QLabel *label_6;
65 QSpinBox *spinMemoryViewColumns;
66 QSpacerItem *horizontalSpacer_5;
67 QGroupBox *groupBox_2;
68 QVBoxLayout *verticalLayout_3;
69 QCheckBox *chkAutosaveBreakpoints;
70 QCheckBox *chkAutosaveWatches;
71 QGroupBox *groupBox_3;
72 QVBoxLayout *verticalLayout_4;
73 QCheckBox *chkShowCPUWhenSignaled;
74 QWidget *widget_3;
75 QHBoxLayout *horizontalLayout_3;
76 QLabel *label_3;
77 QWidget *widget_4;
78 QVBoxLayout *verticalLayout_5;
79 QRadioButton *rbIntel;
80 QRadioButton *rbATT;
81 QCheckBox *chkBlendMode;
82 QSpacerItem *verticalSpacer;
83 QButtonGroup *grpCPUDisassembly;
84
85 void setupUi(QWidget *DebugGeneralWidget)
86 {
87 if (DebugGeneralWidget->objectName().isEmpty())
88 DebugGeneralWidget->setObjectName(QString::fromUtf8("DebugGeneralWidget"));
89 DebugGeneralWidget->resize(704, 774);
90 verticalLayout = new QVBoxLayout(DebugGeneralWidget);
91 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
92 grpUseGDBServer = new QGroupBox(DebugGeneralWidget);
93 grpUseGDBServer->setObjectName(QString::fromUtf8("grpUseGDBServer"));
94 grpUseGDBServer->setCheckable(true);
95 gridLayout = new QGridLayout(grpUseGDBServer);
96 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
97 label_4 = new QLabel(grpUseGDBServer);
98 label_4->setObjectName(QString::fromUtf8("label_4"));
99
100 gridLayout->addWidget(label_4, 0, 0, 1, 1);
101
102 spinGDBServerPort = new QSpinBox(grpUseGDBServer);
103 spinGDBServerPort->setObjectName(QString::fromUtf8("spinGDBServerPort"));
104 spinGDBServerPort->setMinimum(1025);
105 spinGDBServerPort->setMaximum(65535);
106
107 gridLayout->addWidget(spinGDBServerPort, 0, 1, 1, 1);
108
109 horizontalSpacer_3 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
110
111 gridLayout->addItem(horizontalSpacer_3, 0, 2, 1, 1);
112
113
114 verticalLayout->addWidget(grpUseGDBServer);
115
116 chkSkipSystemLib = new QCheckBox(DebugGeneralWidget);
117 chkSkipSystemLib->setObjectName(QString::fromUtf8("chkSkipSystemLib"));
118
119 verticalLayout->addWidget(chkSkipSystemLib);
120
121 chkSkipProjectLib = new QCheckBox(DebugGeneralWidget);
122 chkSkipProjectLib->setObjectName(QString::fromUtf8("chkSkipProjectLib"));
123
124 verticalLayout->addWidget(chkSkipProjectLib);
125
126 chkSkipCustomLib = new QCheckBox(DebugGeneralWidget);
127 chkSkipCustomLib->setObjectName(QString::fromUtf8("chkSkipCustomLib"));
128
129 verticalLayout->addWidget(chkSkipCustomLib);
130
131 grpEnableDebugConsole = new QGroupBox(DebugGeneralWidget);
132 grpEnableDebugConsole->setObjectName(QString::fromUtf8("grpEnableDebugConsole"));
133 grpEnableDebugConsole->setCheckable(true);
134 verticalLayout_2 = new QVBoxLayout(grpEnableDebugConsole);
135 verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
136 verticalLayout_2->setContentsMargins(11, 11, 11, 11);
137 widget = new QWidget(grpEnableDebugConsole);
138 widget->setObjectName(QString::fromUtf8("widget"));
139 horizontalLayout = new QHBoxLayout(widget);
140 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
141 horizontalLayout->setContentsMargins(0, 0, 0, 0);
142 label = new QLabel(widget);
143 label->setObjectName(QString::fromUtf8("label"));
144
145 horizontalLayout->addWidget(label);
146
147 cbFont = new QFontComboBox(widget);
148 cbFont->setObjectName(QString::fromUtf8("cbFont"));
149
150 horizontalLayout->addWidget(cbFont);
151
152 chkOnlyMono = new QCheckBox(widget);
153 chkOnlyMono->setObjectName(QString::fromUtf8("chkOnlyMono"));
154
155 horizontalLayout->addWidget(chkOnlyMono);
156
157 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
158
159 horizontalLayout->addItem(horizontalSpacer);
160
161
162 verticalLayout_2->addWidget(widget);
163
164 widget_2 = new QWidget(grpEnableDebugConsole);
165 widget_2->setObjectName(QString::fromUtf8("widget_2"));
166 horizontalLayout_2 = new QHBoxLayout(widget_2);
167 horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
168 horizontalLayout_2->setContentsMargins(0, 0, 0, 0);
169 label_2 = new QLabel(widget_2);
170 label_2->setObjectName(QString::fromUtf8("label_2"));
171
172 horizontalLayout_2->addWidget(label_2);
173
174 sbFontSize = new QSpinBox(widget_2);
175 sbFontSize->setObjectName(QString::fromUtf8("sbFontSize"));
176
177 horizontalLayout_2->addWidget(sbFontSize);
178
179 horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
180
181 horizontalLayout_2->addItem(horizontalSpacer_2);
182
183
184 verticalLayout_2->addWidget(widget_2);
185
186 chkShowDetailLog = new QCheckBox(grpEnableDebugConsole);
187 chkShowDetailLog->setObjectName(QString::fromUtf8("chkShowDetailLog"));
188
189 verticalLayout_2->addWidget(chkShowDetailLog);
190
191
192 verticalLayout->addWidget(grpEnableDebugConsole);
193
194 groupBox = new QGroupBox(DebugGeneralWidget);
195 groupBox->setObjectName(QString::fromUtf8("groupBox"));
196 verticalLayout_6 = new QVBoxLayout(groupBox);
197 verticalLayout_6->setObjectName(QString::fromUtf8("verticalLayout_6"));
198 verticalLayout_6->setContentsMargins(7, 7, -1, -1);
199 widget_5 = new QWidget(groupBox);
200 widget_5->setObjectName(QString::fromUtf8("widget_5"));
201 horizontalLayout_4 = new QHBoxLayout(widget_5);
202 horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4"));
203 horizontalLayout_4->setContentsMargins(0, 0, 0, 0);
204 label_5 = new QLabel(widget_5);
205 label_5->setObjectName(QString::fromUtf8("label_5"));
206
207 horizontalLayout_4->addWidget(label_5);
208
209 spinMemoryViewRows = new QSpinBox(widget_5);
210 spinMemoryViewRows->setObjectName(QString::fromUtf8("spinMemoryViewRows"));
211 spinMemoryViewRows->setMinimum(1);
212 spinMemoryViewRows->setMaximum(999);
213 spinMemoryViewRows->setValue(8);
214
215 horizontalLayout_4->addWidget(spinMemoryViewRows);
216
217 horizontalSpacer_4 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
218
219 horizontalLayout_4->addItem(horizontalSpacer_4);
220
221
222 verticalLayout_6->addWidget(widget_5);
223
224 widget_6 = new QWidget(groupBox);
225 widget_6->setObjectName(QString::fromUtf8("widget_6"));
226 horizontalLayout_5 = new QHBoxLayout(widget_6);
227 horizontalLayout_5->setObjectName(QString::fromUtf8("horizontalLayout_5"));
228 horizontalLayout_5->setContentsMargins(0, 0, 0, 0);
229 label_6 = new QLabel(widget_6);
230 label_6->setObjectName(QString::fromUtf8("label_6"));
231
232 horizontalLayout_5->addWidget(label_6);
233
234 spinMemoryViewColumns = new QSpinBox(widget_6);
235 spinMemoryViewColumns->setObjectName(QString::fromUtf8("spinMemoryViewColumns"));
236 spinMemoryViewColumns->setMinimum(1);
237 spinMemoryViewColumns->setValue(8);
238
239 horizontalLayout_5->addWidget(spinMemoryViewColumns);
240
241 horizontalSpacer_5 = new QSpacerItem(437, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
242
243 horizontalLayout_5->addItem(horizontalSpacer_5);
244
245
246 verticalLayout_6->addWidget(widget_6);
247
248
249 verticalLayout->addWidget(groupBox);
250
251 groupBox_2 = new QGroupBox(DebugGeneralWidget);
252 groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
253 verticalLayout_3 = new QVBoxLayout(groupBox_2);
254 verticalLayout_3->setObjectName(QString::fromUtf8("verticalLayout_3"));
255 chkAutosaveBreakpoints = new QCheckBox(groupBox_2);
256 chkAutosaveBreakpoints->setObjectName(QString::fromUtf8("chkAutosaveBreakpoints"));
257
258 verticalLayout_3->addWidget(chkAutosaveBreakpoints);
259
260 chkAutosaveWatches = new QCheckBox(groupBox_2);
261 chkAutosaveWatches->setObjectName(QString::fromUtf8("chkAutosaveWatches"));
262
263 verticalLayout_3->addWidget(chkAutosaveWatches);
264
265
266 verticalLayout->addWidget(groupBox_2);
267
268 groupBox_3 = new QGroupBox(DebugGeneralWidget);
269 groupBox_3->setObjectName(QString::fromUtf8("groupBox_3"));
270 verticalLayout_4 = new QVBoxLayout(groupBox_3);
271 verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4"));
272 chkShowCPUWhenSignaled = new QCheckBox(groupBox_3);
273 chkShowCPUWhenSignaled->setObjectName(QString::fromUtf8("chkShowCPUWhenSignaled"));
274
275 verticalLayout_4->addWidget(chkShowCPUWhenSignaled);
276
277 widget_3 = new QWidget(groupBox_3);
278 widget_3->setObjectName(QString::fromUtf8("widget_3"));
279 horizontalLayout_3 = new QHBoxLayout(widget_3);
280 horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3"));
281 horizontalLayout_3->setContentsMargins(0, 0, 0, 0);
282 label_3 = new QLabel(widget_3);
283 label_3->setObjectName(QString::fromUtf8("label_3"));
284 label_3->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop);
285
286 horizontalLayout_3->addWidget(label_3);
287
288 widget_4 = new QWidget(widget_3);
289 widget_4->setObjectName(QString::fromUtf8("widget_4"));
290 QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
291 sizePolicy.setHorizontalStretch(0);
292 sizePolicy.setVerticalStretch(0);
293 sizePolicy.setHeightForWidth(widget_4->sizePolicy().hasHeightForWidth());
294 widget_4->setSizePolicy(sizePolicy);
295 verticalLayout_5 = new QVBoxLayout(widget_4);
296 verticalLayout_5->setObjectName(QString::fromUtf8("verticalLayout_5"));
297 verticalLayout_5->setContentsMargins(0, 0, 0, 0);
298 rbIntel = new QRadioButton(widget_4);
299 grpCPUDisassembly = new QButtonGroup(DebugGeneralWidget);
300 grpCPUDisassembly->setObjectName(QString::fromUtf8("grpCPUDisassembly"));
301 grpCPUDisassembly->addButton(rbIntel);
302 rbIntel->setObjectName(QString::fromUtf8("rbIntel"));
303
304 verticalLayout_5->addWidget(rbIntel);
305
306 rbATT = new QRadioButton(widget_4);
307 grpCPUDisassembly->addButton(rbATT);
308 rbATT->setObjectName(QString::fromUtf8("rbATT"));
309
310 verticalLayout_5->addWidget(rbATT);
311
312
313 horizontalLayout_3->addWidget(widget_4);
314
315
316 verticalLayout_4->addWidget(widget_3);
317
318 chkBlendMode = new QCheckBox(groupBox_3);
319 chkBlendMode->setObjectName(QString::fromUtf8("chkBlendMode"));
320
321 verticalLayout_4->addWidget(chkBlendMode);
322
323
324 verticalLayout->addWidget(groupBox_3);
325
326 verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
327
328 verticalLayout->addItem(verticalSpacer);
329
330
331 retranslateUi(DebugGeneralWidget);
332
333 QMetaObject::connectSlotsByName(DebugGeneralWidget);
334 } // setupUi
335
336 void retranslateUi(QWidget *DebugGeneralWidget)
337 {
338 DebugGeneralWidget->setWindowTitle(QCoreApplication::translate("DebugGeneralWidget", "Form", nullptr));
339 grpUseGDBServer->setTitle(QCoreApplication::translate("DebugGeneralWidget", "Use GDB Server to debug", nullptr));
340 label_4->setText(QCoreApplication::translate("DebugGeneralWidget", "GDB Server Port", nullptr));
341 chkSkipSystemLib->setText(QCoreApplication::translate("DebugGeneralWidget", "Skip system header and library files when step into", nullptr));
342 chkSkipProjectLib->setText(QCoreApplication::translate("DebugGeneralWidget", "Skip project header and library files when step into", nullptr));
343 chkSkipCustomLib->setText(QCoreApplication::translate("DebugGeneralWidget", "Skip custom header and library files when step into", nullptr));
344 grpEnableDebugConsole->setTitle(QCoreApplication::translate("DebugGeneralWidget", "Debug Console", nullptr));
345 label->setText(QCoreApplication::translate("DebugGeneralWidget", "Font:", nullptr));
346 chkOnlyMono->setText(QCoreApplication::translate("DebugGeneralWidget", "Show only monospaced fonts", nullptr));
347 label_2->setText(QCoreApplication::translate("DebugGeneralWidget", "Size:", nullptr));
348 chkShowDetailLog->setText(QCoreApplication::translate("DebugGeneralWidget", "Show detail debug logs", nullptr));
349 groupBox->setTitle(QCoreApplication::translate("DebugGeneralWidget", "Memory View", nullptr));
350 label_5->setText(QCoreApplication::translate("DebugGeneralWidget", "Memory View Rows", nullptr));
351 label_6->setText(QCoreApplication::translate("DebugGeneralWidget", "Memory View Columns", nullptr));
352 groupBox_2->setTitle(QCoreApplication::translate("DebugGeneralWidget", "Autosave", nullptr));
353 chkAutosaveBreakpoints->setText(QCoreApplication::translate("DebugGeneralWidget", "Autosave breakpoints", nullptr));
354 chkAutosaveWatches->setText(QCoreApplication::translate("DebugGeneralWidget", "Autosave watches", nullptr));
355 groupBox_3->setTitle(QCoreApplication::translate("DebugGeneralWidget", "CPU Window", nullptr));
356 chkShowCPUWhenSignaled->setText(QCoreApplication::translate("DebugGeneralWidget", "Show CPU Window when signal received", nullptr));
357 label_3->setText(QCoreApplication::translate("DebugGeneralWidget", "Disassembly Coding Style:", nullptr));
358 rbIntel->setText(QCoreApplication::translate("DebugGeneralWidget", "Intel", nullptr));
359 rbATT->setText(QCoreApplication::translate("DebugGeneralWidget", "AT&&T", nullptr));
360 chkBlendMode->setText(QCoreApplication::translate("DebugGeneralWidget", "Show disassembly code in blend mode", nullptr));
361 } // retranslateUi
362
363};
364
365namespace Ui {
366 class DebugGeneralWidget: public Ui_DebugGeneralWidget {};
367} // namespace Ui
368
369QT_END_NAMESPACE
370
371#endif // UI_DEBUGGENERALWIDGET_H
372