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

Unified Diff: views/controls/menu/native_menu_x.h

Issue 5110011: A non-GTK version of menus for touchui. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: views/controls/menu/native_menu_x.h
diff --git a/views/controls/menu/native_menu_x.h b/views/controls/menu/native_menu_x.h
new file mode 100644
index 0000000000000000000000000000000000000000..5c119f01f9fb678027f7a48ee27d5e345706c1f2
--- /dev/null
+++ b/views/controls/menu/native_menu_x.h
@@ -0,0 +1,54 @@
+// Copyright (c) 2010 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 VIEWS_CONTROLS_MENU_NATIVE_MENU_X_H_
+#define VIEWS_CONTROLS_MENU_NATIVE_MENU_X_H_
+#pragma once
+
+#include "views/controls/menu/menu_delegate.h"
+#include "views/controls/menu/menu_item_view.h"
+#include "views/controls/menu/menu_wrapper.h"
+
+namespace menus {
+class MenuModel;
+}
+
+namespace views {
+
+class NativeMenuX : public MenuWrapper,
sky 2010/11/22 17:06:15 Description?
+ public MenuDelegate {
sky 2010/11/22 17:06:15 indentation is off.
sadrul 2010/11/22 18:48:22 Fixed, and added a description.
+ public:
+ explicit NativeMenuX(Menu2* menu);
+ virtual ~NativeMenuX();
+
+ // Overridden from MenuWrapper:
+ virtual void RunMenuAt(const gfx::Point& point, int alignment);
+ virtual void CancelMenu();
+ virtual void Rebuild();
+ virtual void UpdateStates();
+ virtual gfx::NativeMenu GetNativeMenu() const;
+ virtual MenuAction GetMenuAction() const;
+ virtual void AddMenuListener(MenuListener* listener);
+ virtual void RemoveMenuListener(MenuListener* listener);
+ virtual void SetMinimumWidth(int width);
+
+ // Overridden from MenuDelegate:
+ virtual bool IsItemChecked(int id) const;
+ virtual bool IsCommandEnabled(int id) const;
+ virtual void ExecuteCommand(int id);
+ virtual bool GetAccelerator(int id, views::Accelerator* accelerator);
+
+ private:
+ void AddMenuItemsFromModel(MenuItemView* parent, menus::MenuModel* model);
+ void UpdateMenuFromModel(SubmenuView* menu, menus::MenuModel* model);
+
+ menus::MenuModel* model_;
sky 2010/11/22 17:06:15 Document ownership.
sadrul 2010/11/22 18:48:22 Done.
+ MenuItemView* root_;
+
+ DISALLOW_COPY_AND_ASSIGN(NativeMenuX);
+};
+
+} // namespace views
+
+#endif // VIEWS_CONTROLS_MENU_NATIVE_MENU_X_H_

Powered by Google App Engine
This is Rietveld 408576698