OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/ui/app_list/search/search_resource_manager.h" | 5 #include "chrome/browser/ui/app_list/search/search_resource_manager.h" |
6 | 6 |
7 #include "chrome/browser/ui/app_list/start_page_service.h" | 7 #include "chrome/browser/ui/app_list/start_page_service.h" |
8 #include "grit/components_scaled_resources.h" | 8 #include "grit/components_scaled_resources.h" |
9 #include "grit/generated_resources.h" | 9 #include "grit/generated_resources.h" |
10 #include "grit/theme_resources.h" | 10 #include "grit/theme_resources.h" |
11 #include "ui/app_list/search_box_model.h" | 11 #include "ui/app_list/search_box_model.h" |
12 #include "ui/app_list/speech_ui_model.h" | 12 #include "ui/app_list/speech_ui_model.h" |
13 #include "ui/base/l10n/l10n_util.h" | 13 #include "ui/base/l10n/l10n_util.h" |
14 #include "ui/base/resource/resource_bundle.h" | 14 #include "ui/base/resource/resource_bundle.h" |
15 | 15 |
16 namespace app_list { | 16 namespace app_list { |
17 | 17 |
| 18 namespace { |
| 19 |
| 20 scoped_ptr<SearchBoxModel::SpeechButtonProperty> CreateNewProperty() { |
| 21 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); |
| 22 return make_scoped_ptr(new SearchBoxModel::SpeechButtonProperty( |
| 23 *bundle.GetImageSkiaNamed(IDR_OMNIBOX_MIC_SEARCH), |
| 24 l10n_util::GetStringUTF16(IDS_APP_LIST_HOTWORD_LISTENING), |
| 25 *bundle.GetImageSkiaNamed(IDR_APP_LIST_MIC_HOTWORD_OFF), |
| 26 l10n_util::GetStringUTF16(IDS_APP_LIST_START_SPEECH_RECOGNITION))); |
| 27 } |
| 28 |
| 29 } // namespace |
| 30 |
18 SearchResourceManager::SearchResourceManager(Profile* profile, | 31 SearchResourceManager::SearchResourceManager(Profile* profile, |
19 SearchBoxModel* search_box, | 32 SearchBoxModel* search_box, |
20 SpeechUIModel* speech_ui) | 33 SpeechUIModel* speech_ui) |
21 : search_box_(search_box), | 34 : search_box_(search_box), |
22 speech_ui_(speech_ui) { | 35 speech_ui_(speech_ui) { |
23 speech_ui_->AddObserver(this); | 36 speech_ui_->AddObserver(this); |
24 | 37 |
25 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); | 38 ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance(); |
26 search_box_->SetIcon(*bundle.GetImageSkiaNamed(IDR_OMNIBOX_SEARCH)); | 39 search_box_->SetIcon(*bundle.GetImageSkiaNamed(IDR_OMNIBOX_SEARCH)); |
27 StartPageService* service = StartPageService::Get(profile); | 40 StartPageService* service = StartPageService::Get(profile); |
28 if (service && service->GetSpeechRecognitionContents()) { | 41 if (service && service->GetSpeechRecognitionContents()) |
29 search_box_->SetSpeechRecognitionButton( | 42 search_box_->SetSpeechRecognitionButton(CreateNewProperty()); |
30 scoped_ptr<SearchBoxModel::SpeechButtonProperty>( | |
31 new SearchBoxModel::SpeechButtonProperty( | |
32 *bundle.GetImageSkiaNamed(IDR_OMNIBOX_MIC_SEARCH), | |
33 l10n_util::GetStringUTF16( | |
34 IDS_APP_LIST_HOTWORD_LISTENING), | |
35 *bundle.GetImageSkiaNamed(IDR_APP_LIST_MIC_HOTWORD_OFF), | |
36 l10n_util::GetStringUTF16( | |
37 IDS_APP_LIST_START_SPEECH_RECOGNITION)))); | |
38 } | |
39 OnSpeechRecognitionStateChanged(speech_ui_->state()); | 43 OnSpeechRecognitionStateChanged(speech_ui_->state()); |
40 } | 44 } |
41 | 45 |
42 SearchResourceManager::~SearchResourceManager() { | 46 SearchResourceManager::~SearchResourceManager() { |
43 speech_ui_->RemoveObserver(this); | 47 speech_ui_->RemoveObserver(this); |
44 } | 48 } |
45 | 49 |
46 void SearchResourceManager::OnSpeechRecognitionStateChanged( | 50 void SearchResourceManager::OnSpeechRecognitionStateChanged( |
47 SpeechRecognitionState new_state) { | 51 SpeechRecognitionState new_state) { |
48 search_box_->SetHintText(l10n_util::GetStringUTF16( | 52 search_box_->SetHintText(l10n_util::GetStringUTF16( |
49 (new_state == SPEECH_RECOGNITION_HOTWORD_LISTENING) ? | 53 (new_state == SPEECH_RECOGNITION_HOTWORD_LISTENING) ? |
50 IDS_SEARCH_BOX_HOTWORD_HINT : IDS_SEARCH_BOX_HINT)); | 54 IDS_SEARCH_BOX_HOTWORD_HINT : IDS_SEARCH_BOX_HINT)); |
| 55 scoped_ptr<SearchBoxModel::SpeechButtonProperty> button_prop; |
| 56 if (new_state != SPEECH_RECOGNITION_OFF) |
| 57 button_prop = CreateNewProperty(); |
| 58 search_box_->SetSpeechRecognitionButton(button_prop.Pass()); |
51 } | 59 } |
52 | 60 |
53 } // namespace app_list | 61 } // namespace app_list |
OLD | NEW |