2016-01-19 21:09:01 +01:00
|
|
|
// Copyright 2016 The Chromium Embedded Framework Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found
|
|
|
|
// in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_VIEWS_WINDOW_IMPL_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_VIEWS_WINDOW_IMPL_H_
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
#include <map>
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
#include "include/views/cef_window.h"
|
|
|
|
#include "include/views/cef_window_delegate.h"
|
|
|
|
|
|
|
|
#include "libcef/browser/menu_model_impl.h"
|
|
|
|
#include "libcef/browser/views/panel_impl.h"
|
|
|
|
#include "libcef/browser/views/window_view.h"
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
#include "ui/base/accelerators/accelerator.h"
|
2016-01-19 21:09:01 +01:00
|
|
|
#include "ui/views/controls/menu/menu_runner.h"
|
|
|
|
#include "ui/views/widget/widget.h"
|
|
|
|
|
|
|
|
namespace views {
|
|
|
|
class MenuButton;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
class CefWindowImpl
|
|
|
|
: public CefPanelImpl<CefWindowView, CefWindow, CefWindowDelegate>,
|
|
|
|
public CefWindowView::Delegate,
|
|
|
|
public ui::AcceleratorTarget {
|
2016-01-19 21:09:01 +01:00
|
|
|
public:
|
|
|
|
typedef CefPanelImpl<CefWindowView, CefWindow, CefWindowDelegate> ParentClass;
|
|
|
|
|
|
|
|
// Create a new CefWindow instance. |delegate| may be nullptr.
|
|
|
|
static CefRefPtr<CefWindowImpl> Create(CefRefPtr<CefWindowDelegate> delegate);
|
|
|
|
|
|
|
|
// CefWindow methods:
|
|
|
|
void Show() override;
|
|
|
|
void Hide() override;
|
|
|
|
void CenterWindow(const CefSize& size) override;
|
|
|
|
void Close() override;
|
|
|
|
bool IsClosed() override;
|
|
|
|
void Activate() override;
|
|
|
|
void Deactivate() override;
|
|
|
|
bool IsActive() override;
|
|
|
|
void BringToTop() override;
|
|
|
|
void SetAlwaysOnTop(bool on_top) override;
|
|
|
|
bool IsAlwaysOnTop() override;
|
|
|
|
void Maximize() override;
|
|
|
|
void Minimize() override;
|
|
|
|
void Restore() override;
|
|
|
|
void SetFullscreen(bool fullscreen) override;
|
|
|
|
bool IsMaximized() override;
|
|
|
|
bool IsMinimized() override;
|
|
|
|
bool IsFullscreen() override;
|
|
|
|
void SetTitle(const CefString& title) override;
|
|
|
|
CefString GetTitle() override;
|
|
|
|
void SetWindowIcon(CefRefPtr<CefImage> image) override;
|
|
|
|
CefRefPtr<CefImage> GetWindowIcon() override;
|
|
|
|
void SetWindowAppIcon(CefRefPtr<CefImage> image) override;
|
|
|
|
CefRefPtr<CefImage> GetWindowAppIcon() override;
|
|
|
|
void ShowMenu(CefRefPtr<CefMenuModel> menu_model,
|
|
|
|
const CefPoint& screen_point,
|
|
|
|
cef_menu_anchor_position_t anchor_position) override;
|
|
|
|
void CancelMenu() override;
|
|
|
|
CefRefPtr<CefDisplay> GetDisplay() override;
|
|
|
|
CefRect GetClientAreaBoundsInScreen() override;
|
|
|
|
void SetDraggableRegions(
|
|
|
|
const std::vector<CefDraggableRegion>& regions) override;
|
|
|
|
CefWindowHandle GetWindowHandle() override;
|
2017-05-17 11:29:28 +02:00
|
|
|
void SendKeyPress(int key_code, uint32 event_flags) override;
|
2016-01-19 21:09:01 +01:00
|
|
|
void SendMouseMove(int screen_x, int screen_y) override;
|
|
|
|
void SendMouseEvents(cef_mouse_button_type_t button,
|
|
|
|
bool mouse_down,
|
|
|
|
bool mouse_up) override;
|
2017-02-17 00:19:43 +01:00
|
|
|
void SetAccelerator(int command_id,
|
|
|
|
int key_code,
|
|
|
|
bool shift_pressed,
|
|
|
|
bool ctrl_pressed,
|
|
|
|
bool alt_pressed) override;
|
|
|
|
void RemoveAccelerator(int command_id) override;
|
|
|
|
void RemoveAllAccelerators() override;
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// CefViewAdapter methods:
|
|
|
|
void Detach() override;
|
|
|
|
|
|
|
|
// CefPanel methods:
|
|
|
|
CefRefPtr<CefWindow> AsWindow() override { return this; }
|
|
|
|
|
|
|
|
// CefView methods:
|
|
|
|
void SetBounds(const CefRect& bounds) override;
|
|
|
|
CefRect GetBounds() override;
|
|
|
|
CefRect GetBoundsInScreen() override;
|
|
|
|
void SetSize(const CefSize& bounds) override;
|
|
|
|
void SetPosition(const CefPoint& position) override;
|
|
|
|
void SizeToPreferredSize() override;
|
|
|
|
void SetVisible(bool visible) override;
|
|
|
|
bool IsVisible() override;
|
|
|
|
bool IsDrawn() override;
|
|
|
|
void SetBackgroundColor(cef_color_t color) override;
|
|
|
|
|
|
|
|
// CefWindowView::Delegate methods:
|
|
|
|
bool CanWidgetClose() override;
|
2017-02-17 00:19:43 +01:00
|
|
|
void OnWindowClosing() override;
|
2016-01-19 21:09:01 +01:00
|
|
|
void OnWindowViewDeleted() override;
|
|
|
|
|
|
|
|
// CefViewAdapter methods:
|
|
|
|
std::string GetDebugType() override { return "Window"; }
|
|
|
|
void GetDebugInfo(base::DictionaryValue* info,
|
|
|
|
bool include_children) override;
|
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
// ui::AcceleratorTarget methods:
|
|
|
|
bool AcceleratorPressed(const ui::Accelerator& accelerator) override;
|
|
|
|
bool CanHandleAccelerators() const override;
|
|
|
|
|
|
|
|
// Called for key events that have not been handled by other controls in the
|
|
|
|
// window. Returns true if the event was handled.
|
|
|
|
bool OnKeyEvent(const CefKeyEvent& event);
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
void ShowMenu(views::MenuButton* menu_button,
|
|
|
|
CefRefPtr<CefMenuModel> menu_model,
|
|
|
|
const CefPoint& screen_point,
|
|
|
|
cef_menu_anchor_position_t anchor_position);
|
2017-02-22 19:05:27 +01:00
|
|
|
void MenuClosed();
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Create a new implementation object.
|
|
|
|
// Always call Initialize() after creation.
|
|
|
|
// |delegate| may be nullptr.
|
|
|
|
explicit CefWindowImpl(CefRefPtr<CefWindowDelegate> delegate);
|
|
|
|
|
|
|
|
// CefViewImpl methods:
|
|
|
|
CefWindowView* CreateRootView() override;
|
2016-07-21 23:21:32 +02:00
|
|
|
void InitializeRootView() override;
|
2016-01-19 21:09:01 +01:00
|
|
|
|
|
|
|
// Initialize the Widget.
|
|
|
|
void CreateWidget();
|
|
|
|
|
|
|
|
views::Widget* widget_;
|
|
|
|
|
|
|
|
// True if the window has been destroyed.
|
|
|
|
bool destroyed_;
|
|
|
|
|
|
|
|
// The currently active menu model and runner.
|
|
|
|
CefRefPtr<CefMenuModelImpl> menu_model_;
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<views::MenuRunner> menu_runner_;
|
2016-01-19 21:09:01 +01:00
|
|
|
|
2017-02-17 00:19:43 +01:00
|
|
|
// Map of command_id to accelerator.
|
|
|
|
typedef std::map<int, ui::Accelerator> AcceleratorMap;
|
|
|
|
AcceleratorMap accelerator_map_;
|
|
|
|
|
|
|
|
#if defined(USE_AURA)
|
|
|
|
// Native widget's handler to receive events after the event target.
|
|
|
|
std::unique_ptr<ui::EventHandler> unhandled_key_event_handler_;
|
|
|
|
#endif
|
|
|
|
|
2016-01-19 21:09:01 +01:00
|
|
|
IMPLEMENT_REFCOUNTING_DELETE_ON_UIT(CefWindowImpl);
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefWindowImpl);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_VIEWS_WINDOW_IMPL_H_
|