2023-11-26 14:28:46 +00:00
|
|
|
#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();
|
|
|
|
|
2024-09-15 13:26:58 +01:00
|
|
|
QString GetFormat();
|
2023-11-26 14:28:46 +00:00
|
|
|
int GetLevel();
|
|
|
|
bool MakeSolid();
|
|
|
|
|
|
|
|
void SetMustEncrypt();
|
|
|
|
bool UseEncryption();
|
|
|
|
|
2024-09-15 13:26:58 +01:00
|
|
|
private slots:
|
|
|
|
void OnFormatChanged(int index);
|
|
|
|
|
2023-11-26 14:28:46 +00:00
|
|
|
private:
|
|
|
|
Ui::CompressDialog ui;
|
|
|
|
};
|