質問編集履歴
1
ヘッダーファイルのソースコードを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -201,3 +201,127 @@
|
|
201
201
|
|
202
202
|
|
203
203
|
```
|
204
|
+
|
205
|
+
### ヘッダーファイル
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
```C++
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
#ifndef SETUPWINDOW_H
|
216
|
+
|
217
|
+
#define SETUPWINDOW_H
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
#include <QMainWindow>
|
222
|
+
|
223
|
+
#include <QFile>
|
224
|
+
|
225
|
+
#include <QFileDialog>
|
226
|
+
|
227
|
+
#include <QMessageBox>
|
228
|
+
|
229
|
+
#include <QTextStream>
|
230
|
+
|
231
|
+
#include <QtWidgets>
|
232
|
+
|
233
|
+
#include <QRadioButton>
|
234
|
+
|
235
|
+
#include <QStandardPaths>
|
236
|
+
|
237
|
+
#include <QProcess>
|
238
|
+
|
239
|
+
#include <QTimeEdit>
|
240
|
+
|
241
|
+
#include <QSpinBox>
|
242
|
+
|
243
|
+
#include <QApplication>
|
244
|
+
|
245
|
+
|
246
|
+
|
247
|
+
namespace Ui {
|
248
|
+
|
249
|
+
class SetupWindow;
|
250
|
+
|
251
|
+
}
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
class SetupWindow : public QMainWindow
|
256
|
+
|
257
|
+
{
|
258
|
+
|
259
|
+
|
260
|
+
|
261
|
+
Q_OBJECT
|
262
|
+
|
263
|
+
|
264
|
+
|
265
|
+
public:
|
266
|
+
|
267
|
+
bool FLEmpty;
|
268
|
+
|
269
|
+
QStringList filePaths;
|
270
|
+
|
271
|
+
QString dir_path;
|
272
|
+
|
273
|
+
QString mem_path;
|
274
|
+
|
275
|
+
QSpinBox spinbox;
|
276
|
+
|
277
|
+
int config_1;
|
278
|
+
|
279
|
+
bool rbtn;
|
280
|
+
|
281
|
+
bool rbtn_2;
|
282
|
+
|
283
|
+
explicit SetupWindow(QWidget *parent = 0);
|
284
|
+
|
285
|
+
~SetupWindow();
|
286
|
+
|
287
|
+
|
288
|
+
|
289
|
+
private slots:
|
290
|
+
|
291
|
+
void on_pushButton_clicked();
|
292
|
+
|
293
|
+
|
294
|
+
|
295
|
+
void on_pushButton_2_clicked();
|
296
|
+
|
297
|
+
|
298
|
+
|
299
|
+
void on_radioButton_2_clicked();
|
300
|
+
|
301
|
+
|
302
|
+
|
303
|
+
void on_radioButton_clicked();
|
304
|
+
|
305
|
+
|
306
|
+
|
307
|
+
void on_spinBox_editingFinished();
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
void on_spinBox_valueChanged(int arg1);
|
312
|
+
|
313
|
+
|
314
|
+
|
315
|
+
private:
|
316
|
+
|
317
|
+
Ui::SetupWindow *ui;
|
318
|
+
|
319
|
+
};
|
320
|
+
|
321
|
+
|
322
|
+
|
323
|
+
#endif // SETUPWINDOW_H
|
324
|
+
|
325
|
+
|
326
|
+
|
327
|
+
```
|