-
Notifications
You must be signed in to change notification settings - Fork 2
/
mainwindow.h
48 lines (36 loc) · 961 Bytes
/
mainwindow.h
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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QList>
#include <QListWidget>
#include <QThread>
#include "drivewidget.h"
#include "drivesscanner/drivesscanner.h"
#include "drivesejector/drivesejector.h"
class MainWindow : public QMainWindow
{
Q_OBJECT
private:
QLabel *title;
QPushButton *closeButton;
QList<DriveWidget*> *drivesList;
QListWidget *drivesListBox;
DrivesScanner *drivesScanner;
DrivesEjector *drivesEjector;
USBInfo *info;
QThread *scanThread;
int clickX;
int clickY;
public:
MainWindow(QWidget *parent = 0);
~MainWindow();
void createListBox();
void composeMainWindow();
void setDrives(QList<Drive *> *srcDrivesList);
void addDrive(Drive *drive);
void resetDrivesList(USBInfo *info);
void displayRemovalError();
void mousePressEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
};
#endif // MAINWINDOW_H