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.cc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'plugingui/window.cc') diff --git a/plugingui/window.cc b/plugingui/window.cc index 60ecf02..a9deed5 100644 --- a/plugingui/window.cc +++ b/plugingui/window.cc @@ -86,6 +86,11 @@ void Window::setFixedSize(int w, int h) native->setFixedSize(w, h); } +void Window::setAlwaysOnTop(bool always_on_top) +{ + native->setAlwaysOnTop(always_on_top); +} + void Window::setCaption(const std::string& caption) { native->setCaption(caption); @@ -125,6 +130,12 @@ Window* Window::window() return this; } +Size Window::getNativeSize() +{ + auto sz = native->getSize(); + return {sz.first, sz.second}; +} + ImageCache& Window::getImageCache() { return image_cache; @@ -188,6 +199,11 @@ void* Window::getNativeWindowHandle() const return native->getNativeWindowHandle(); } +Point Window::translateToScreen(const Point& point) +{ + return native->translateToScreen(point); +} + std::size_t Window::translateToWindowX() { return 0; -- cgit v1.2.3