nextcloud-desktop/src/mirall/application.h

118 lines
2.8 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>
#include <QNetworkReply>
#include <QSslError>
#include <QPointer>
#include <QQueue>
2011-02-17 02:21:45 +03:00
#include "qtsingleapplication.h"
2011-04-08 13:36:53 +04:00
#include "mirall/syncresult.h"
#include "mirall/logbrowser.h"
#include "mirall/owncloudgui.h"
#include "mirall/connectionvalidator.h"
#include "mirall/progressdispatcher.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;
class QSignalMapper;
class QNetworkReply;
2011-02-17 02:21:45 +03:00
namespace Mirall {
class Theme;
class Folder;
class FolderWatcher;
class ownCloudInfo;
class SslErrorDialog;
class SettingsDialog;
class ItemProgressDialog;
2011-02-17 02:21:45 +03:00
class Application : public SharedTools::QtSingleApplication
2011-02-17 02:21:45 +03:00
{
Q_OBJECT
public:
2012-04-20 15:17:48 +04:00
explicit Application(int &argc, char **argv);
2011-02-17 02:21:45 +03:00
~Application();
2012-06-15 15:36:38 +04:00
bool giveHelp();
void showHelp();
2012-06-15 15:36:38 +04:00
public slots:
// TODO: this should not be public
2012-11-28 22:25:12 +04:00
void slotownCloudWizardDone(int);
2011-02-17 02:21:45 +03:00
protected:
void parseOptions(const QStringList& );
void setupTranslations();
2011-02-17 02:21:45 +03:00
void setupContextMenu();
void setupLogBrowser();
void enterNextLogFile();
bool checkConfigExists(bool openSettings);
2011-02-17 02:21:45 +03:00
2013-06-05 18:14:20 +04:00
// reimplemented
#if defined(Q_WS_WIN)
bool winEventFilter( MSG * message, long * result );
#endif
signals:
void folderRemoved();
void folderStateChanged(Folder*);
2011-09-26 17:00:12 +04:00
protected slots:
void slotParseOptions( const QString& );
void slotCheckConnection();
void slotConnectionValidatorResult(ConnectionValidator::Status);
void slotSyncStateChange( const QString& );
void slotOpenLogBrowser();
void slotSSLFailed( QNetworkReply *reply, QList<QSslError> errors );
void slotStartUpdateDetector();
void slotSetupProxy();
void slotUseMonoIconsChanged( bool );
void slotCredentialsFetched();
void slotCleanup();
2011-02-17 02:21:45 +03:00
private:
void setHelp();
2013-01-15 23:41:52 +04:00
void raiseDialog( QWidget* );
void rebuildRecentMenus();
void runValidator();
2012-06-15 15:36:38 +04:00
QPointer<ownCloudGui> _gui;
QNetworkConfigurationManager *_networkMgr;
2011-04-04 14:23:30 +04:00
SslErrorDialog *_sslErrorDialog;
ConnectionValidator *_conValidator;
2011-04-06 12:56:20 +04:00
Theme *_theme;
QPointer<LogBrowser>_logBrowser;
QString _logFile;
QString _logDirectory;
int _logExpire;
bool _showLogWindow;
bool _logFlush;
bool _helpOnly;
2011-02-17 02:21:45 +03:00
};
} // namespace Mirall
#endif // APPLICATION_H