-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathremotetreesdialog.h
More file actions
40 lines (34 loc) · 796 Bytes
/
remotetreesdialog.h
File metadata and controls
40 lines (34 loc) · 796 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 REMOTETREESDIALOG_H
#define REMOTETREESDIALOG_H
#include "psynclib.h"
#include "common.h"
#include <QDialog>
#include <QShowEvent>
#include <QTreeWidgetItem>
#include <QMessageBox>
class PCloudWindow;
namespace Ui {
class RemoteTreesDialog;
}
class RemoteTreesDialog : public QDialog
{
Q_OBJECT
public:
explicit RemoteTreesDialog(QString curritem, QWidget *parent);
~RemoteTreesDialog();
quint64 getFldrid();
QString getFldrPath();
void init();
protected:
Ui::RemoteTreesDialog *ui;
quint64 fldrid;
QString fldrPath;
void showEvent(QShowEvent *event);
private:
QTreeWidgetItem* root;
QString currentItemPath;
public slots:
QString newRemoteFldr();
virtual void setSelectedFolder();
};
#endif // REMOTETREESDIALOG_H