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

Unified Diff: views/controls/textfield/textfield_model.cc

Issue 3142008: Model, View and Controller for a Gap Buffer based one line text field in view... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 4 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: views/controls/textfield/textfield_model.cc
===================================================================
--- views/controls/textfield/textfield_model.cc (revision 0)
+++ views/controls/textfield/textfield_model.cc (revision 0)
@@ -0,0 +1,84 @@
+// 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.
+
+#include "views/controls/textfield/textfield_model.h"
+
+namespace views {
+
+TextfieldModel::TextfieldModel()
+ : text_(L""),
+ dirty_(true) {
+ this->buffer_.reset(new base::GapBuffer<wchar_t>(50));
+}
+
+TextfieldModel::TextfieldModel(const std::wstring& text)
+ : text_(L""),
+ dirty_(true) {
+ scoped_array<wchar_t> text_array;
+ text_array.reset(new wchar_t[text.length()]);
+ this->buffer_.reset(new base::GapBuffer<wchar_t>(text.data(), text.length()));
+}
+
+void TextfieldModel::Insert(wchar_t c) {
+ buffer_->InsertAtGapStart(c);
+ dirty_ = true;
+}
+
+wchar_t TextfieldModel::InsertDelete() {
+ dirty_ = true;
+ return buffer_->RemoveFromGapEnd();
+}
+
+wchar_t TextfieldModel::InsertBackspace() {
+ dirty_ = true;
+ return buffer_->RemoveFromGapStart();
+}
+
+int TextfieldModel::GetCurrentCursorPos() {
+ return buffer_->GetGapStart();
+}
+
+void TextfieldModel::MoveCursorLeft() {
+ buffer_->MoveGapLeft(1);
+}
+
+void TextfieldModel::MoveCursorRight() {
+ buffer_->MoveGapRight(1);
+}
+
+void TextfieldModel::MoveCursorToPreviousWord() {
+ buffer_->MoveGapLeft(1);
+ buffer_->MoveGapLeftTo(' ');
+}
+
+void TextfieldModel::MoveCursorToNextWord() {
+ buffer_->MoveGapRightTo(' ');
+}
+
+void TextfieldModel::MoveCursorToStart() {
+ buffer_->MoveGapLeft(buffer_->GetCurrentSize());
+}
+
+void TextfieldModel::MoveCursorToEnd() {
+ buffer_->MoveGapRight(buffer_->GetCurrentSize());
+}
+
+std::wstring TextfieldModel::text() {
+ if (dirty_) {
+ SyncText();
+ dirty_ = false;
+ }
+ return text_;
+}
+
+void TextfieldModel::SyncText() {
+ std::vector<wchar_t> contents;
+ buffer_->GetContents(&contents);
+ std::vector<wchar_t>::const_iterator iter;
+ text_ = L"";
+ for (iter = contents.begin(); iter != contents.end(); iter++) {
+ text_ += (*iter);
+ }
+}
+};
Property changes on: views/controls/textfield/textfield_model.cc
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698