OLD | NEW |
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 #include "chrome/browser/chromeos/options/language_hangul_config_view.h" | 5 #include "chrome/browser/chromeos/options/language_hangul_config_view.h" |
6 | 6 |
7 #include "app/combobox_model.h" | 7 #include "app/combobox_model.h" |
8 #include "app/l10n_util.h" | 8 #include "app/l10n_util.h" |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "chrome/common/notification_type.h" | 10 #include "chrome/common/notification_type.h" |
(...skipping 83 matching lines...) Loading... |
94 = hangul_keyboard_combobox_model_->GetItemIDAt(new_index); | 94 = hangul_keyboard_combobox_model_->GetItemIDAt(new_index); |
95 LOG(INFO) << "Changing Hangul keyboard pref to " << id; | 95 LOG(INFO) << "Changing Hangul keyboard pref to " << id; |
96 keyboard_pref_.SetValue(id); | 96 keyboard_pref_.SetValue(id); |
97 } | 97 } |
98 | 98 |
99 void LanguageHangulConfigView::Layout() { | 99 void LanguageHangulConfigView::Layout() { |
100 // Not sure why but this is needed to show contents in the dialog. | 100 // Not sure why but this is needed to show contents in the dialog. |
101 contents_->SetBounds(0, 0, width(), height()); | 101 contents_->SetBounds(0, 0, width(), height()); |
102 } | 102 } |
103 | 103 |
| 104 int LanguageHangulConfigView::GetDialogButtons() const { |
| 105 return MessageBoxFlags::DIALOGBUTTON_OK; |
| 106 } |
| 107 |
| 108 std::wstring LanguageHangulConfigView::GetDialogButtonLabel( |
| 109 MessageBoxFlags::DialogButton button) const { |
| 110 if (button == MessageBoxFlags::DIALOGBUTTON_OK) { |
| 111 return l10n_util::GetString(IDS_OK); |
| 112 } |
| 113 return L""; |
| 114 } |
| 115 |
104 std::wstring LanguageHangulConfigView::GetWindowTitle() const { | 116 std::wstring LanguageHangulConfigView::GetWindowTitle() const { |
105 return l10n_util::GetString( | 117 return l10n_util::GetString( |
106 IDS_OPTIONS_SETTINGS_LANGUAGES_HANGUL_SETTINGS_TITLE); | 118 IDS_OPTIONS_SETTINGS_LANGUAGES_HANGUL_SETTINGS_TITLE); |
107 } | 119 } |
108 | 120 |
109 gfx::Size LanguageHangulConfigView::GetPreferredSize() { | 121 gfx::Size LanguageHangulConfigView::GetPreferredSize() { |
110 // TODO(satorux): Create our own localized content size once the UI is done. | 122 // TODO(satorux): Create our own localized content size once the UI is done. |
111 return gfx::Size(views::Window::GetLocalizedContentsSize( | 123 return gfx::Size(views::Window::GetLocalizedContentsSize( |
112 IDS_LANGUAGES_INPUT_DIALOG_WIDTH_CHARS, | 124 IDS_LANGUAGES_INPUT_DIALOG_WIDTH_CHARS, |
113 IDS_LANGUAGES_INPUT_DIALOG_HEIGHT_LINES)); | 125 IDS_LANGUAGES_INPUT_DIALOG_HEIGHT_LINES)); |
(...skipping 48 matching lines...) Loading... |
162 void LanguageHangulConfigView::NotifyPrefChanged() { | 174 void LanguageHangulConfigView::NotifyPrefChanged() { |
163 const std::wstring id = keyboard_pref_.GetValue(); | 175 const std::wstring id = keyboard_pref_.GetValue(); |
164 const int index | 176 const int index |
165 = hangul_keyboard_combobox_model_->GetIndexFromID(id); | 177 = hangul_keyboard_combobox_model_->GetIndexFromID(id); |
166 if (index >= 0) { | 178 if (index >= 0) { |
167 hangul_keyboard_combobox_->SetSelectedItem(index); | 179 hangul_keyboard_combobox_->SetSelectedItem(index); |
168 } | 180 } |
169 } | 181 } |
170 | 182 |
171 } // namespace chromeos | 183 } // namespace chromeos |
OLD | NEW |