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

Side by Side Diff: views/controls/textfield/textfield_views_model.h

Issue 6004010: Implement clipboard features in views textfield. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef VIEWS_CONTROLS_TEXTFIELD_TEXTFIELD_VIEWS_MODEL_H_ 5 #ifndef VIEWS_CONTROLS_TEXTFIELD_TEXTFIELD_VIEWS_MODEL_H_
6 #define VIEWS_CONTROLS_TEXTFIELD_TEXTFIELD_VIEWS_MODEL_H_ 6 #define VIEWS_CONTROLS_TEXTFIELD_TEXTFIELD_VIEWS_MODEL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "app/keyboard_codes.h"
11 #include "base/string16.h" 12 #include "base/string16.h"
12 #include "gfx/rect.h" 13 #include "gfx/rect.h"
13 #include "third_party/skia/include/core/SkColor.h" 14 #include "third_party/skia/include/core/SkColor.h"
14 15
15 namespace gfx { 16 namespace gfx {
16 class Font; 17 class Font;
17 } // namespace gfx 18 } // namespace gfx
18 19
19 namespace views { 20 namespace views {
20 21
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 120
120 // Clears selection. 121 // Clears selection.
121 void ClearSelection(); 122 void ClearSelection();
122 123
123 // Returns visible text. If the field is password, it returns the 124 // Returns visible text. If the field is password, it returns the
124 // sequence of "*". 125 // sequence of "*".
125 string16 GetVisibleText() const { 126 string16 GetVisibleText() const {
126 return GetVisibleText(0U, text_.length()); 127 return GetVisibleText(0U, text_.length());
127 } 128 }
128 129
130 // Handles key event for Cut/Copy/Paste key presses. Returns true if text
131 // has changed after handling the event (in case of cut and paste events).
132 bool HandleClipboardEvents(app::KeyboardCode key_code);
133
129 private: 134 private:
130 friend class NativeTextfieldViews; 135 friend class NativeTextfieldViews;
131 136
132 // Tells if any text is selected. 137 // Tells if any text is selected.
133 bool HasSelection() const; 138 bool HasSelection() const;
134 139
135 // Deletes the selected text. 140 // Deletes the selected text.
136 void DeleteSelection(); 141 void DeleteSelection();
137 142
138 // Returns the visible text given |start| and |end|. 143 // Returns the visible text given |start| and |end|.
(...skipping 10 matching lines...) Expand all
149 154
150 // True if the text is the password. 155 // True if the text is the password.
151 bool is_password_; 156 bool is_password_;
152 157
153 DISALLOW_COPY_AND_ASSIGN(TextfieldViewsModel); 158 DISALLOW_COPY_AND_ASSIGN(TextfieldViewsModel);
154 }; 159 };
155 160
156 } // namespace views 161 } // namespace views
157 162
158 #endif // VIEWS_CONTROLS_TEXTFIELD_TEXTFIELD_VIEWS_MODEL_H_ 163 #endif // VIEWS_CONTROLS_TEXTFIELD_TEXTFIELD_VIEWS_MODEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698