X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fqtuiapplication.h;h=39eea07c2a44454f0397c1dab743b6b9b5bf813f;hp=525a22ab5573229f17ee6e0967eb594babdcb498;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/qtui/qtuiapplication.h b/src/qtui/qtuiapplication.h index 525a22ab..39eea07c 100644 --- a/src/qtui/qtuiapplication.h +++ b/src/qtui/qtuiapplication.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,52 +15,72 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef QTUIAPPLICATION_H_ -#define QTUIAPPLICATION_H_ +#pragma once -#ifdef HAVE_KDE -# include -#else -# include -#endif +#include "qtui-export.h" +#include + +#include #include +#include "client.h" #include "quassel.h" #include "uisettings.h" +#include "qtuisettings.h" class QtUi; -#ifdef HAVE_KDE -class QtUiApplication : public KApplication, public Quassel -{ -#else -class QtUiApplication : public QApplication, public Quassel +class QTUI_EXPORT QtUiApplication : public QApplication { -#endif - Q_OBJECT public: QtUiApplication(int &, char **); - ~QtUiApplication(); - virtual bool init(); - void resumeSessionIfPossible(); - virtual void commitData(QSessionManager &manager); - virtual void saveState(QSessionManager &manager); + virtual void init(); + void resumeSessionIfPossible(); inline bool isAboutToQuit() const { return _aboutToQuit; } + void commitData(QSessionManager &manager); + void saveState(QSessionManager &manager); + protected: - virtual void quit(); + virtual Quassel::QuitHandler quitHandler(); private: - bool _aboutToQuit; -}; + /** + * Migrate settings if neccessary and possible + * + * If unsuccessful (major version changed, minor version upgrade failed), returning false, the + * settings are in an unknown state and the client should quit. + * + * @return True if settings successfully migrated, otherwise false + */ + bool migrateSettings(); + + /** + * Migrate from one minor settings version to the next + * + * Settings can only be migrated one version at a time. Start from the current version, calling + * this function for each intermediate version up until the latest version. + * + * @param[in] settings Current settings instance + * @param[in] newVersion Next target version for migration, at most 1 from the current version + * @return True if minor revision of settings successfully migrated, otherwise false + */ + bool applySettingsMigration(QtUiSettings settings, const uint newVersion); + +private slots: + void initUi(); +protected: + std::unique_ptr _client; -#endif +private: + bool _aboutToQuit{false}; +};