X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fgraphicalui.h;h=3797d0847f96d69d3f126efcdde8f9d27f0745f0;hp=e35b3cec2a3ad95c288c1d87a8257e5e4d5c38b2;hb=72473527f99cbe68dcfcb4ca17f828bd3775bba7;hpb=921e54680da16fcf2adb7a90506875aceb6633a4 diff --git a/src/uisupport/graphicalui.h b/src/uisupport/graphicalui.h index e35b3cec..3797d084 100644 --- a/src/uisupport/graphicalui.h +++ b/src/uisupport/graphicalui.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -22,6 +22,7 @@ #define GRAPHICALUI_H_ #include "abstractui.h" +#include "singleton.h" class ActionCollection; class ContextMenuActionProvider; @@ -31,15 +32,15 @@ class UiStyle; #ifdef Q_OS_WIN # include #endif +#ifdef Q_OS_MAC +#include +#endif -class GraphicalUi : public AbstractUi +class GraphicalUi : public AbstractUi, protected Singleton { Q_OBJECT public: - GraphicalUi(QObject *parent = 0); - virtual void init(); - //! Access global ActionCollections. /** These ActionCollections are associated with the main window, i.e. they contain global * actions (and thus, shortcuts). Widgets providing application-wide shortcuts should @@ -75,6 +76,9 @@ public: static bool isMainWidgetVisible(); protected: + GraphicalUi(QObject *parent = 0); + virtual void init(); + //! This is the widget we associate global actions with, typically the main window void setMainWidget(QWidget *); @@ -106,9 +110,6 @@ protected slots: virtual void disconnectedFromCore(); private: - static inline GraphicalUi *instance(); - - static GraphicalUi *_instance; static QWidget *_mainWidget; static QHash _actionCollections; static ContextMenuActionProvider *_contextMenuActionProvider; @@ -119,12 +120,14 @@ private: #ifdef Q_OS_WIN DWORD _dwTickCount; #endif +#ifdef Q_OS_MAC + ProcessSerialNumber _procNum; +#endif }; // inlines -GraphicalUi *GraphicalUi::instance() { return _instance; } ContextMenuActionProvider *GraphicalUi::contextMenuActionProvider() { return _contextMenuActionProvider; } ToolBarActionProvider *GraphicalUi::toolBarActionProvider() { return _toolBarActionProvider; } UiStyle *GraphicalUi::uiStyle() { return _uiStyle; }