diff options
Diffstat (limited to 'views/window/window.h')
-rw-r--r-- | views/window/window.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/views/window/window.h b/views/window/window.h index becb8d0..d322d8f 100644 --- a/views/window/window.h +++ b/views/window/window.h @@ -120,6 +120,10 @@ class Window { virtual void SetFullscreen(bool fullscreen) = 0; virtual bool IsFullscreen() const = 0; + // Sets whether or not the window should show its frame as a "transient drag + // frame" - slightly transparent and without the standard window controls. + virtual void SetUseDragFrame(bool use_drag_frame) = 0; + // Returns true if the Window is considered to be an "app window" - i.e. // any window which when it is the last of its type closed causes the // application to exit. |