OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Menu2
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/views/controls/menu/
menu_2.cc
12
Menu2
::
Menu2
(ui::MenuModel* model)
18
Menu2
::~
Menu2
() {}
20
HMENU
Menu2
::GetNativeMenu() const {
24
void
Menu2
::RunMenuAt(const gfx::Point& point, Alignment alignment) {
28
void
Menu2
::RunContextMenuAt(const gfx::Point& point) {
32
void
Menu2
::CancelMenu() {
36
void
Menu2
::Rebuild() {
40
void
Menu2
::UpdateStates()
[
all
...]
menu_2.h
26
// WARNING: do NOT create and use
Menu2
on the stack.
Menu2
notifies the model
27
// of selection AFTER a delay. This means that if use a
Menu2
on the stack
29
class VIEWS_EXPORT
Menu2
{
44
explicit
Menu2
(ui::MenuModel* model);
45
virtual ~
Menu2
();
91
DISALLOW_COPY_AND_ASSIGN(
Menu2
);
native_menu_win.cc
58
scoped_ptr<
Menu2
> submenu;
503
Menu2
* submenu = (*it)->submenu.get();
634
item_data->submenu.reset(new
Menu2
(model_->GetSubmenuModelAt(model_index)));
722
if (alignment ==
Menu2
::ALIGN_TOPLEFT)
724
else if (alignment ==
Menu2
::ALIGN_TOPRIGHT)
Completed in 902 milliseconds