summaryrefslogtreecommitdiff
path: root/plugingui/window.cc
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/window.cc')
-rw-r--r--plugingui/window.cc16
1 files changed, 16 insertions, 0 deletions
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;