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

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: rebased Created 3 years, 10 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 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..8a3c9251be849eae26b8bf20af5d5421453fb85c
--- /dev/null
+++ b/ui/views/controls/views_text_services_context_menu.h
@@ -0,0 +1,47 @@
+// Copyright 2017 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 "base/i18n/rtl.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 ViewsTextServicesContextMenu 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 bool IsCommandIdChecked(int command_id) const = 0;
+ virtual bool IsCommandIdEnabled(int command_id) const = 0;
+ virtual void ExecuteCommand(int command_id, int event_flags) = 0;
+
+ // Exposed for testing. Returns true if the text direction BiDi submenu
+ // item should be checked.
+ virtual bool IsTextDirectionCheckedForTesting(
+ base::i18n::TextDirection direction) const = 0;
+};
+
+} // namespace views
+
+#endif // UI_VIEWS_CONTROLS_TEXTFIELD_VIEWS_TEXT_SERVICES_CONTEXT_MENU_H_
« no previous file with comments | « ui/views/controls/textfield/textfield_unittest.cc ('k') | ui/views/controls/views_text_services_context_menu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698