-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.hpp
49 lines (40 loc) · 905 Bytes
/
MainWindow.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#pragma once
#include <QMainWindow>
#include <QStateMachine>
namespace Ui
{
class MainWindow;
}
class FileListModel;
class JunkFileFinder;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget* parent = nullptr);
~MainWindow();
signals:
void directorySelected();
void searchStarted();
void noResultsFound();
void resultsFound();
private slots:
void onAbout();
void onOpenDirectoryDialog();
void onStartStopSearch();
void onProgress(const QString&);
void onFinished();
void onSelectAll();
void onRemoveSelected();
void onCreateFileContextMenu(const QPoint&);
private:
void initJiffie();
void initMenuBar();
void initStateMachine();
void openFileWithDefaultAssociation(const QString& filePath);
void openParentDirectory(const QString& filePath);
Ui::MainWindow* _ui;
FileListModel* _model;
JunkFileFinder* _jiffie;
QStateMachine _machine;
};