summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/bookmark_context_menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/views/bookmark_context_menu.h')
-rw-r--r--chrome/browser/views/bookmark_context_menu.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/chrome/browser/views/bookmark_context_menu.h b/chrome/browser/views/bookmark_context_menu.h
new file mode 100644
index 0000000..d141277
--- /dev/null
+++ b/chrome/browser/views/bookmark_context_menu.h
@@ -0,0 +1,72 @@
+// 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 CHROME_BROWSER_VIEWS_BOOKMARK_CONTEXT_MENU_H_
+#define CHROME_BROWSER_VIEWS_BOOKMARK_CONTEXT_MENU_H_
+
+#include "chrome/browser/views/bookmark_context_menu_controller_views.h"
+#include "views/controls/menu/menu_delegate.h"
+
+// Observer for the BookmarkContextMenu.
+class BookmarkContextMenuObserver {
+ public:
+ // Invoked before the specified items are removed from the bookmark model.
+ virtual void WillRemoveBookmarks(
+ const std::vector<const BookmarkNode*>& bookmarks) = 0;
+
+ // Invoked after the items have been removed from the model.
+ virtual void DidRemoveBookmarks() = 0;
+};
+
+class BookmarkContextMenu : public BookmarkContextMenuControllerViewsDelegate,
+ public views::MenuDelegate {
+ public:
+ BookmarkContextMenu(
+ gfx::NativeWindow parent_window,
+ Profile* profile,
+ PageNavigator* page_navigator,
+ const BookmarkNode* parent,
+ const std::vector<const BookmarkNode*>& selection);
+ virtual ~BookmarkContextMenu();
+
+ // Shows the context menu at the specified point.
+ void RunMenuAt(const gfx::Point& point);
+
+ views::MenuItemView* menu() const { return menu_.get(); }
+
+ void set_observer(BookmarkContextMenuObserver* observer) {
+ observer_ = observer;
+ }
+
+ // Overridden from views::MenuDelegate:
+ virtual void ExecuteCommand(int command_id);
+ virtual bool IsItemChecked(int command_id) const;
+ virtual bool IsCommandEnabled(int command_id) const;
+ virtual bool ShouldCloseAllMenusOnExecute(int id);
+
+ // Overridden from BookmarkContextMenuControllerViewsDelegate:
+ virtual void CloseMenu();
+ virtual void AddItem(int command_id);
+ virtual void AddItemWithStringId(int command_id, int string_id);
+ virtual void AddSeparator();
+ virtual void AddCheckboxItem(int command_id);
+ virtual void WillRemoveBookmarks(
+ const std::vector<const BookmarkNode*>& bookmarks);
+ virtual void DidRemoveBookmarks();
+
+ private:
+ scoped_ptr<BookmarkContextMenuControllerViews> controller_;
+
+ // The parent of dialog boxes opened from the context menu.
+ gfx::NativeWindow parent_window_;
+
+ // The menu itself.
+ scoped_ptr<views::MenuItemView> menu_;
+
+ BookmarkContextMenuObserver* observer_;
+
+ DISALLOW_COPY_AND_ASSIGN(BookmarkContextMenu);
+};
+
+#endif // CHROME_BROWSER_VIEWS_BOOKMARK_CONTEXT_MENU_H_