Enable Breeze on Appveyor
[quassel.git] / src / qtui / qtuiapplication.h
index 7478875..514c37f 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   Copyright (C) 2005-2015 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   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_
 
-#ifdef HAVE_KDE
+#ifdef HAVE_KDE4
 #  include <KApplication>
 #else
 #  include <QApplication>
 
 class QtUi;
 
-#ifdef HAVE_KDE
-class QtUiApplication : public KApplication, public Quassel {
+#ifdef HAVE_KDE4
+class QtUiApplication : public KApplication, public Quassel
+{
 #else
-class QtUiApplication : public QApplication, public Quassel {
+class QtUiApplication : public QApplication, public Quassel
+{
 #endif
 
-  Q_OBJECT
+    Q_OBJECT
 
 public:
-  QtUiApplication(int &, char **);
-  ~QtUiApplication();
-  virtual bool init();
+    QtUiApplication(int &, char **);
+    ~QtUiApplication();
+    virtual bool init();
 
-  void resumeSessionIfPossible();
-  virtual void commitData(QSessionManager &manager);
-  virtual void saveState(QSessionManager &manager);
+    void resumeSessionIfPossible();
+    inline bool isAboutToQuit() const { return _aboutToQuit; }
 
-  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 void quit();
 
 private:
-  bool _aboutToQuit;
+    bool _aboutToQuit;
 };
 
+
 #endif