blob: db74b5e86b04b330d3cbed60288f6bc6cab3be8d (
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
45
46
47
48
|
// Copyright (c) 2009 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_WIN_H_
#define CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_CONTEXT_MENU_WIN_H_
#include "chrome/browser/tab_contents/render_view_context_menu.h"
#include "chrome/views/accelerator.h"
#include "chrome/views/controls/menu/menu.h"
class RenderViewContextMenuWin : public RenderViewContextMenu,
public Menu::Delegate{
public:
RenderViewContextMenuWin(WebContents* web_contents,
const ContextMenuParams& params,
HWND window);
~RenderViewContextMenuWin();
void RunMenuAt(int x, int y);
// Menu::Delegate implementation ---------------------------------------------
virtual bool IsCommandEnabled(int id) const;
virtual bool IsItemChecked(int id) const;
virtual void ExecuteCommand(int id);
// TODO(port): move the logic in this function to RenderViewContextMenu.
virtual bool GetAcceleratorInfo(int id, views::Accelerator* accel);
protected:
// RenderViewContextMenu implementation --------------------------------------
virtual void AppendMenuItem(int id);
virtual void AppendMenuItem(int id, const std::wstring& label);
virtual void AppendRadioMenuItem(int id, const std::wstring& label);
virtual void AppendCheckboxMenuItem(int id, const std::wstring& label);
virtual void AppendSeparator();
virtual void StartSubMenu(int id, const std::wstring& label);
virtual void FinishSubMenu();
private:
// Append the item to |sub_menu_| if it exists, or |menu_| otherwise.
void AppendItem(int id, const std::wstring& label, Menu::MenuItemType type);
Menu menu_;
Menu* sub_menu_;
};
#endif // CHROME_BROWSER_TAB_CONTENTS_RENDER_VIEW_CONTEXT_MENU_WIN_H_
|