summaryrefslogtreecommitdiffstats
path: root/tcutils/mainwindow.cpp
blob: 8cc0a988349f889474fcc9dd9645f437e161546c (plain)
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);

    wtsChannel = NULL;
    okToQuit = false;
    savedGeometry = this->geometry();

    /* setup tab to unmount drives */
    ui->tabWidget->setTabText(0, "Unmount drives");
    connect(ui->btnRefresh, SIGNAL(clicked()), this, SLOT(onBtnRefreshClicked()));
    connect(ui->btnUnmount, SIGNAL(clicked()), this, SLOT(onBtnUnmountClicked()));

    ui->tabWidget->setTabText(1, "");
    if (initWtsChannel())
    {
        okToQuit = true;
        QTimer::singleShot(10, qApp, SLOT(quit()));
        return;
    }
    setupSystemTray();

    /* set up status bar to display messages */
    statusBar = new QStatusBar;
    this->setStatusBar(statusBar);
    setStatusMsg("Connected to client");
}

MainWindow::~MainWindow()
{
    delete ui;
}

void MainWindow::setupSystemTray()
{
    trayMenu = new QMenu(this);
    trayMenu->addAction("Launch Thinclient Utils", this, SLOT(onActionLaunch()));
    trayMenu->addSeparator();
    trayMenu->addAction("Quit", this, SLOT(onActionQuit()));

    trayIcon = new QSystemTrayIcon;
    trayIcon->setContextMenu(trayMenu);
    trayIcon->setIcon(QIcon(":/images/resources/images/tools.gif"));

    trayIcon->show();

    trayIcon->showMessage("TCutils", "Click on the tcutils icon to launch tcutils",
                          QSystemTrayIcon::Information, 3000);

    connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
            this, SLOT(onSystemTrayClicked(QSystemTrayIcon::ActivationReason)));
}

/**
 *
 *****************************************************************************/

int MainWindow::initWtsChannel()
{
    /* init the channel just once */
    if (wtsChannel)
        return 0;

    /* open a WTS channel and connect to remote client */
    wtsChannel = WTSVirtualChannelOpenEx(WTS_CURRENT_SESSION, "tcutils", 0);
    if (wtsChannel == NULL)
    {
        QMessageBox::information(this, "Open virtual channel", "Error "
                                 "connecting to remote client. This program "
                                 "can only be used when connected via "
                                 "NeutrinoRDP.\n\nClick ok to close this "
                                 "application");
        return -1;
    }

    return 0;
}

/**
 *
 *****************************************************************************/

int MainWindow::deinitWtsChannel()
{
    if (!wtsChannel)
        return -1;

    WTSVirtualChannelClose(wtsChannel);
    return 0;
}

/**
 * Display a msg on the status bar
 *
 * @param  msg  message to display in status bar
 *****************************************************************************/

void MainWindow::setStatusMsg(QString msg)
{
    statusBar->showMessage(msg, 30000);
}

/**
 *
 *****************************************************************************/

void MainWindow::closeEvent(QCloseEvent *event)
{
    if (!okToQuit)
    {
        savedGeometry = this->geometry();
        this->hide();
        event->ignore();
        return;
    }

    if (wtsChannel)
        deinitWtsChannel();

    event->accept();
}

/******************************************************************************
**                                                                           **
**                              slots go here                                **
**                                                                           **
******************************************************************************/
#if 1
void MainWindow::onBtnRefreshClicked()
{
    int i;

    /* clear drive list */
    if (itemList.count())
    {
        for (i = 0; i < itemList.count(); i++)
            ui->listWidget->removeItemWidget(itemList.at(i));

        itemList.clear();
    }
    ui->listWidget->clear();

    if (Utils::getMountList(wtsChannel, &itemList))
    {
        QMessageBox::information(this, "Get device list", "\nError getting "
                                 "device list from client");
        return;
    }

    if (itemList.count() == 0)
    {
        QMessageBox::information(this, "Get device list",
                                 "\nNo devices found!");
        return;
    }

    /* add mount point to list widget */
    for (i = 0; i < itemList.count(); i++)
        ui->listWidget->insertItem(i, itemList.at(i));
}
#else
void MainWindow::onBtnRefreshClicked()
{
    QListWidgetItem *item;
    int              i;
    int              j;

    /* clear drive list */
    if (itemList.count())
    {
        for (i = 0; i < itemList.count(); i++)
            ui->listWidget->removeItemWidget(itemList.at(i));

        itemList.clear();
    }
    ui->listWidget->clear();

    QDir dir(QDir::homePath() + "/xrdp_client");
    QStringList sl = dir.entryList();

    for (i = 0, j = 0; i < sl.count(); i++)
    {
        /* skip files starting with . */
        if (sl.at(i).startsWith("."))
            continue;

        /* add mount point to list widget */
        item = new QListWidgetItem;
        item->setText(sl.at(i));
        ui->listWidget->insertItem(j++, item);
        itemList.append(item);
    }
}
#endif

void MainWindow::onBtnUnmountClicked()
{
    QListWidgetItem *item = ui->listWidget->currentItem();

    if (!item)
    {
        QMessageBox::information(this, "Unmount device", "\nNo device selected. "
                                 "You must select a device to unmount");
        return;
    }

    if (Utils::unmountDevice(wtsChannel, item->text(), statusBar) == 0)
    {
        delete ui->listWidget->takeItem(itemList.indexOf(item));
        itemList.removeOne(item);
    }
}

void MainWindow::onActionQuit()
{
    okToQuit = true;
    this->close();
}

void MainWindow::onActionLaunch()
{
    this->show();
    this->setGeometry(savedGeometry);
}

void MainWindow::onSystemTrayClicked(QSystemTrayIcon::ActivationReason)
{
    trayMenu->popup(QCursor::pos());
}