| // Copyright 2012 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_H_ |
| #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_H_ |
| |
| #include "base/memory/raw_ptr.h" |
| #include "build/build_config.h" |
| #include "content/public/browser/keyboard_event_processing_result.h" |
| #include "ui/base/mojom/menu_source_type.mojom-forward.h" |
| #include "ui/base/mojom/window_show_state.mojom-forward.h" |
| #include "ui/base/pointer/touch_ui_controller.h" |
| #include "ui/views/context_menu_controller.h" |
| #include "ui/views/widget/widget.h" |
| |
| #if BUILDFLAG(IS_CHROMEOS) |
| #include <optional> |
| #endif |
| |
| class BrowserNonClientFrameView; |
| class BrowserRootView; |
| enum class BrowserThemeChangeType; |
| class BrowserView; |
| class NativeBrowserFrame; |
| class SystemMenuModelBuilder; |
| |
| namespace input { |
| struct NativeWebKeyboardEvent; |
| } |
| |
| namespace gfx { |
| class Rect; |
| } |
| |
| namespace ui { |
| class MenuModel; |
| } |
| |
| namespace views { |
| class Label; |
| class MenuRunner; |
| class NonClientFrameView; |
| class View; |
| } // namespace views |
| |
| enum class TabDragKind { |
| // No drag is active. |
| kNone, |
| |
| // One or more (but not all) tabs within a window are being dragged. |
| kTab, |
| |
| // All of the tabs in a window are being dragged, and the whole window is |
| // along for the ride. |
| kAllTabs, |
| }; |
| |
| // This is a virtual interface that allows system specific browser frames. |
| class BrowserFrame : public views::Widget, public views::ContextMenuController { |
| public: |
| explicit BrowserFrame(BrowserView* browser_view); |
| |
| BrowserFrame(const BrowserFrame&) = delete; |
| BrowserFrame& operator=(const BrowserFrame&) = delete; |
| |
| ~BrowserFrame() override; |
| |
| #if BUILDFLAG(IS_LINUX) |
| // Returns whether the frame is in a tiled state. |
| bool tiled() const { return tiled_; } |
| void set_tiled(bool tiled) { tiled_ = tiled; } |
| #endif |
| |
| // Initialize the frame (creates the underlying native window). |
| void InitBrowserFrame(); |
| |
| // Determine the distance of the left edge of the minimize button from the |
| // left edge of the window. Used in our Non-Client View's Layout. |
| int GetMinimizeButtonOffset() const; |
| |
| // Retrieves the bounds in non-client view coordinates for the |
| // TabStripRegionView that contains the TabStrip view. |
| gfx::Rect GetBoundsForTabStripRegion( |
| const gfx::Size& tabstrip_minimum_size) const; |
| |
| // Retrieves the maximum bounds in non-client view coordinates for the |
| // WebAppFrameToolbarView that contains Web App controls. |
| gfx::Rect GetBoundsForWebAppFrameToolbar( |
| const gfx::Size& toolbar_preferred_size) const; |
| |
| // Lays out the window title for a web app within the given available space. |
| // Unlike the above GetBounds methods this is not just a method to return the |
| // bounds the title should occupy, since different implementations might also |
| // want to change other attributes of the title, such as alignment. |
| void LayoutWebAppWindowTitle(const gfx::Rect& available_space, |
| views::Label& window_title_label) const; |
| |
| // Returns the inset of the topmost view in the client view from the top of |
| // the non-client view. The topmost view depends on the window type. The |
| // topmost view is the tab strip for tabbed browser windows, the toolbar for |
| // popups, the web contents for app windows and varies for fullscreen windows. |
| int GetTopInset() const; |
| |
| // Tells the frame to update the throbber. |
| void UpdateThrobber(bool running); |
| |
| // Returns the NonClientFrameView of this frame. |
| BrowserNonClientFrameView* GetFrameView() const; |
| |
| // Returns |true| if we should use the custom frame. |
| bool UseCustomFrame() const; |
| |
| // Returns true when the window placement should be saved. |
| bool ShouldSaveWindowPlacement() const; |
| |
| // Retrieves the window placement (show state and bounds) for restoring. |
| void GetWindowPlacement(gfx::Rect* bounds, |
| ui::mojom::WindowShowState* show_state) const; |
| |
| // Returns HANDLED if the |event| was handled by the platform implementation |
| // before sending it to the renderer. E.g., it may be swallowed by a native |
| // menu bar. Returns NOT_HANDLED_IS_SHORTCUT if the event was not handled, but |
| // would be handled as a shortcut if the renderer chooses not to handle it. |
| // Otherwise returns NOT_HANDLED. |
| content::KeyboardEventProcessingResult PreHandleKeyboardEvent( |
| const input::NativeWebKeyboardEvent& event); |
| |
| // Returns true if the |event| was handled by the platform implementation, |
| // if the renderer did not process it. |
| bool HandleKeyboardEvent(const input::NativeWebKeyboardEvent& event); |
| |
| // Called when BrowserView creates all it's child views. |
| void OnBrowserViewInitViewsComplete(); |
| |
| // ThemeService calls this when a user has changed their theme, indicating |
| // that it's time to redraw everything. |
| void UserChangedTheme(BrowserThemeChangeType theme_change_type); |
| |
| // views::Widget: |
| views::internal::RootView* CreateRootView() override; |
| std::unique_ptr<views::NonClientFrameView> CreateNonClientFrameView() |
| override; |
| bool GetAccelerator(int command_id, |
| ui::Accelerator* accelerator) const override; |
| const ui::ThemeProvider* GetThemeProvider() const override; |
| ui::ColorProviderKey::ThemeInitializerSupplier* GetCustomTheme() |
| const override; |
| void OnNativeWidgetWorkspaceChanged() override; |
| void OnNativeWidgetDestroyed() override; |
| |
| // views::ContextMenuController: |
| void ShowContextMenuForViewImpl( |
| views::View* source, |
| const gfx::Point& p, |
| ui::mojom::MenuSourceType source_type) override; |
| |
| // Returns whether MenuRunner is running or not. Useful to check if the system |
| // context menu is showing, when menu_runner_ is used. |
| bool IsMenuRunnerRunningForTesting() const; |
| |
| // Returns the menu model. BrowserFrame owns the returned model. |
| // Note that in multi user mode this will upon each call create a new model. |
| ui::MenuModel* GetSystemMenuModel(); |
| |
| NativeBrowserFrame* native_browser_frame() const { |
| return native_browser_frame_; |
| } |
| |
| void SetTabDragKind(TabDragKind tab_drag_kind); |
| TabDragKind tab_drag_kind() const { return tab_drag_kind_; } |
| |
| protected: |
| // views::Widget: |
| void OnNativeThemeUpdated(ui::NativeTheme* observed_theme) override; |
| ui::ColorProviderKey GetColorProviderKey() const override; |
| |
| private: |
| void OnTouchUiChanged(); |
| |
| // Callback for MenuRunner. |
| void OnMenuClosed(); |
| |
| // Select a native theme that is appropriate for the current context. This is |
| // currently only needed for Linux to switch between the regular NativeTheme |
| // and the GTK NativeTheme instance. |
| void SelectNativeTheme(); |
| |
| // Regenerate the frame on theme change if necessary. Returns true if |
| // regenerated. |
| bool RegenerateFrameOnThemeChange(BrowserThemeChangeType theme_change_type); |
| |
| // Returns true if the browser instance belongs to an incognito profile. |
| bool IsIncognitoBrowser() const; |
| |
| raw_ptr<NativeBrowserFrame> native_browser_frame_; |
| |
| // A weak reference to the root view associated with the window. We save a |
| // copy as a BrowserRootView to avoid evil casting later, when we need to call |
| // functions that only exist on BrowserRootView (versus RootView). |
| raw_ptr<BrowserRootView> root_view_; |
| |
| // A pointer to our NonClientFrameView as a BrowserNonClientFrameView. |
| raw_ptr<BrowserNonClientFrameView> browser_frame_view_; |
| |
| // The BrowserView is our ClientView. This is a pointer to it. |
| raw_ptr<BrowserView> browser_view_; |
| |
| std::unique_ptr<SystemMenuModelBuilder> menu_model_builder_; |
| |
| // Used to show the system menu. Only used if |
| // NativeBrowserFrame::UsesNativeSystemMenu() returns false. |
| std::unique_ptr<views::MenuRunner> menu_runner_; |
| |
| base::CallbackListSubscription subscription_ = |
| ui::TouchUiController::Get()->RegisterCallback( |
| base::BindRepeating(&BrowserFrame::OnTouchUiChanged, |
| base::Unretained(this))); |
| |
| // Indicates the drag state for this window. The value can be kWindowDrag |
| // if the accociated browser is the dragged browser or kTabDrag |
| // if this is the source browser that the drag window originates from. During |
| // tab dragging process, the dragged browser or the source browser's bounds |
| // may change, the fast resize strategy will be used to resize its web |
| // contents for smoother dragging. |
| TabDragKind tab_drag_kind_ = TabDragKind::kNone; |
| |
| #if BUILDFLAG(IS_LINUX) |
| bool tiled_ = false; |
| #endif |
| |
| #if BUILDFLAG(IS_CHROMEOS) |
| // Store the number of virtual desks that currently exist and if the window |
| // state is float state type. Used to determine whether the system menu |
| // should be reset. |
| std::optional<int> num_desks_; |
| std::optional<bool> is_float_state_type_; |
| #endif |
| }; |
| |
| #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_H_ |