mirror of
https://github.com/Quill-OS/quill.git
synced 2024-11-01 05:43:21 -07:00
36 lines
705 B
C
36 lines
705 B
C
|
#ifndef ENCRYPTIONMANAGER_H
|
||
|
#define ENCRYPTIONMANAGER_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "generaldialog.h"
|
||
|
#include "toast.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class encryptionManager;
|
||
|
}
|
||
|
|
||
|
class encryptionManager : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit encryptionManager(QWidget *parent = nullptr);
|
||
|
~encryptionManager();
|
||
|
|
||
|
private slots:
|
||
|
void on_setupContinueBtn_clicked();
|
||
|
void on_setupAbortBtn_clicked();
|
||
|
void quit_restart();
|
||
|
void refreshScreen();
|
||
|
void showToast(QString messageToDisplay);
|
||
|
void setupEncryptedStorage();
|
||
|
void mkEncfsDirs();
|
||
|
|
||
|
private:
|
||
|
Ui::encryptionManager *ui;
|
||
|
generalDialog * generalDialogWindow;
|
||
|
toast * toastWindow;
|
||
|
};
|
||
|
|
||
|
#endif // ENCRYPTIONMANAGER_H
|