24 lines
354 B
C
24 lines
354 B
C
|
#pragma once
|
||
|
|
||
|
#include <QtWidgets/QMainWindow>
|
||
|
#include "ui_CompressDialog.h"
|
||
|
#include "SbiePlusAPI.h"
|
||
|
|
||
|
class CCompressDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
CCompressDialog(QWidget *parent = Q_NULLPTR);
|
||
|
~CCompressDialog();
|
||
|
|
||
|
int GetLevel();
|
||
|
bool MakeSolid();
|
||
|
|
||
|
void SetMustEncrypt();
|
||
|
bool UseEncryption();
|
||
|
|
||
|
private:
|
||
|
Ui::CompressDialog ui;
|
||
|
};
|