1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// Copyright 2013 The Chromium 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 CONTENT_SHELL_BROWSER_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_
#define CONTENT_SHELL_BROWSER_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_view_delegate.h"
#include "content/public/common/context_menu_params.h"
#if defined(TOOLKIT_GTK)
#include "ui/base/gtk/gtk_signal.h"
#include "ui/base/gtk/owned_widget_gtk.h"
#endif
namespace content {
class ShellWebContentsViewDelegate : public WebContentsViewDelegate {
public:
explicit ShellWebContentsViewDelegate(WebContents* web_contents);
virtual ~ShellWebContentsViewDelegate();
// Overridden from WebContentsViewDelegate:
virtual void ShowContextMenu(RenderFrameHost* render_frame_host,
const ContextMenuParams& params) OVERRIDE;
virtual WebDragDestDelegate* GetDragDestDelegate() OVERRIDE;
#if defined(TOOLKIT_GTK)
virtual void Initialize(GtkWidget* expanded_container,
ui::FocusStoreGtk* focus_store) OVERRIDE;
virtual gfx::NativeView GetNativeView() const OVERRIDE;
virtual void Focus() OVERRIDE;
virtual gboolean OnNativeViewFocusEvent(GtkWidget* widget,
GtkDirectionType type,
gboolean* return_value) OVERRIDE;
#elif defined(OS_MACOSX)
virtual NSObject<RenderWidgetHostViewMacDelegate>*
CreateRenderWidgetHostViewDelegate(
RenderWidgetHost* render_widget_host) OVERRIDE;
void ActionPerformed(int id);
#elif defined(OS_WIN)
virtual void StoreFocus() OVERRIDE;
virtual void RestoreFocus() OVERRIDE;
virtual bool Focus() OVERRIDE;
virtual void TakeFocus(bool reverse) OVERRIDE;
virtual void SizeChanged(const gfx::Size& size) OVERRIDE;
void MenuItemSelected(int selection);
#endif
private:
WebContents* web_contents_;
ContextMenuParams params_;
#if defined(TOOLKIT_GTK)
ui::OwnedWidgetGtk floating_;
GtkWidget* expanded_container_;
CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void,
OnBackMenuActivated);
CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void,
OnForwardMenuActivated);
CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void,
OnReloadMenuActivated);
CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void,
OnOpenURLMenuActivated);
CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void,
OnCutMenuActivated);
CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void,
OnCopyMenuActivated);
CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void,
OnPasteMenuActivated);
CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void,
OnDeleteMenuActivated);
CHROMEGTK_CALLBACK_0(ShellWebContentsViewDelegate, void,
OnInspectMenuActivated);
#endif
DISALLOW_COPY_AND_ASSIGN(ShellWebContentsViewDelegate);
};
} // namespace content
#endif // CONTENT_SHELL_BROWSER_SHELL_WEB_CONTENTS_VIEW_DELEGATE_H_
|