-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnewclasswin.h
More file actions
43 lines (31 loc) · 841 Bytes
/
newclasswin.h
File metadata and controls
43 lines (31 loc) · 841 Bytes
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
#ifndef NEWCLASSWIN_H
#define NEWCLASSWIN_H
#include <QDialog>
#include "logicclass.h"
#include "project.h"
namespace Ui {
class NewClassWin;
}
class NewClassWin : public QDialog
{
Q_OBJECT
public:
explicit NewClassWin(Project *proj, QWidget *parent = nullptr);
~NewClassWin();
/// Restituisce il risultato
LogicClass* getResult();
private slots:
void on_buttonBox_accepted();
void on_checkBox_2_stateChanged(int arg1);
void on_versionAddTo_currentIndexChanged(const QString &arg1);
void on_generateConstr_stateChanged(int arg1);
void on_infoUse_stateChanged(int arg1);
void on_checkBox_stateChanged(int arg1);
private:
Ui::NewClassWin *ui;
// progetto corrente
Project *current_project;
// risultato delle operazioni
LogicClass *result;
};
#endif // NEWCLASSWIN_H