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

Side by Side Diff: ui/views/controls/textfield/native_textfield_win.cc

Issue 8748001: Make text input type and password visibility bit independent in Textfield (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move IsPassword() back to .cc Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "ui/views/controls/textfield/native_textfield_win.h" 5 #include "ui/views/controls/textfield/native_textfield_win.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/i18n/case_conversion.h" 9 #include "base/i18n/case_conversion.h"
10 #include "base/i18n/rtl.h" 10 #include "base/i18n/rtl.h"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 contains_mouse_(false), 93 contains_mouse_(false),
94 ime_discard_composition_(false), 94 ime_discard_composition_(false),
95 ime_composition_start_(0), 95 ime_composition_start_(0),
96 ime_composition_length_(0), 96 ime_composition_length_(0),
97 container_view_(new NativeViewHost), 97 container_view_(new NativeViewHost),
98 bg_color_(0) { 98 bg_color_(0) {
99 if (!did_load_library_) 99 if (!did_load_library_)
100 did_load_library_ = !!LoadLibrary(L"riched20.dll"); 100 did_load_library_ = !!LoadLibrary(L"riched20.dll");
101 101
102 DWORD style = kDefaultEditStyle | ES_AUTOHSCROLL; 102 DWORD style = kDefaultEditStyle | ES_AUTOHSCROLL;
103 if (textfield_->style() & Textfield::STYLE_PASSWORD) 103 if (textfield_->IsPassword())
104 style |= ES_PASSWORD; 104 style |= ES_PASSWORD;
105 105
106 if (textfield_->read_only()) 106 if (textfield_->read_only())
107 style |= ES_READONLY; 107 style |= ES_READONLY;
108 108
109 // Make sure we apply RTL related extended window styles if necessary. 109 // Make sure we apply RTL related extended window styles if necessary.
110 DWORD ex_style = l10n_util::GetExtendedStyles(); 110 DWORD ex_style = l10n_util::GetExtendedStyles();
111 111
112 RECT r = {0, 0, textfield_->width(), textfield_->height()}; 112 RECT r = {0, 0, textfield_->width(), textfield_->height()};
113 Create(textfield_->GetWidget()->GetNativeView(), r, NULL, style, ex_style); 113 Create(textfield_->GetWidget()->GetNativeView(), r, NULL, style, ex_style);
114 114
115 if (textfield_->style() & Textfield::STYLE_LOWERCASE) { 115 if (textfield_->style() & Textfield::STYLE_LOWERCASE) {
116 DCHECK((textfield_->style() & Textfield::STYLE_PASSWORD) == 0); 116 DCHECK(!textfield_->IsPassword());
117 SetEditStyle(SES_LOWERCASE, SES_LOWERCASE); 117 SetEditStyle(SES_LOWERCASE, SES_LOWERCASE);
118 } 118 }
119 119
120 // Set up the text_object_model_. 120 // Set up the text_object_model_.
121 base::win::ScopedComPtr<IRichEditOle, &IID_IRichEditOle> ole_interface; 121 base::win::ScopedComPtr<IRichEditOle, &IID_IRichEditOle> ole_interface;
122 ole_interface.Attach(GetOleInterface()); 122 ole_interface.Attach(GetOleInterface());
123 if (ole_interface) 123 if (ole_interface)
124 text_object_model_.QueryFrom(ole_interface); 124 text_object_model_.QueryFrom(ole_interface);
125 125
126 InitializeAccessibilityInfo(); 126 InitializeAccessibilityInfo();
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after
1153 1153
1154 // static 1154 // static
1155 NativeTextfieldWrapper* NativeTextfieldWrapper::CreateWrapper( 1155 NativeTextfieldWrapper* NativeTextfieldWrapper::CreateWrapper(
1156 Textfield* field) { 1156 Textfield* field) {
1157 if (views::Widget::IsPureViews()) 1157 if (views::Widget::IsPureViews())
1158 return new NativeTextfieldViews(field); 1158 return new NativeTextfieldViews(field);
1159 return new NativeTextfieldWin(field); 1159 return new NativeTextfieldWin(field);
1160 } 1160 }
1161 1161
1162 } // namespace views 1162 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698