diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-04-18 14:58:49 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-04-18 14:59:08 +0200 |
commit | b382c7e3c6645c977cd9a7bf28b639a349d5bbde (patch) | |
tree | 18813fb8f00f4814749957bd37af31de3b2c1cc3 /plugingui/nativewindow.h | |
parent | 37cb6cefcab6be0a1337e0a346d6e259f8dbbb5f (diff) |
Make visible() call into nativewindow and make Win32 windows invisible on creation.
Diffstat (limited to 'plugingui/nativewindow.h')
-rw-r--r-- | plugingui/nativewindow.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugingui/nativewindow.h b/plugingui/nativewindow.h index b4429af..6dcb308 100644 --- a/plugingui/nativewindow.h +++ b/plugingui/nativewindow.h @@ -68,6 +68,9 @@ public: //! Hides the window. virtual void hide() = 0; + //! Return visibility state of the native window. + virtual bool visible() const = 0; + //! Sets the window caption in the title bar (if it has one). virtual void setCaption(const std::string &caption) = 0; |