Improve systray activation behavior; more refactoring
[quassel.git] / src / qtui / mainwin.h
index 4929e5c..53548bf 100644 (file)
 #  include <QMainWindow>
 #endif
 
-#ifdef Q_WS_WIN
-#  include <windows.h>
-#endif
-
 #include "qtui.h"
 #include "titlesetter.h"
 #include "uisettings.h"
@@ -88,17 +84,12 @@ class MainWin
 
   public slots:
     void showStatusBarMessage(const QString &message);
-    void toggleMinimizedToTray();
-
-    //! Bring window to front and focus it
-    void forceActivated();
 
     //! Quit application
     void quit();
 
   protected:
     void closeEvent(QCloseEvent *event);
-    void changeEvent(QEvent *event);
     void moveEvent(QMoveEvent *event);
     void resizeEvent(QResizeEvent *event);
 
@@ -188,8 +179,6 @@ class MainWin
     void updateIcon();
     void enableMenus();
 
-    void hideToTray();
-
     QList<BufferViewDock *> _bufferViews;
     BufferWidget *_bufferWidget;
     NickListWidget *_nickListWidget;
@@ -208,10 +197,6 @@ class MainWin
     QSize _normalSize; //!< Size of the non-maximized window
     QPoint _normalPos; //!< Position of the non-maximized window
 
-#ifdef Q_WS_WIN
-    DWORD dwTickCount;
-#endif
-
     BufferHotListFilter *_bufferHotList;
 
     friend class QtUi;