Frog Archiver
1.0
Frog Archiver is compression tools for any files you have.
Loading...
Searching...
No Matches
src
compresswindow.h
1
#pragma once
2
3
#include "huffmanencoding.h"
4
5
#include <QDialog>
6
7
namespace
Ui {
8
class
CompressWindow
;
9
}
10
11
class
CompressWindow
:
public
QDialog {
12
Q_OBJECT
13
14
public
:
15
explicit
CompressWindow
(QWidget *parent =
nullptr
);
16
~CompressWindow
();
17
18
private
slots:
19
void
addFiles();
20
void
saveAs();
21
void
compress();
22
23
protected
:
24
void
showEvent(QShowEvent *)
override
;
25
26
private
:
27
Ui::CompressWindow *ui;
28
HuffmanEncoding
*huffmanEncoding;
29
void
disabledButton();
30
};
CompressWindow
Definition
compresswindow.h:11
HuffmanEncoding
Definition
huffmanencoding.h:10
Generated by
1.12.0