OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NativeMenuWin
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/ui/views/controls/menu/
native_menu_win.h
27
class VIEWS_EXPORT
NativeMenuWin
: public MenuWrapper {
29
// Construct a
NativeMenuWin
, with a model and delegate. If |system_menu_for|
30
// is non-NULL, the
NativeMenuWin
wraps the system menu for that window.
32
NativeMenuWin
(ui::MenuModel* model, HWND system_menu_for);
33
virtual ~
NativeMenuWin
();
147
NativeMenuWin
* menu_to_select_;
149
base::WeakPtrFactory<
NativeMenuWin
> menu_to_select_factory_;
152
NativeMenuWin
* parent_;
162
static
NativeMenuWin
* open_native_menu_win_;
164
DISALLOW_COPY_AND_ASSIGN(
NativeMenuWin
);
[
all
...]
native_menu_win.cc
50
struct
NativeMenuWin
::ItemData {
60
NativeMenuWin
* native_menu_win;
66
// Returns the
NativeMenuWin
for a particular HMENU.
67
static
NativeMenuWin
* GetNativeMenuWinFromHMENU(HMENU hmenu) {
72
return reinterpret_cast<
NativeMenuWin
*>(mi.dwMenuData);
76
// structure we have constructed in
NativeMenuWin
.
77
class
NativeMenuWin
::MenuHostWindow {
79
explicit MenuHostWindow(
NativeMenuWin
* parent) : parent_(parent) {
141
NativeMenuWin
::ItemData* GetItemData(ULONG_PTR item_data) {
142
return reinterpret_cast<
NativeMenuWin
::ItemData*>(item_data)
[
all
...]
/external/chromium_org/chrome/browser/ui/views/frame/
browser_desktop_root_window_host_win.h
21
class
NativeMenuWin
;
35
views::
NativeMenuWin
* GetSystemMenu();
70
scoped_ptr<views::
NativeMenuWin
> system_menu_;
browser_frame_win.h
20
class
NativeMenuWin
;
93
views::
NativeMenuWin
* GetSystemMenu();
101
scoped_ptr<views::
NativeMenuWin
> system_menu_;
browser_desktop_root_window_host_win.cc
96
views::
NativeMenuWin
* BrowserDesktopRootWindowHostWin::GetSystemMenu() {
100
new views::
NativeMenuWin
(browser_frame_->GetSystemMenuModel(),
browser_frame_win.cc
144
views::
NativeMenuWin
* BrowserFrameWin::GetSystemMenu() {
148
new views::
NativeMenuWin
(browser_frame_->GetSystemMenuModel(),
/external/chromium/chrome/browser/ui/views/frame/
browser_view.h
641
scoped_ptr<views::
NativeMenuWin
> system_menu_;
browser_view.cc
[
all
...]
Completed in 306 milliseconds