-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the compress and decompress window and the view errors button
- Loading branch information
1 parent
9257511
commit b4ed8dd
Showing
7 changed files
with
304 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef RESULTWINDOW_H | ||
#define RESULTWINDOW_H | ||
|
||
#include <QDialog> | ||
#include <QLabel> | ||
#include <QVBoxLayout> | ||
#include <QScrollArea> | ||
|
||
class ResultWindow : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
ResultWindow(QWidget *parent = nullptr); | ||
void setLabelText(const QString &text); | ||
|
||
private: | ||
QLabel *resultLabel; | ||
QScrollArea *scrollArea; | ||
}; | ||
|
||
#endif // RESULTWINDOW_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.