blob: 72f402c9c9490bd4518085eed7ab869714528d5c (
plain)
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
|
// Copyright (c) 2010 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 CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_CONTEXT_MENU_MAC_H_
#define CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_CONTEXT_MENU_MAC_H_
#pragma once
#import <Cocoa/Cocoa.h>
#include "base/scoped_nsobject.h"
#include "chrome/browser/tab_contents/render_view_context_menu.h"
@class MenuController;
// Mac implementation of the context menu display code. Uses a Cocoa NSMenu
// to display the context menu. Internally uses an obj-c object as the
// target of the NSMenu, bridging back to this C++ class.
class RenderViewContextMenuMac : public RenderViewContextMenu {
public:
RenderViewContextMenuMac(TabContents* web_contents,
const ContextMenuParams& params,
NSView* parent_view);
virtual ~RenderViewContextMenuMac();
protected:
// RenderViewContextMenu implementation-
virtual void PlatformInit();
virtual bool GetAcceleratorForCommandId(
int command_id,
menus::Accelerator* accelerator) {
return false;
}
virtual void LookUpInDictionary();
void InitPlatformMenu();
private:
scoped_nsobject<MenuController> menuController_;
NSView* parent_view_; // parent view
};
#endif // CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_CONTEXT_MENU_MAC_H_
|