X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fgraphicalui.h;h=b7e96bf3c2af6e2db0a60c3f9656cad43c254362;hb=4e452ee828fdb411e6b1db07c18e02681a30ff27;hp=0fbf96b39e361a57c79b3cfef1ba34d6788962e8;hpb=0a43227b8cd44625f4881cc1545d42c8c8a4876c;p=quassel.git diff --git a/src/uisupport/graphicalui.h b/src/uisupport/graphicalui.h index 0fbf96b3..b7e96bf3 100644 --- a/src/uisupport/graphicalui.h +++ b/src/uisupport/graphicalui.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 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 * @@ -31,15 +31,15 @@ class UiStyle; #ifdef Q_OS_WIN # include #endif +#ifdef Q_OS_MAC +#include +#endif class GraphicalUi : public AbstractUi { 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 +75,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 +109,8 @@ protected slots: virtual void disconnectedFromCore(); private: - static inline GraphicalUi *instance(); + static GraphicalUi *instance(); - static GraphicalUi *_instance; static QWidget *_mainWidget; static QHash _actionCollections; static ContextMenuActionProvider *_contextMenuActionProvider; @@ -119,12 +121,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; }