feat: Add BrowserWindow.setWindowButtonVisibility()
Fixes #12701 and supersedes #13131. Ideally we would have added `setTitleBarStyle()`, but that is a significantly more involved change. For example, consider the case where we switch from `hidden` to `normal`. We would not only have to show the traffic light buttons, we would also have to switch the window from a frameless to a framed window and deal with various other window state. Lets instead implement a simple solution for #12701.
This commit is contained in:
parent
00c0c180ab
commit
a42ca9eecc
8 changed files with 82 additions and 7 deletions
|
@ -187,6 +187,9 @@ class NativeWindow : public base::SupportsUserData,
|
|||
virtual void ToggleTabBar();
|
||||
virtual bool AddTabbedWindow(NativeWindow* window);
|
||||
|
||||
// Returns false if unsupported.
|
||||
virtual bool SetWindowButtonVisibility(bool visible);
|
||||
|
||||
// Toggle the menu bar.
|
||||
virtual void SetAutoHideMenuBar(bool auto_hide);
|
||||
virtual bool IsMenuBarAutoHide();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue