123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- // Copyright (c) 2014 GitHub, Inc.
- // Use of this source code is governed by the MIT license that can be
- // found in the LICENSE file.
- #ifndef ATOM_BROWSER_UI_VIEWS_MENU_BAR_H_
- #define ATOM_BROWSER_UI_VIEWS_MENU_BAR_H_
- #include <memory>
- #include "atom/browser/ui/atom_menu_model.h"
- #include "atom/browser/ui/views/menu_delegate.h"
- #include "atom/browser/ui/views/root_view.h"
- #include "ui/views/accessible_pane_view.h"
- #include "ui/views/controls/button/menu_button_listener.h"
- #include "ui/views/focus/focus_manager.h"
- #include "ui/views/view.h"
- namespace views {
- class Button;
- class MenuButton;
- } // namespace views
- namespace atom {
- class MenuBarColorUpdater : public views::FocusChangeListener {
- public:
- explicit MenuBarColorUpdater(MenuBar* menu_bar);
- ~MenuBarColorUpdater() override;
- void OnDidChangeFocus(views::View* focused_before,
- views::View* focused_now) override;
- void OnWillChangeFocus(views::View* focused_before,
- views::View* focused_now) override {}
- private:
- MenuBar* menu_bar_;
- };
- class MenuBar : public views::AccessiblePaneView,
- public views::MenuButtonListener,
- public atom::MenuDelegate::Observer {
- public:
- static const char kViewClassName[];
- explicit MenuBar(RootView* window);
- ~MenuBar() override;
- // Replaces current menu with a new one.
- void SetMenu(AtomMenuModel* menu_model);
- // Shows underline under accelerators.
- void SetAcceleratorVisibility(bool visible);
- // Returns true if the submenu has accelerator |key|
- bool HasAccelerator(base::char16 key);
- // Shows the submenu whose accelerator is |key|.
- void ActivateAccelerator(base::char16 key);
- // Returns there are how many items in the root menu.
- int GetItemCount() const;
- // Get the menu under specified screen point.
- bool GetMenuButtonFromScreenPoint(const gfx::Point& point,
- AtomMenuModel** menu_model,
- views::MenuButton** button);
- // atom::MenuDelegate::Observer:
- void OnBeforeExecuteCommand() override;
- void OnMenuClosed() override;
- // views::AccessiblePaneView:
- bool AcceleratorPressed(const ui::Accelerator& accelerator) override;
- bool SetPaneFocus(views::View* initial_focus) override;
- void RemovePaneFocus() override;
- protected:
- // views::View:
- const char* GetClassName() const override;
- // views::MenuButtonListener:
- void OnMenuButtonClicked(views::Button* source,
- const gfx::Point& point,
- const ui::Event* event) override;
- void OnThemeChanged() override;
- private:
- friend class MenuBarColorUpdater;
- void RebuildChildren();
- void UpdateViewColors();
- void RefreshColorCache();
- SkColor background_color_;
- #if defined(USE_X11)
- SkColor enabled_color_;
- SkColor disabled_color_;
- #endif
- RootView* window_ = nullptr;
- AtomMenuModel* menu_model_ = nullptr;
- View* FindAccelChild(base::char16 key);
- bool has_focus_ = true;
- std::unique_ptr<MenuBarColorUpdater> color_updater_;
- DISALLOW_COPY_AND_ASSIGN(MenuBar);
- };
- } // namespace atom
- #endif // ATOM_BROWSER_UI_VIEWS_MENU_BAR_H_
|