blob: 91b010c592033fbfe2318fdbce32c6a92646012f (
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
|
// Copyright (c) 2006-2008 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_VIEWS_VIEW_MENU_DELEGATE_H__
#define CHROME_VIEWS_VIEW_MENU_DELEGATE_H__
#include <windows.h>
namespace ChromeViews {
class View;
////////////////////////////////////////////////////////////////////////////////
//
// MenuDelegate
//
// An interface that allows a component to tell a View about a menu that it
// has constructed that the view can show (e.g. for MenuButton views, or as a
// context menu.)
//
////////////////////////////////////////////////////////////////////////////////
class ViewMenuDelegate {
public:
// Create and show a menu at the specified position. Source is the view the
// ViewMenuDelegate was set on.
virtual void RunMenu(ChromeViews::View* source,
const CPoint& pt,
HWND hwnd) = 0;
};
} // namespace
#endif // CHROME_VIEWS_VIEW_MENU_DELEGATE_H__
|