nextcloud-desktop/src/mirall/application.h

104 lines
2.4 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 <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 QSystemTrayIcon;
namespace Mirall {
class Theme;
class Folder;
class SslErrorDialog;
class SocketApi;
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();
void setupLogging();
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 slotStartUpdateDetector();
void slotSetupProxy();
void slotUseMonoIconsChanged( bool );
void slotCredentialsFetched();
void slotCleanup();
2011-02-17 02:21:45 +03:00
private:
void setHelp();
void runValidator();
2012-06-15 15:36:38 +04:00
QPointer<ownCloudGui> _gui;
QPointer<SocketApi> _socketApi;
2011-04-04 14:23:30 +04:00
ConnectionValidator *_conValidator;
2011-04-06 12:56:20 +04:00
Theme *_theme;
bool _helpOnly;
bool _startupNetworkError;
// options from command line:
bool _showLogWindow;
QString _logFile;
QString _logDir;
int _logExpire;
bool _logFlush;
friend class ownCloudGui; // for _startupNetworkError
2011-02-17 02:21:45 +03:00
};
} // namespace Mirall
#endif // APPLICATION_H