X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fqtuiapplication.h;h=a5e68e1bc01d7ad1255fd20a563c6c6f82b75085;hp=6f4a7e26353dfc5d3e9a679b9430902a714c70aa;hb=d438145b28f34b7fdbc7e290aa001e5f3f922207;hpb=9fc57dc2c000e80fb8bd746a090e2e8210e1278e diff --git a/src/qtui/qtuiapplication.h b/src/qtui/qtuiapplication.h index 6f4a7e26..a5e68e1b 100644 --- a/src/qtui/qtuiapplication.h +++ b/src/qtui/qtuiapplication.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 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 * @@ -18,10 +18,11 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef QTUIAPPLICATION_H_ -#define QTUIAPPLICATION_H_ +#pragma once -#ifdef HAVE_KDE +#include + +#ifdef HAVE_KDE4 # include #else # include @@ -29,16 +30,18 @@ #include +#include "client.h" #include "quassel.h" #include "uisettings.h" +#include "qtuisettings.h" class QtUi; -#ifdef HAVE_KDE -class QtUiApplication : public KApplication, public Quassel +#ifdef HAVE_KDE4 +class QtUiApplication : public KApplication { #else -class QtUiApplication : public QApplication, public Quassel +class QtUiApplication : public QApplication { #endif @@ -46,21 +49,52 @@ class QtUiApplication : public QApplication, public Quassel 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; } +#if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0)) + void commitData(QSessionManager &manager) override; + void saveState(QSessionManager &manager) override; +#else + void commitData(QSessionManager &manager); + void saveState(QSessionManager &manager); +#endif + 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); -#endif +private slots: + void initUi(); + +protected: + std::unique_ptr _client; + +private: + bool _aboutToQuit{false}; +};