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

Unified Diff: ui/views/controls/views_text_services_context_menu.h

Issue 2164483006: [MacViews] Implemented text context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for tapted 3 Created 4 years 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: ui/views/controls/views_text_services_context_menu.h
diff --git a/ui/views/controls/views_text_services_context_menu.h b/ui/views/controls/views_text_services_context_menu.h
new file mode 100644
index 0000000000000000000000000000000000000000..b708372643b8770e465aaf2a47c064bc33525810
--- /dev/null
+++ b/ui/views/controls/views_text_services_context_menu.h
@@ -0,0 +1,42 @@
+// Copyright 2016 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 UI_VIEWS_CONTROLS_TEXTFIELD_VIEWS_TEXT_SERVICES_CONTEXT_MENU_H_
+#define UI_VIEWS_CONTROLS_TEXTFIELD_VIEWS_TEXT_SERVICES_CONTEXT_MENU_H_
+
+#include <memory>
+
+#include "ui/views/views_export.h"
+
+namespace ui {
+class SimpleMenuModel;
+}
+
+namespace views {
+
+class Textfield;
+
+// This class is used to add and handle text service items in the text context
+// menu.
+class ViewsTextServicesContextMenu {
+ public:
+ virtual ~ViewsTextServicesContextMenu() {}
+
+ // Creates a ViewsTextContextMenu object.
+ static std::unique_ptr<ViewsTextServicesContextMenu> Create(
+ ui::SimpleMenuModel* menu,
+ Textfield* textfield);
+
+ // Returns true if the given |command_id| is handled by the menu.
+ virtual bool HandlesCommandId(int command_id) const = 0;
+
+ // Methods associated with SimpleMenuModel::Delegate.
+ virtual void ExecuteCommand(int command_id, int event_flags) = 0;
tapted 2016/12/21 11:20:27 nit: reorder to match
spqchan 2016/12/21 22:00:14 Done.
+ virtual bool IsCommandIdChecked(int command_id) const = 0;
+ virtual bool IsCommandIdEnabled(int command_id) const = 0;
+};
+
+} // namespace views
+
+#endif // UI_VIEWS_CONTROLS_TEXTFIELD_VIEWS_TEXT_SERVICES_CONTEXT_MENU_H_

Powered by Google App Engine
This is Rietveld 408576698