From 2d6cbf8a0bb81bfe55a7d4e04d53a704f93c6b2e Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 9 Oct 2019 18:02:19 +0200 Subject: Make FileBrowser window always-on-top and try to position it inside the plugin gui window rectangle. --- plugingui/window.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'plugingui/window.h') 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; -- cgit v1.2.3