-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathLocalExplorer.h
More file actions
40 lines (27 loc) · 773 Bytes
/
Copy pathLocalExplorer.h
File metadata and controls
40 lines (27 loc) · 773 Bytes
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
#ifndef COMER_LOCALEXPLORER_H
#define COMET_LOCALEXPLORER_H
#include <QWidget>
#include <QtWidgets>
// Custom Classes
#include "AddressBar.h"
#include "CustomFileModel.h"
class LocalExplorer : public QWidget
{
Q_OBJECT
public:
explicit LocalExplorer(QWidget* parent = 0);
QTableView* table;
private:
CustomFileModel* model; // Custom Class
AddressBar* addressBar;
QString mainDir;
signals:
void sendDropData(QString type, QString source, QString desination, QString sftpType);
public slots:
protected:
private slots:
void updatedPath(QString Path);
void rowSelected(const QModelIndex indx);
void receiveDropData(QString type, QString source, QString destination,QString sftpType);
};
#endif // COMET_LOCALEXPLORER_H