Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: ui/views/controls/menu/menu_runner_impl_interface.h

Issue 331993009: MacViews: Run native Cocoa context menus to support Services. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add VIEWS_EXPORT for unit test access Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_IMPL_INTERFACE_H_
6 #define UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_IMPL_INTERFACE_H_
7
8 #include "ui/views/controls/menu/menu_runner.h"
9
10 namespace views {
11
12 class MenuItemView;
13
14 namespace internal {
15
16 // An abstract interface for menu runner implementations.
17 // Invoke Release() to destroy. Release() deletes immediately if the menu isn't
18 // showing. If the menu is showing Release() cancels the menu and when the
19 // nested RunMenuAt() call returns deletes itself and the menu.
20 class MenuRunnerImplInterface {
21 public:
22 // Creates a concrete instance for running |menu_model|.
23 // |run_types| is a bitmask of MenuRunner::RunTypes.
24 static MenuRunnerImplInterface* Create(ui::MenuModel* menu_model,
25 int32 run_types);
26
27 // Returns the menu view, or NULL if the runner doesn't use a MenuItemView to
28 // run the menu.
29 virtual MenuItemView* GetMenu() const = 0;
30
31 // Returns true if we're in a nested message loop running the menu.
32 virtual bool IsRunning() const = 0;
33
34 // See description above class for details.
35 virtual void Release() = 0;
36
37 // Runs the menu. See MenuRunner::RunMenuAt for more details.
38 virtual MenuRunner::RunResult RunMenuAt(Widget* parent,
39 MenuButton* button,
40 const gfx::Rect& bounds,
41 MenuAnchorPosition anchor,
42 int32 run_types)
43 WARN_UNUSED_RESULT = 0;
44
45 // Hides and cancels the menu.
46 virtual void Cancel() = 0;
47
48 // Returns the time from the event which closed the menu - or 0.
49 virtual base::TimeDelta GetClosingEventTime() const = 0;
50 };
sky 2014/07/14 21:02:22 Add protected destructor.
Andre 2014/07/14 22:59:43 Done.
51
52 } // namespace internal
53 } // namespace views
54
55 #endif // UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_IMPL_INTERFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698