-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathopenproject.h
More file actions
executable file
·45 lines (33 loc) · 673 Bytes
/
openproject.h
File metadata and controls
executable file
·45 lines (33 loc) · 673 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
44
45
#ifndef OPENPROJECT_H
#define OPENPROJECT_H
#include <QWidget>
#include "base/app_context.h"
namespace Ui {
class OpenProject;
}
/**
* @brief The NewProject class
*/
class OpenProject : public QWidget
{
Q_OBJECT
public:
explicit OpenProject(AppContext *context, QWidget *parent = nullptr);
~OpenProject();
private slots:
/**
* @brief on_pushButton_clicked
*/
void on_pushButton_clicked();
/**
* @brief on_pushButton_path_clicked
*/
void on_pushButton_path_clicked();
private:
Ui::OpenProject *ui;
// kontext aplikace
AppContext *context;
signals:
void projectOpened();
};
#endif // NEWPROJECT_H