nextcloud-desktop/src/mirall/application.h

94 lines
2.2 KiB
C
Raw Normal View History

2011-04-06 13:48:02 +04:00
/*
* Copyright (C) by Duncan Mac-Vicar P. <duncan@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
2011-02-17 02:21:45 +03:00
#ifndef APPLICATION_H
#define APPLICATION_H
#include <QApplication>
2011-09-26 17:00:12 +04:00
#include <QSystemTrayIcon>
2011-02-17 02:21:45 +03:00
2011-04-08 13:36:53 +04:00
#include "mirall/syncresult.h"
#include "mirall/folder.h"
2011-04-08 13:36:53 +04:00
#include "mirall/folderman.h"
2011-02-17 02:21:45 +03:00
class QAction;
2011-04-06 12:56:20 +04:00
class QMenu;
2011-02-17 02:21:45 +03:00
class QSystemTrayIcon;
class QNetworkConfigurationManager;
2011-02-17 02:21:45 +03:00
namespace Mirall {
class Theme;
class FolderWatcher;
class FolderWizard;
2011-09-26 17:00:12 +04:00
class StatusDialog;
class OwncloudSetupWizard;
2011-02-17 02:21:45 +03:00
class Application : public QApplication
{
Q_OBJECT
public:
explicit Application(int argc, char **argv);
~Application();
signals:
protected slots:
void slotAddFolder();
2011-10-13 15:55:52 +04:00
void slotRemoveFolder( const QString& );
#ifdef HAVE_FETCH_AND_PUSH
2011-10-18 12:22:24 +04:00
void slotFetchFolder( const QString& );
void slotPushFolder( const QString& );
#endif
void slotEnableFolder( const QString&, const bool );
void slotInfoFolder( const QString& );
2011-10-14 18:39:53 +04:00
void slotConfigure();
2011-02-17 02:21:45 +03:00
void slotSyncStateChange( const QString& );
2011-02-17 02:21:45 +03:00
protected:
void setupActions();
void setupSystemTray();
void setupContextMenu();
//folders have to be disabled while making config changes
void computeOverallSyncStatus();
2011-09-26 17:00:12 +04:00
protected slots:
void slotTrayClicked( QSystemTrayIcon::ActivationReason );
2011-02-17 02:21:45 +03:00
private:
// configuration file -> folder
2011-02-17 02:21:45 +03:00
QSystemTrayIcon *_tray;
QAction *_actionQuit;
QAction *_actionAddFolder;
2011-10-14 18:39:53 +04:00
QAction *_actionConfigure;
QNetworkConfigurationManager *_networkMgr;
2011-04-04 14:23:30 +04:00
FolderWizard *_folderWizard;
OwncloudSetupWizard *_owncloudSetupWizard;
2011-04-06 12:56:20 +04:00
// tray's menu
QMenu *_contextMenu;
2011-09-26 17:00:12 +04:00
StatusDialog *_statusDialog;
FolderMan *_folderMan;
Theme *_theme;
2011-02-17 02:21:45 +03:00
};
} // namespace Mirall
#endif // APPLICATION_H