blob: a8290997f2014523844de5f521766e62d31efdcb [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 Zhubb170d42013-02-25 13:48:59 -080054 , m_autoUpdate(new SparkleAutoUpdate(tr("http://no-url.org")))
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();
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800276 m_trayIconMenu->addAction(m_wifiAction);
277 m_trayIconMenu->addSeparator();
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800278 m_trayIconMenu->addAction(m_quitProgram);
Jared Lindblom06405c42013-01-17 20:48:39 -0800279
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800280 // create new tray icon
281 m_trayIcon = new QSystemTrayIcon(this);
Jared Lindblomb4032e22013-01-17 23:50:51 -0800282
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800283#ifdef ADHOC_SUPPORTED
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800284 // associate the menu with the tray icon
285 m_trayIcon->setContextMenu(m_trayIconMenu);
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800286#endif
Jared Lindblomb4032e22013-01-17 23:50:51 -0800287
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800288 // handle left click of icon
289 connect(m_trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(trayIconClicked(QSystemTrayIcon::ActivationReason)));
Jared Lindblom06405c42013-01-17 20:48:39 -0800290}
291
Alexander Afanasyev85a4ba02013-02-24 16:30:17 -0800292void
293ChronoShareGui::onAdHocChange (bool state)
294{
295#ifdef ADHOC_SUPPORTED
296 if (m_wifiAction->isChecked ())
297 {
298 QMessageBox msgBox;
299 msgBox.setText ("WARNING: your WiFi will be disconnected");
300 msgBox.setIcon (QMessageBox::Warning);
301 msgBox.setInformativeText("AdHoc WiFi will disconnect your current WiFi.\n Are you sure that you are OK with that?");
302 msgBox.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel);
303 msgBox.setDefaultButton(QMessageBox::Cancel);
304 int ret = msgBox.exec();
305
306 if (ret == QMessageBox::Cancel)
307 {
308 m_wifiAction->setChecked (false);
309 }
310 else
311 {
312
313 m_wifiAction->setText (tr("Disable AdHoc WiFI"));
314
315 // create adhoc
316 m_executor.execute (Adhoc::CreateAdhoc);
317 }
318 }
319 else
320 {
321 m_wifiAction->setText (tr("Enable AdHoc WiFI"));
322
323 // disable adhoc
324 m_executor.execute (Adhoc::DestroyAdhoc);
325
326 // a trick in DestroyAdhoc ensures that WiFi will be reconnected to a default WiFi
327 }
328#endif
329}
330
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800331void
332ChronoShareGui::onCheckForUpdates()
333{
Zhenkai Zhu249fbc72013-02-27 21:50:25 -0800334#ifdef SPARKLE_SUPPORTED
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800335 m_autoUpdate->checkForUpdates();
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800336#endif
Zhenkai Zhu249fbc72013-02-27 21:50:25 -0800337}
Zhenkai Zhuaca6cb52013-02-24 23:34:03 -0800338
Jared Lindblom06405c42013-01-17 20:48:39 -0800339void ChronoShareGui::setIcon()
340{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800341 // set the icon image
Zhenkai Zhud9429222013-02-25 22:34:09 -0800342 m_trayIcon->setIcon(QIcon(ICON_PICTURE_QSTRING));
Jared Lindblom06405c42013-01-17 20:48:39 -0800343}
344
345void ChronoShareGui::openSharedFolder()
346{
Zhenkai Zhuce04cb42013-02-25 15:29:31 -0800347 QString path = QDir::toNativeSeparators(m_dirPath);
348 QDesktopServices::openUrl(QUrl("file:///" + path));
Jared Lindblom06405c42013-01-17 20:48:39 -0800349}
Jared Lindblomb4032e22013-01-17 23:50:51 -0800350
Zhenkai Zhu25e13582013-02-27 15:33:01 -0800351void ChronoShareGui::openInWebBrowser()
352{
353 QDesktopServices::openUrl(QUrl("http://localhost:9001"));
354}
355
356void ChronoShareGui::openFile()
357{
358 // figure out who sent the signal
359 QAction *pAction = qobject_cast<QAction*>(sender());
360 if (pAction->isEnabled())
361 {
362 // we stored full path of the file in this toolTip field
363#ifdef Q_WS_MAC
364 // we do some hack so we could show the file in Finder highlighted
365 QStringList args;
366 args << "-e";
367 args << "tell application \"Finder\"";
368 args << "-e";
369 args << "activate";
370 args << "-e";
371 args << "select POSIX file \"" + pAction->toolTip() + "/" + pAction->text() + "\"";
372 args << "-e";
373 args << "end tell";
374 QProcess::startDetached("osascript", args);
375#else
376 // too bad qt couldn't do highlighting for Linux (or Mac)
377 QDesktopServices::openUrl(QUrl("file:///" + pAction->toolTip()));
378#endif
379 }
380}
381
382void ChronoShareGui::updateRecentFilesMenu()
383{
384 for (int i = 0; i < 5; i++)
385 {
386 m_fileActions[i]->setVisible(false);
387 }
388 m_dispatcher->LookupRecentFileActions(boost::bind(&ChronoShareGui::checkFileAction, this, _1, _2, _3), 5);
389}
390
391void ChronoShareGui::checkFileAction (const std::string &filename, int action, int index)
392{
393 QString fullPath = m_dirPath + "/" + filename.c_str();
394 QFileInfo fileInfo(fullPath);
395 if (fileInfo.exists())
396 {
397 // This is a hack, we just use some field to store the path
398 m_fileActions[index]->setToolTip(fileInfo.absolutePath());
399 m_fileActions[index]->setEnabled(true);
400 }
401 else
402 {
403 // after half an hour frustrating test and search around,
404 // I think it's the problem of Qt.
405 // According to the Qt doc, the action cannot be clicked
406 // and the area would be grey, but it didn't happen
407 // User can still trigger the action, and not greyed
408 // added check in SLOT to see if the action is "enalbed"
409 // as a remedy
410 // Give up at least for now
411 m_fileActions[index]->setEnabled(false);
412 // UPDATE, file not fetched yet
413 if (action == 0)
414 {
415 QFont font;
416 // supposed by change the font, didn't happen
417 font.setWeight(QFont::Light);
418 m_fileActions[index]->setFont(font);
419 m_fileActions[index]->setToolTip(tr("Fetching..."));
420 }
421 // DELETE
422 else
423 {
424 QFont font;
425 // supposed by change the font, didn't happen
426 font.setStrikeOut(true);
427 m_fileActions[index]->setFont(font);
428 m_fileActions[index]->setToolTip(tr("Deleted..."));
429 }
430 }
431 m_fileActions[index]->setText(fileInfo.fileName());
432 m_fileActions[index]->setVisible(true);
433}
434
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800435void ChronoShareGui::changeSettings()
436{
437 if(!editUsername->text().isEmpty())
Zhenkai Zhuf3ea97a2013-01-30 15:20:52 -0800438 m_username = editUsername->text().trimmed();
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800439 else
440 editUsername->setText(m_username);
441
442 if(!editSharedFolder->text().isEmpty())
Zhenkai Zhuf3ea97a2013-01-30 15:20:52 -0800443 m_sharedFolderName = editSharedFolder->text().trimmed();
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800444 else
445 editSharedFolder->setText(m_sharedFolderName);
446
447 saveSettings();
448 this->hide();
Zhenkai Zhud5756312013-01-31 13:49:45 -0800449
450 startBackend();
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800451}
452
Jared Lindblomb4032e22013-01-17 23:50:51 -0800453void ChronoShareGui::openFileDialog()
454{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800455 // prompt user for new directory
456 QString tempPath = QFileDialog::getExistingDirectory(this, tr("Choose a new folder"),
Alexander Afanasyev9e5a4702013-01-24 13:15:23 -0800457 m_dirPath, QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
458 QFileInfo qFileInfo (tempPath);
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800459
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800460 if(qFileInfo.isDir())
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800461 {
462 m_dirPath = tempPath;
463 editSharedFolderPath->setText(m_dirPath);
464 }
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800465 else
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800466 {
467 openMessageBox ("Error", "Not a valid folder, Ignoring.");
468 }
Jared Lindblomb4032e22013-01-17 23:50:51 -0800469
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800470 _LOG_DEBUG ("Selected path: " << m_dirPath.toStdString ());
Jared Lindblomb4032e22013-01-17 23:50:51 -0800471
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800472 // save settings
473 saveSettings();
Jared Lindblomb4032e22013-01-17 23:50:51 -0800474}
475
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800476void ChronoShareGui::trayIconClicked (QSystemTrayIcon::ActivationReason reason)
Jared Lindblomb4032e22013-01-17 23:50:51 -0800477{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800478 // if double clicked, open shared folder
479 if(reason == QSystemTrayIcon::DoubleClick)
Jared Lindblomb4032e22013-01-17 23:50:51 -0800480 {
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800481 openSharedFolder();
Jared Lindblomb4032e22013-01-17 23:50:51 -0800482 }
483}
484
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800485void ChronoShareGui::viewSettings()
Jared Lindblomb4032e22013-01-17 23:50:51 -0800486{
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800487 //simple for now
488 this->show();
Zhenkai Zhud5756312013-01-31 13:49:45 -0800489 this->raise();
490 this->activateWindow();
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800491}
492
493bool ChronoShareGui::loadSettings()
494{
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800495 bool successful = true;
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800496
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800497 // Load Settings
498 // QSettings settings(m_settingsFilePath, QSettings::NativeFormat);
499 QSettings settings (QSettings::NativeFormat, QSettings::UserScope, "irl.cs.ucla.edu", "ChronoShare");
Jared Lindblom5d7e51e2013-01-18 00:59:34 -0800500
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800501 // _LOG_DEBUG (lexical_cast<string> (settings.allKeys()));
502
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800503 if(settings.contains("username"))
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800504 {
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800505 m_username = settings.value("username", "admin").toString();
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800506 }
507 else
508 {
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800509 successful = false;
510 }
511
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800512 editUsername->setText(m_username);
513
514 if(settings.contains("sharedfoldername"))
515 {
516 m_sharedFolderName = settings.value("sharedfoldername", "shared").toString();
517 }
518 else
519 {
520 successful = false;
521 }
522
523 editSharedFolder->setText(m_sharedFolderName);
524
525 if(settings.contains("dirPath"))
526 {
527 m_dirPath = settings.value("dirPath", QDir::homePath()).toString();
528 }
529 else
530 {
531 successful = false;
532 }
533
534 editSharedFolderPath->setText(m_dirPath);
535
536 _LOG_DEBUG ("Found configured path: " << (successful ? m_dirPath.toStdString () : std::string("no")));
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800537
538 return successful;
Jared Lindblomb4032e22013-01-17 23:50:51 -0800539}
540
541void ChronoShareGui::saveSettings()
542{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800543 // Save Settings
544 // QSettings settings(m_settingsFilePath, QSettings::NativeFormat);
545 QSettings settings (QSettings::NativeFormat, QSettings::UserScope, "irl.cs.ucla.edu", "ChronoShare");
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800546
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800547 settings.setValue("dirPath", m_dirPath);
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800548 settings.setValue("username", m_username);
549 settings.setValue("sharedfoldername", m_sharedFolderName);
Jared Lindblomb4032e22013-01-17 23:50:51 -0800550}
551
552void ChronoShareGui::closeEvent(QCloseEvent* event)
553{
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800554 _LOG_DEBUG ("Close Event")
Jared Lindblomc8ffd592013-01-25 00:00:30 -0800555 this->hide();
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800556 event->ignore(); // don't let the event propagate to the base class
Jared Lindblomb4032e22013-01-17 23:50:51 -0800557}
Jared Lindblomdc845f02013-01-18 17:29:40 -0800558
559#if WAF
560#include "chronosharegui.moc"
561#include "chronosharegui.cpp.moc"
Alexander Afanasyev83a53002013-01-24 11:12:01 -0800562#endif