From: Stephan Beyer Date: Thu, 25 Jun 2020 10:46:16 +0000 (+0200) Subject: Hide Systray's auxiliary positioning methods from public and Qml X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~133^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=20b58219e42593852ac19a5b00d28fd7a68bb3ad;p=nextcloud-desktop.git Hide Systray's auxiliary positioning methods from public and Qml Signed-off-by: Stephan Beyer --- diff --git a/src/gui/systray.h b/src/gui/systray.h index d2b908252..8f1612a2a 100644 --- a/src/gui/systray.h +++ b/src/gui/systray.h @@ -61,10 +61,6 @@ public: Q_INVOKABLE void setOpened(); Q_INVOKABLE void setClosed(); Q_INVOKABLE void positionWindow(QQuickWindow *window) const; - Q_INVOKABLE QPoint calcTrayIconCenter() const; - Q_INVOKABLE TaskBarPosition taskbarOrientation() const; - Q_INVOKABLE QRect taskbarGeometry() const; - Q_INVOKABLE QPoint computeWindowPosition(int width, int height) const; signals: void currentUserChanged(); @@ -88,6 +84,10 @@ private: QScreen *currentScreen() const; QRect currentScreenRect() const; QPoint computeWindowReferencePoint() const; + QPoint calcTrayIconCenter() const; + TaskBarPosition taskbarOrientation() const; + QRect taskbarGeometry() const; + QPoint computeWindowPosition(int width, int height) const; bool _isOpen = false; bool _syncIsPaused = false;