Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 UI_APP_LIST_VIEWS_SPEECH_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_SPEECH_VIEW_H_ |
| 6 #define UI_APP_LIST_VIEWS_SPEECH_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_SPEECH_VIEW_H_ |
| 7 | 7 |
| 8 #include "ui/app_list/speech_ui_model_observer.h" | 8 #include "ui/app_list/speech_ui_model_observer.h" |
| 9 #include "ui/views/controls/button/button.h" | 9 #include "ui/views/controls/button/button.h" |
| 10 #include "ui/views/view.h" | 10 #include "ui/views/view.h" |
| 11 | 11 |
| 12 namespace views { | 12 namespace views { |
| 13 class BoundsAnimator; | 13 class BoundsAnimator; |
| 14 class ImageButton; | 14 class ImageButton; |
| 15 class ImageView; | 15 class ImageView; |
| 16 class Label; | 16 class Label; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace app_list { | 19 namespace app_list { |
| 20 | 20 |
| 21 class AppListViewDelegate; | 21 class AppListViewDelegate; |
| 22 class SpeechCardView; | 22 class SpeechCardView; |
| 23 | 23 |
| 24 // SpeechView provides the card-like UI for the search-by-speech. | 24 // SpeechView provides the card-like UI for the search-by-speech. |
| 25 class SpeechView : public views::View, | 25 class SpeechView : public views::View, |
|
xiyuan
2014/05/29 20:25:12
#include "ui/app_list/app_list_export.h" and add A
tdanderson
2014/05/29 21:34:23
Done.
| |
| 26 public views::ButtonListener, | 26 public views::ButtonListener, |
| 27 public SpeechUIModelObserver { | 27 public SpeechUIModelObserver { |
| 28 public: | 28 public: |
| 29 explicit SpeechView(AppListViewDelegate* delegate); | 29 explicit SpeechView(AppListViewDelegate* delegate); |
| 30 virtual ~SpeechView(); | 30 virtual ~SpeechView(); |
| 31 | 31 |
| 32 // Reset to the original state. | 32 // Reset to the original state. |
| 33 void Reset(); | 33 void Reset(); |
| 34 | 34 |
| 35 // Overridden from views::View: | 35 // Overridden from views::View: |
| 36 virtual void Layout() OVERRIDE; | 36 virtual void Layout() OVERRIDE; |
| 37 virtual gfx::Size GetPreferredSize() const OVERRIDE; | 37 virtual gfx::Size GetPreferredSize() const OVERRIDE; |
| 38 | 38 |
| 39 views::ImageButton* mic_button() { return mic_button_; } | |
| 40 | |
| 39 private: | 41 private: |
| 40 int GetIndicatorRadius(uint8 level); | 42 int GetIndicatorRadius(uint8 level); |
| 41 | 43 |
| 42 // Overridden from views::ButtonListener: | 44 // Overridden from views::ButtonListener: |
| 43 virtual void ButtonPressed(views::Button* sender, | 45 virtual void ButtonPressed(views::Button* sender, |
| 44 const ui::Event& event) OVERRIDE; | 46 const ui::Event& event) OVERRIDE; |
| 45 | 47 |
| 46 // Overridden from SpeechUIModelObserver: | 48 // Overridden from SpeechUIModelObserver: |
| 47 virtual void OnSpeechSoundLevelChanged(uint8 level) OVERRIDE; | 49 virtual void OnSpeechSoundLevelChanged(uint8 level) OVERRIDE; |
| 48 virtual void OnSpeechResult(const base::string16& result, | 50 virtual void OnSpeechResult(const base::string16& result, |
| 49 bool is_final) OVERRIDE; | 51 bool is_final) OVERRIDE; |
| 50 virtual void OnSpeechRecognitionStateChanged( | 52 virtual void OnSpeechRecognitionStateChanged( |
| 51 SpeechRecognitionState new_state) OVERRIDE; | 53 SpeechRecognitionState new_state) OVERRIDE; |
| 52 | 54 |
| 53 AppListViewDelegate* delegate_; | 55 AppListViewDelegate* delegate_; |
| 54 | 56 |
| 55 views::ImageView* logo_; | 57 views::ImageView* logo_; |
| 56 views::View* indicator_; | 58 views::View* indicator_; |
| 57 views::ImageButton* mic_button_; | 59 views::ImageButton* mic_button_; |
| 58 views::Label* speech_result_; | 60 views::Label* speech_result_; |
| 59 scoped_ptr<views::BoundsAnimator> indicator_animator_; | 61 scoped_ptr<views::BoundsAnimator> indicator_animator_; |
| 60 | 62 |
| 61 DISALLOW_COPY_AND_ASSIGN(SpeechView); | 63 DISALLOW_COPY_AND_ASSIGN(SpeechView); |
| 62 }; | 64 }; |
| 63 | 65 |
| 64 } // namespace app_list | 66 } // namespace app_list |
| 65 | 67 |
| 66 #endif // UI_APP_LIST_VIEWS_SPEECH_VIEW_H_ | 68 #endif // UI_APP_LIST_VIEWS_SPEECH_VIEW_H_ |
| OLD | NEW |