blob: 40533c206c89c7a18534dc3b2e078272f34bdcf5 [file] [log] [blame]
Jared Lindblom06405c42013-01-17 20:48:39 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012-2013 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Jared Lindblom <lindblom@cs.ucla.edu>
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -080019 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
20 * Zhenkai Zhu <zhenkai@cs.ucla.edu>
21 * Ilya Moiseenko <iliamo@ucla.edu>
Jared Lindblom06405c42013-01-17 20:48:39 -080022 */
23
24#include "chronosharegui.h"
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -080025
Alexander Afanasyev83a53002013-01-24 11:12:01 -080026#include "logging.h"
Alexander Afanasyev9ca444e2013-01-25 16:29:35 -080027#include "ccnx-wrapper.h"
Zhenkai Zhuf3ea97a2013-01-30 15:20:52 -080028#include <QValidator>
Zhenkai Zhuce04cb42013-02-25 15:29:31 -080029#include <QDir>
Zhenkai Zhu25e13582013-02-27 15:33:01 -080030#include <QFileInfo>
Zhenkai Zhuce04cb42013-02-25 15:29:31 -080031#include <QDesktopServices>
Alexander Afanasyev9ca444e2013-01-25 16:29:35 -080032
33#include <boost/make_shared.hpp>
34
35using namespace boost;
36using namespace Ccnx;
Jared Lindblom06405c42013-01-17 20:48:39 -080037
Zhenkai Zhud9429222013-02-25 22:34:09 -080038static const string HTTP_SERVER_ADDRESS = "localhost";
39static const string HTTP_SERVER_PORT = "9001";
40static const string DOC_ROOT = ":/html";
41static const QString ICON_PICTURE_QSTRING(":/images/friends-group-icon.png");
42
Alexander Afanasyev83a53002013-01-24 11:12:01 -080043INIT_LOGGER ("Gui");
44
45ChronoShareGui::ChronoShareGui(QWidget *parent)
Jared Lindblomc8ffd592013-01-25 00:00:30 -080046 : QDialog(parent)
Zhenkai Zhud5756312013-01-31 13:49:45 -080047 , m_watcher(0)
48 , m_dispatcher(0)
Zhenkai Zhud9429222013-02-25 22:34:09 -080049 , m_httpServer(0)
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -080050#ifdef ADHOC_SUPPORTED
51 , m_executor (1)
52#endif
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -080053#ifdef SPARKLE_SUPPORTED
Zhenkai Zhu3857d712013-02-27 22:51:25 -080054 , m_autoUpdate(new SparkleAutoUpdate(tr("http://irl.cs.ucla.edu")))
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -080055#endif
Jared Lindblom06405c42013-01-17 20:48:39 -080056{
Jared Lindblomf4b900e2013-02-07 18:08:47 -080057 setWindowTitle("Settings");
Jared Lindblomc8ffd592013-01-25 00:00:30 -080058
Jared Lindblomd8b76ad2013-02-07 20:37:37 -080059 labelUsername = new QLabel("Username (hint: /<username>)");
Jared Lindblomc8ffd592013-01-25 00:00:30 -080060 labelSharedFolder = new QLabel("Shared Folder Name");
61 labelSharedFolderPath = new QLabel("Shared Folder Path");
Zhenkai Zhuf3ea97a2013-01-30 15:20:52 -080062
Zhenkai Zhud5756312013-01-31 13:49:45 -080063 QRegExp regex("(/[^/]+)+$");
Zhenkai Zhuf3ea97a2013-01-30 15:20:52 -080064 QValidator *prefixValidator = new QRegExpValidator(regex, this);
65
Jared Lindblomc8ffd592013-01-25 00:00:30 -080066 editUsername = new QLineEdit();
Zhenkai Zhuf3ea97a2013-01-30 15:20:52 -080067 editUsername->setValidator(prefixValidator);
68
69 QRegExp noPureWhiteSpace("^\\S+.*$");
70 QValidator *wsValidator = new QRegExpValidator(noPureWhiteSpace, this);
Jared Lindblomc8ffd592013-01-25 00:00:30 -080071 editSharedFolder = new QLineEdit();
Zhenkai Zhuf3ea97a2013-01-30 15:20:52 -080072 editSharedFolder->setValidator(wsValidator);
73
Jared Lindblomc8ffd592013-01-25 00:00:30 -080074 editSharedFolderPath = new QLineEdit();
75 editSharedFolderPath->setReadOnly(true);
76 QPalette pal = editSharedFolderPath->palette();
77 pal.setColor(QPalette::Active, QPalette::Base, pal.color(QPalette::Disabled, QPalette::Base));
78 editSharedFolderPath->setPalette(pal);
79 button = new QPushButton("Submit");
80 label = new QLabel();
81
82 connect(button, SIGNAL(clicked()), this, SLOT(changeSettings()));
83
84 mainLayout = new QVBoxLayout; //vertically
85 mainLayout->addWidget(labelUsername);
86 mainLayout->addWidget(editUsername);
87 mainLayout->addWidget(labelSharedFolder);
88 mainLayout->addWidget(editSharedFolder);
89 mainLayout->addWidget(labelSharedFolderPath);
90 mainLayout->addWidget(editSharedFolderPath);
91 mainLayout->addWidget(button);
92 mainLayout->addWidget(label);
93 setLayout(mainLayout);
94
Alexander Afanasyev83a53002013-01-24 11:12:01 -080095 // create actions that result from clicking a menu option
Zhenkai Zhu25e13582013-02-27 15:33:01 -080096 createActionsAndMenu();
Jared Lindblomb4032e22013-01-17 23:50:51 -080097
Alexander Afanasyev83a53002013-01-24 11:12:01 -080098 // create tray icon
99 createTrayIcon();
Jared Lindblomb4032e22013-01-17 23:50:51 -0800100
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800101 // set icon image
102 setIcon();
Jared Lindblom06405c42013-01-17 20:48:39 -0800103
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800104 // show tray icon
105 m_trayIcon->show();
Alexander Afanasyev9e5a4702013-01-24 13:15:23 -0800106
107 // Dispatcher(const boost::filesystem::path &path, const std::string &localUserName, const Ccnx::Name &localPrefix,
108 // const std::string &sharedFolder, const boost::filesystem::path &rootDir,
109 // Ccnx::CcnxWrapperPtr ccnx, SchedulerPtr scheduler, int poolSize = 2);
110
Zhenkai Zhud5756312013-01-31 13:49:45 -0800111 // load settings
112 if(!loadSettings())
113 {
114 // prompt user to choose folder
115 openMessageBox("First Time Setup", "Please enter a username, shared folder name and choose the shared folder path on your local filesystem.");
116 viewSettings();
117 openFileDialog();
118 viewSettings();
119 }
120 else
121 {
122 startBackend();
123 }
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800124
125#ifdef ADHOC_SUPPORTED
126 m_executor.start ();
127#endif
Zhenkai Zhud5756312013-01-31 13:49:45 -0800128}
129
130void
131ChronoShareGui::startBackend()
132{
133 if (m_watcher != 0 && m_dispatcher != 0)
134 {
135 return;
136 }
137
Alexander Afanasyev9ca444e2013-01-25 16:29:35 -0800138 m_dispatcher = new Dispatcher (m_username.toStdString (), m_sharedFolderName.toStdString (),
139 m_dirPath.toStdString (), make_shared<CcnxWrapper> ());
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800140
141 // Alex: this **must** be here, otherwise m_dirPath will be uninitialized
Alexander Afanasyev9ca444e2013-01-25 16:29:35 -0800142 m_watcher = new FsWatcher (m_dirPath,
143 bind (&Dispatcher::Did_LocalFile_AddOrModify, m_dispatcher, _1),
Zhenkai Zhud1756272013-02-01 17:02:18 -0800144 bind (&Dispatcher::Did_LocalFile_Delete, m_dispatcher, _1));
Zhenkai Zhud9429222013-02-25 22:34:09 -0800145 QFileInfo indexHtmlInfo(":/html/index.html");
146 if (indexHtmlInfo.exists())
147 {
148 m_httpServer = new http::server::server(HTTP_SERVER_ADDRESS, HTTP_SERVER_PORT, DOC_ROOT);
149 m_httpServerThread = boost::thread(&http::server::server::run, m_httpServer);
150 }
151 else
152 {
153 _LOG_ERROR ("Http server doc root dir does not exist!");
154 // shall we bail here?
155 }
Jared Lindblom06405c42013-01-17 20:48:39 -0800156}
157
158ChronoShareGui::~ChronoShareGui()
159{
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800160#ifdef ADHOC_SUPPORTED
161 m_executor.shutdown ();
162#endif
163
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800164 delete m_watcher; // stop filewatching ASAP
Alexander Afanasyev9ca444e2013-01-25 16:29:35 -0800165 delete m_dispatcher; // stop dispatcher ASAP, but after watcher (to prevent triggering callbacks on deleted object)
Zhenkai Zhu907cbaf2013-02-27 22:29:23 -0800166 m_httpServer->handle_stop();
Zhenkai Zhud9429222013-02-25 22:34:09 -0800167 delete m_httpServer;
Alexander Afanasyev9e5a4702013-01-24 13:15:23 -0800168
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800169 // cleanup
170 delete m_trayIcon;
171 delete m_trayIconMenu;
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800172#ifdef ADHOC_SUPPORTED
173 delete m_wifiAction;
174#endif
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800175#ifdef SPARKLE_SUPPORTED
176 delete m_autoUpdate;
Zhenkai Zhubb170d42013-02-25 13:48:59 -0800177 delete m_checkForUpdates;
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800178#endif
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800179 delete m_openFolder;
180 delete m_viewSettings;
181 delete m_changeFolder;
182 delete m_quitProgram;
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800183
184 delete labelUsername;
185 delete labelSharedFolder;
186 delete editUsername;
187 delete editSharedFolder;
188 delete button;
189 delete label;
190 delete mainLayout;
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800191}
192
193void ChronoShareGui::openMessageBox(QString title, QString text)
194{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800195 QMessageBox messageBox(this);
196 messageBox.setWindowTitle(title);
197 messageBox.setText(text);
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800198
Zhenkai Zhud9429222013-02-25 22:34:09 -0800199 messageBox.setIconPixmap(QPixmap(ICON_PICTURE_QSTRING));
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800200
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800201 messageBox.exec();
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800202}
203
204void ChronoShareGui::openMessageBox(QString title, QString text, QString infotext)
205{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800206 QMessageBox messageBox(this);
207 messageBox.setWindowTitle(title);
208 messageBox.setText(text);
209 messageBox.setInformativeText(infotext);
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800210
Zhenkai Zhud9429222013-02-25 22:34:09 -0800211 messageBox.setIconPixmap(QPixmap(ICON_PICTURE_QSTRING));
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800212
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800213 messageBox.exec();
Jared Lindblom06405c42013-01-17 20:48:39 -0800214}
215
Zhenkai Zhu25e13582013-02-27 15:33:01 -0800216void ChronoShareGui::createActionsAndMenu()
Jared Lindblom06405c42013-01-17 20:48:39 -0800217{
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800218 _LOG_DEBUG ("Create actions");
219
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800220 // create the "open folder" action
221 m_openFolder = new QAction(tr("&Open Folder"), this);
222 connect(m_openFolder, SIGNAL(triggered()), this, SLOT(openSharedFolder()));
Jared Lindblom06405c42013-01-17 20:48:39 -0800223
Zhenkai Zhu25e13582013-02-27 15:33:01 -0800224 m_openWeb = new QAction(tr("Open in &Browser"), this);
225 connect(m_openWeb, SIGNAL(triggered()), this, SLOT(openInWebBrowser()));
226
227 m_recentFilesMenu = new QMenu(tr("Recently Changed Files"), this);
228 for (int i = 0; i < 5; i++)
229 {
230 m_fileActions[i] = new QAction(this);
231 m_fileActions[i]->setVisible(false);
232 connect(m_fileActions[i], SIGNAL(triggered()), this, SLOT(openFile()));
233 m_recentFilesMenu->addAction(m_fileActions[i]);
234 }
235 connect(m_recentFilesMenu, SIGNAL(aboutToShow()), this, SLOT(updateRecentFilesMenu()));
236
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800237 // create the "view settings" action
238 m_viewSettings = new QAction(tr("&View Settings"), this);
239 connect(m_viewSettings, SIGNAL(triggered()), this, SLOT(viewSettings()));
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800240
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800241 // create the "change folder" action
242 m_changeFolder = new QAction(tr("&Change Folder"), this);
243 connect(m_changeFolder, SIGNAL(triggered()), this, SLOT(openFileDialog()));
Jared Lindblomb4032e22013-01-17 23:50:51 -0800244
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800245#ifdef ADHOC_SUPPORTED
246 // create "AdHoc Wifi" action
247 m_wifiAction = new QAction (tr("Enable AdHoc &WiFI"), m_trayIconMenu);
248 m_wifiAction->setChecked (false);
249 m_wifiAction->setCheckable (true);
250 connect (m_wifiAction, SIGNAL (toggled(bool)), this, SLOT(onAdHocChange(bool)));
251#endif
252
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800253#ifdef SPARKLE_SUPPORTED
Zhenkai Zhubb170d42013-02-25 13:48:59 -0800254 m_checkForUpdates = new QAction (tr("Check For Updates"), this);
255 connect (m_checkForUpdates, SIGNAL(triggered()), this, SLOT(onCheckForUpdates()));
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800256#endif
257
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800258 // create the "quit program" action
259 m_quitProgram = new QAction(tr("&Quit"), this);
260 connect(m_quitProgram, SIGNAL(triggered()), qApp, SLOT(quit()));
Jared Lindblom06405c42013-01-17 20:48:39 -0800261}
262
263void ChronoShareGui::createTrayIcon()
264{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800265 // create a new icon menu
266 m_trayIconMenu = new QMenu(this);
Jared Lindblom06405c42013-01-17 20:48:39 -0800267
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800268 // add actions to the menu
269 m_trayIconMenu->addAction(m_openFolder);
Zhenkai Zhu25e13582013-02-27 15:33:01 -0800270 m_trayIconMenu->addAction(m_openWeb);
271 m_trayIconMenu->addMenu(m_recentFilesMenu);
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800272 m_trayIconMenu->addSeparator();
273 m_trayIconMenu->addAction(m_viewSettings);
274 m_trayIconMenu->addAction(m_changeFolder);
275 m_trayIconMenu->addSeparator();
Zhenkai Zhu3857d712013-02-27 22:51:25 -0800276 m_trayIconMenu->addAction(m_checkForUpdates);
277 m_trayIconMenu->addSeparator();
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800278 m_trayIconMenu->addAction(m_wifiAction);
279 m_trayIconMenu->addSeparator();
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800280 m_trayIconMenu->addAction(m_quitProgram);
Jared Lindblom06405c42013-01-17 20:48:39 -0800281
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800282 // create new tray icon
283 m_trayIcon = new QSystemTrayIcon(this);
Jared Lindblomb4032e22013-01-17 23:50:51 -0800284
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800285#ifdef ADHOC_SUPPORTED
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800286 // associate the menu with the tray icon
287 m_trayIcon->setContextMenu(m_trayIconMenu);
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800288#endif
Jared Lindblomb4032e22013-01-17 23:50:51 -0800289
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800290 // handle left click of icon
291 connect(m_trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(trayIconClicked(QSystemTrayIcon::ActivationReason)));
Jared Lindblom06405c42013-01-17 20:48:39 -0800292}
293
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800294void
295ChronoShareGui::onAdHocChange (bool state)
296{
297#ifdef ADHOC_SUPPORTED
298 if (m_wifiAction->isChecked ())
299 {
300 QMessageBox msgBox;
301 msgBox.setText ("WARNING: your WiFi will be disconnected");
302 msgBox.setIcon (QMessageBox::Warning);
303 msgBox.setInformativeText("AdHoc WiFi will disconnect your current WiFi.\n Are you sure that you are OK with that?");
304 msgBox.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel);
305 msgBox.setDefaultButton(QMessageBox::Cancel);
306 int ret = msgBox.exec();
307
308 if (ret == QMessageBox::Cancel)
309 {
310 m_wifiAction->setChecked (false);
311 }
312 else
313 {
314
315 m_wifiAction->setText (tr("Disable AdHoc WiFI"));
316
317 // create adhoc
318 m_executor.execute (Adhoc::CreateAdhoc);
319 }
320 }
321 else
322 {
323 m_wifiAction->setText (tr("Enable AdHoc WiFI"));
324
325 // disable adhoc
326 m_executor.execute (Adhoc::DestroyAdhoc);
327
328 // a trick in DestroyAdhoc ensures that WiFi will be reconnected to a default WiFi
329 }
330#endif
331}
332
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800333void
334ChronoShareGui::onCheckForUpdates()
335{
Zhenkai Zhu249fbc72013-02-27 21:50:25 -0800336#ifdef SPARKLE_SUPPORTED
Zhenkai Zhu3857d712013-02-27 22:51:25 -0800337 cout << "+++++++++++ trying to update +++++++ " << endl;
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800338 m_autoUpdate->checkForUpdates();
Zhenkai Zhu3857d712013-02-27 22:51:25 -0800339 cout << "+++++++++++ end trying to update +++++++ " << endl;
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800340#endif
Zhenkai Zhu249fbc72013-02-27 21:50:25 -0800341}
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800342
Jared Lindblom06405c42013-01-17 20:48:39 -0800343void ChronoShareGui::setIcon()
344{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800345 // set the icon image
Zhenkai Zhud9429222013-02-25 22:34:09 -0800346 m_trayIcon->setIcon(QIcon(ICON_PICTURE_QSTRING));
Jared Lindblom06405c42013-01-17 20:48:39 -0800347}
348
349void ChronoShareGui::openSharedFolder()
350{
Zhenkai Zhuce04cb42013-02-25 15:29:31 -0800351 QString path = QDir::toNativeSeparators(m_dirPath);
352 QDesktopServices::openUrl(QUrl("file:///" + path));
Jared Lindblom06405c42013-01-17 20:48:39 -0800353}
Jared Lindblomb4032e22013-01-17 23:50:51 -0800354
Zhenkai Zhu25e13582013-02-27 15:33:01 -0800355void ChronoShareGui::openInWebBrowser()
356{
357 QDesktopServices::openUrl(QUrl("http://localhost:9001"));
358}
359
360void ChronoShareGui::openFile()
361{
362 // figure out who sent the signal
363 QAction *pAction = qobject_cast<QAction*>(sender());
364 if (pAction->isEnabled())
365 {
366 // we stored full path of the file in this toolTip field
367#ifdef Q_WS_MAC
368 // we do some hack so we could show the file in Finder highlighted
369 QStringList args;
370 args << "-e";
371 args << "tell application \"Finder\"";
372 args << "-e";
373 args << "activate";
374 args << "-e";
375 args << "select POSIX file \"" + pAction->toolTip() + "/" + pAction->text() + "\"";
376 args << "-e";
377 args << "end tell";
378 QProcess::startDetached("osascript", args);
379#else
380 // too bad qt couldn't do highlighting for Linux (or Mac)
381 QDesktopServices::openUrl(QUrl("file:///" + pAction->toolTip()));
382#endif
383 }
384}
385
386void ChronoShareGui::updateRecentFilesMenu()
387{
388 for (int i = 0; i < 5; i++)
389 {
390 m_fileActions[i]->setVisible(false);
391 }
392 m_dispatcher->LookupRecentFileActions(boost::bind(&ChronoShareGui::checkFileAction, this, _1, _2, _3), 5);
393}
394
395void ChronoShareGui::checkFileAction (const std::string &filename, int action, int index)
396{
397 QString fullPath = m_dirPath + "/" + filename.c_str();
398 QFileInfo fileInfo(fullPath);
399 if (fileInfo.exists())
400 {
401 // This is a hack, we just use some field to store the path
402 m_fileActions[index]->setToolTip(fileInfo.absolutePath());
403 m_fileActions[index]->setEnabled(true);
404 }
405 else
406 {
407 // after half an hour frustrating test and search around,
408 // I think it's the problem of Qt.
409 // According to the Qt doc, the action cannot be clicked
410 // and the area would be grey, but it didn't happen
411 // User can still trigger the action, and not greyed
412 // added check in SLOT to see if the action is "enalbed"
413 // as a remedy
414 // Give up at least for now
415 m_fileActions[index]->setEnabled(false);
416 // UPDATE, file not fetched yet
417 if (action == 0)
418 {
419 QFont font;
420 // supposed by change the font, didn't happen
421 font.setWeight(QFont::Light);
422 m_fileActions[index]->setFont(font);
423 m_fileActions[index]->setToolTip(tr("Fetching..."));
424 }
425 // DELETE
426 else
427 {
428 QFont font;
429 // supposed by change the font, didn't happen
430 font.setStrikeOut(true);
431 m_fileActions[index]->setFont(font);
432 m_fileActions[index]->setToolTip(tr("Deleted..."));
433 }
434 }
435 m_fileActions[index]->setText(fileInfo.fileName());
436 m_fileActions[index]->setVisible(true);
437}
438
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800439void ChronoShareGui::changeSettings()
440{
441 if(!editUsername->text().isEmpty())
Zhenkai Zhuf3ea97a2013-01-30 15:20:52 -0800442 m_username = editUsername->text().trimmed();
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800443 else
444 editUsername->setText(m_username);
445
446 if(!editSharedFolder->text().isEmpty())
Zhenkai Zhuf3ea97a2013-01-30 15:20:52 -0800447 m_sharedFolderName = editSharedFolder->text().trimmed();
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800448 else
449 editSharedFolder->setText(m_sharedFolderName);
450
451 saveSettings();
452 this->hide();
Zhenkai Zhud5756312013-01-31 13:49:45 -0800453
454 startBackend();
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800455}
456
Jared Lindblomb4032e22013-01-17 23:50:51 -0800457void ChronoShareGui::openFileDialog()
458{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800459 // prompt user for new directory
460 QString tempPath = QFileDialog::getExistingDirectory(this, tr("Choose a new folder"),
Alexander Afanasyev9e5a4702013-01-24 13:15:23 -0800461 m_dirPath, QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
462 QFileInfo qFileInfo (tempPath);
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800463
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800464 if(qFileInfo.isDir())
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800465 {
466 m_dirPath = tempPath;
467 editSharedFolderPath->setText(m_dirPath);
468 }
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800469 else
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800470 {
471 openMessageBox ("Error", "Not a valid folder, Ignoring.");
472 }
Jared Lindblomb4032e22013-01-17 23:50:51 -0800473
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800474 _LOG_DEBUG ("Selected path: " << m_dirPath.toStdString ());
Jared Lindblomb4032e22013-01-17 23:50:51 -0800475
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800476 // save settings
477 saveSettings();
Jared Lindblomb4032e22013-01-17 23:50:51 -0800478}
479
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800480void ChronoShareGui::trayIconClicked (QSystemTrayIcon::ActivationReason reason)
Jared Lindblomb4032e22013-01-17 23:50:51 -0800481{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800482 // if double clicked, open shared folder
483 if(reason == QSystemTrayIcon::DoubleClick)
Jared Lindblomb4032e22013-01-17 23:50:51 -0800484 {
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800485 openSharedFolder();
Jared Lindblomb4032e22013-01-17 23:50:51 -0800486 }
487}
488
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800489void ChronoShareGui::viewSettings()
Jared Lindblomb4032e22013-01-17 23:50:51 -0800490{
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800491 //simple for now
492 this->show();
Zhenkai Zhud5756312013-01-31 13:49:45 -0800493 this->raise();
494 this->activateWindow();
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800495}
496
497bool ChronoShareGui::loadSettings()
498{
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800499 bool successful = true;
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800500
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800501 // Load Settings
502 // QSettings settings(m_settingsFilePath, QSettings::NativeFormat);
503 QSettings settings (QSettings::NativeFormat, QSettings::UserScope, "irl.cs.ucla.edu", "ChronoShare");
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800504
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800505 // _LOG_DEBUG (lexical_cast<string> (settings.allKeys()));
506
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800507 if(settings.contains("username"))
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800508 {
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800509 m_username = settings.value("username", "admin").toString();
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800510 }
511 else
512 {
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800513 successful = false;
514 }
515
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800516 editUsername->setText(m_username);
517
518 if(settings.contains("sharedfoldername"))
519 {
520 m_sharedFolderName = settings.value("sharedfoldername", "shared").toString();
521 }
522 else
523 {
524 successful = false;
525 }
526
527 editSharedFolder->setText(m_sharedFolderName);
528
529 if(settings.contains("dirPath"))
530 {
531 m_dirPath = settings.value("dirPath", QDir::homePath()).toString();
532 }
533 else
534 {
535 successful = false;
536 }
537
538 editSharedFolderPath->setText(m_dirPath);
539
540 _LOG_DEBUG ("Found configured path: " << (successful ? m_dirPath.toStdString () : std::string("no")));
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800541
542 return successful;
Jared Lindblomb4032e22013-01-17 23:50:51 -0800543}
544
545void ChronoShareGui::saveSettings()
546{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800547 // Save Settings
548 // QSettings settings(m_settingsFilePath, QSettings::NativeFormat);
549 QSettings settings (QSettings::NativeFormat, QSettings::UserScope, "irl.cs.ucla.edu", "ChronoShare");
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800550
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800551 settings.setValue("dirPath", m_dirPath);
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800552 settings.setValue("username", m_username);
553 settings.setValue("sharedfoldername", m_sharedFolderName);
Jared Lindblomb4032e22013-01-17 23:50:51 -0800554}
555
556void ChronoShareGui::closeEvent(QCloseEvent* event)
557{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800558 _LOG_DEBUG ("Close Event")
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800559 this->hide();
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800560 event->ignore(); // don't let the event propagate to the base class
Jared Lindblomb4032e22013-01-17 23:50:51 -0800561}
Jared Lindblomdc845f02013-01-18 17:29:40 -0800562
563#if WAF
564#include "chronosharegui.moc"
565#include "chronosharegui.cpp.moc"
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800566#endif