-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcryptionwindow.h
More file actions
37 lines (32 loc) · 827 Bytes
/
cryptionwindow.h
File metadata and controls
37 lines (32 loc) · 827 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
#ifndef CryptionWindow_H
#define CryptionWindow_H
#include <QMainWindow>
#include "imagecryption.h"
#include "logger.h"
#include "settings.h"
namespace Ui {
class CryptionWindow;
}
class CryptionWindow : public QMainWindow
{
Q_OBJECT
public:
explicit CryptionWindow(QWidget *parent = 0);
~CryptionWindow();
static Logger log;
private:
Ui::CryptionWindow *ui;
Settings set;
ImageCryption* iC;
private slots:
void changeFileToEncryptPath();
void changeFileEncryptedPath();
void changeFileToDecryptPath();
void changeFileDecryptedPath();
void changeSettings();
void startEncrypt();
void startDecrypt();
void finishedEncrypt();
void finishedDecrypt();
};
#endif // CryptionWindow_H