-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathimportimage.h
More file actions
executable file
·41 lines (31 loc) · 652 Bytes
/
importimage.h
File metadata and controls
executable file
·41 lines (31 loc) · 652 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
#ifndef IMPORTIMAGE_H
#define IMPORTIMAGE_H
#include <QWidget>
#include "base/app_context.h"
namespace Ui {
class ImportImage;
}
/**
* @brief The ImportImage class
*/
class ImportImage : public QWidget
{
Q_OBJECT
public:
explicit ImportImage(AppContext *context, QWidget *parent = nullptr);
~ImportImage();
private slots:
/**
* @brief on_pushButton_import_clicked
*/
void on_pushButton_import_clicked();
/**
* @brief on_pushButton_path_clicked
*/
void on_pushButton_path_clicked();
private:
Ui::ImportImage *ui;
// kontext aplikace
AppContext *context;
};
#endif // IMPORTIMAGE_H