-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
125 lines (101 loc) · 3.09 KB
/
mainwindow.cpp
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QDebug>
#include <QFile>
#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonArray>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
readSettings();
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_startConnect_clicked()
{
HostInfo info;
info.hostAddr = ui->hostAddr->text() + ":" + QString::number(ui->port->value());
info.password = ui->password->text();
info.userName = ui->username->text();
info.rootPath = ui->rootPath->text();
dokanyThread.reset(new DokanyThread(info));
dokanyThread->start();
writeSettings();
}
void MainWindow::on_saveButton_clicked()
{
writeSettings();
}
void MainWindow::readSettings()
{
QFile file("settings.json");
file.open(QIODevice::ReadOnly);
QJsonDocument doc = QJsonDocument::fromJson(file.readAll());
file.close();
QJsonObject json = doc.object();
QJsonArray array = json.value("hosts").toArray();
for (int i = 0; i < array.count(); i++)
{
HostInfo info;
info.hostAddr = array.at(i)["hostAddr"].toString();
info.userName = array.at(i)["userName"].toString();
info.password = array.at(i)["password"].toString();
info.rootPath = array.at(i)["rootPath"].toString();
hostInfoVec.append(info);
ui->hostList->addItem(info.hostAddr);
}
}
void MainWindow::writeSettings()
{
QJsonObject json;
QJsonArray array;
HostInfo info;
info.hostAddr = ui->hostAddr->text() + ":" + QString::number(ui->port->value());
info.password = ui->password->text();
info.userName = ui->username->text();
info.rootPath = ui->rootPath->text();
hostInfoVec[ui->hostList->currentRow()] = info;
ui->hostList->item(ui->hostList->currentRow())->setText(info.hostAddr);
for (auto info : hostInfoVec)
{
QJsonObject value;
value["hostAddr"] = info.hostAddr;
value["userName"] = info.userName;
value["password"] = info.password;
value["rootPath"] = info.rootPath;
array.append(value);
}
json["hosts"] = array;
QFile file("settings.json");
file.open(QIODevice::WriteOnly);
QJsonDocument doc(json);
file.write(doc.toJson());
file.close();
}
void MainWindow::on_hostList_currentRowChanged(int currentRow)
{
HostInfo info = hostInfoVec.at(currentRow);
QStringList addr = info.hostAddr.split(":");
if (addr.count() != 2) return;
ui->hostAddr->setText(addr[0]);
ui->port->setValue(addr[1].toInt());
ui->username->setText(info.userName);
ui->password->setText(info.password);
ui->rootPath->setText(info.rootPath);
}
void MainWindow::on_actionAdd_triggered()
{
}
void MainWindow::on_add_clicked()
{
HostInfo info;
info.hostAddr = "new";
hostInfoVec.append(info);
ui->hostList->addItem(info.hostAddr);
ui->hostList->setCurrentRow(ui->hostList->count() - 1);
}