diff options
Diffstat (limited to 'plugingui/window.h')
-rw-r--r-- | plugingui/window.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugingui/window.h b/plugingui/window.h index e5bc496..6031500 100644 --- a/plugingui/window.h +++ b/plugingui/window.h @@ -45,6 +45,7 @@ public: ~Window(); void setFixedSize(int width, int height); + void setAlwaysOnTop(bool always_on_top); void setCaption(const std::string& caption); // From Widget: @@ -53,7 +54,7 @@ public: void show() override; void hide() override; Window* window() override; - + Size getNativeSize(); ImageCache& getImageCache() override; EventHandler* eventHandler(); @@ -73,6 +74,9 @@ public: // \returns the native window handle, it HWND on Win32 or Window id on X11 void* getNativeWindowHandle() const; + //! Translate a local window coordinate to a global screen coordinate. + Point translateToScreen(const Point& point); + protected: // For the EventHandler friend class EventHandler; |