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

Unified Diff: ui/views/touchui/touch_selection_controller.h

Issue 12224133: Move touch_selection_controller interface to ui/base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch Created 7 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/touchui/touch_selection_controller.h
diff --git a/ui/views/touchui/touch_selection_controller.h b/ui/views/touchui/touch_selection_controller.h
deleted file mode 100644
index a9a6338025d3bb87239261f1d87537f1b6c4205f..0000000000000000000000000000000000000000
--- a/ui/views/touchui/touch_selection_controller.h
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright (c) 2011 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_TOUCHUI_TOUCH_SELECTION_CONTROLLER_H_
-#define UI_VIEWS_TOUCHUI_TOUCH_SELECTION_CONTROLLER_H_
-
-#include "ui/base/models/simple_menu_model.h"
-#include "ui/gfx/point.h"
-#include "ui/views/view.h"
-
-namespace views {
-
-// An interface implemented by a View that has text that can be selected.
-class VIEWS_EXPORT TouchSelectionClientView
- : public View,
- public ui::SimpleMenuModel::Delegate {
- public:
- // Select everything between start and end (points are in view's local
- // coordinate system). |start| is the logical start and |end| is the logical
- // end of selection. Visually, |start| may lie after |end|.
- virtual void SelectRect(const gfx::Point& start, const gfx::Point& end) = 0;
-
- protected:
- virtual ~TouchSelectionClientView() {}
-};
-
-// This defines the callback interface for other code to be notified of changes
-// in the state of a TouchSelectionClientView.
-class VIEWS_EXPORT TouchSelectionController {
- public:
- virtual ~TouchSelectionController() {}
-
- // Creates a TouchSelectionController. Caller owns the returned object.
- static TouchSelectionController* create(
- TouchSelectionClientView* client_view);
-
- // Notification that the text selection in TouchSelectionClientView has
- // changed. p1 and p2 are lower corners of the start and end of selection:
- // ____________________________________
- // | textfield with |selected text| |
- // ------------------------------------
- // ^p1 ^p2
- //
- // p1 is always the start and p2 is always the end of selection. Hence,
- // p1 could be to the right of p2 in the figure above.
- virtual void SelectionChanged(const gfx::Point& p1, const gfx::Point& p2) = 0;
-
- // Notification that the TouchSelectionClientView has lost focus.
- virtual void ClientViewLostFocus() = 0;
-};
-
-} // namespace views
-
-#endif // UI_VIEWS_TOUCHUI_TOUCH_SELECTION_CONTROLLER_H_

Powered by Google App Engine
This is Rietveld 408576698