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

Side by Side Diff: ui/app_list/search_box_model.h

Issue 149753002: Enables the 'hotword not listening' icon in the search box. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix breaks Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/webui/app_list/start_page_handler.cc ('k') | ui/app_list/search_box_model.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_SEARCH_BOX_MODEL_H_ 5 #ifndef UI_APP_LIST_SEARCH_BOX_MODEL_H_
6 #define UI_APP_LIST_SEARCH_BOX_MODEL_H_ 6 #define UI_APP_LIST_SEARCH_BOX_MODEL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/observer_list.h" 9 #include "base/observer_list.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "ui/app_list/app_list_export.h" 11 #include "ui/app_list/app_list_export.h"
12 #include "ui/gfx/image/image_skia.h" 12 #include "ui/gfx/image/image_skia.h"
13 #include "ui/gfx/selection_model.h" 13 #include "ui/gfx/selection_model.h"
14 14
15 namespace app_list { 15 namespace app_list {
16 16
17 class SearchBoxModelObserver; 17 class SearchBoxModelObserver;
18 18
19 // SearchBoxModel consisits of an icon, a hint text, a user text and a selection 19 // SearchBoxModel consisits of an icon, a hint text, a user text and a selection
20 // model. The icon is rendered to the side of the query editor. The hint text 20 // model. The icon is rendered to the side of the query editor. The hint text
21 // is used as query edit control's placeholder text and displayed when there is 21 // is used as query edit control's placeholder text and displayed when there is
22 // no user text in the control. The selection model and the text represents the 22 // no user text in the control. The selection model and the text represents the
23 // text, cursor position and selected text in edit control. 23 // text, cursor position and selected text in edit control.
24 class APP_LIST_EXPORT SearchBoxModel { 24 class APP_LIST_EXPORT SearchBoxModel {
25 public: 25 public:
26 // The properties of the button. 26 // The properties of the speech button.
27 struct APP_LIST_EXPORT ButtonProperty { 27 struct APP_LIST_EXPORT SpeechButtonProperty {
28 ButtonProperty(const gfx::ImageSkia& icon, const base::string16& tooltip); 28 SpeechButtonProperty(const gfx::ImageSkia& on_icon,
29 ~ButtonProperty(); 29 const base::string16& on_tooltip,
30 const gfx::ImageSkia& off_icon,
31 const base::string16& off_tooltip);
32 ~SpeechButtonProperty();
30 33
31 gfx::ImageSkia icon; 34 // The icon/tooltip when the hotword is on.
32 base::string16 tooltip; 35 gfx::ImageSkia on_icon;
36 base::string16 on_tooltip;
37
38 // The icon/tooltip when the hotword is off.
39 gfx::ImageSkia off_icon;
40 base::string16 off_tooltip;
33 }; 41 };
34 42
35 SearchBoxModel(); 43 SearchBoxModel();
36 ~SearchBoxModel(); 44 ~SearchBoxModel();
37 45
38 // Sets/gets the icon on the left side of edit box. 46 // Sets/gets the icon on the left side of edit box.
39 void SetIcon(const gfx::ImageSkia& icon); 47 void SetIcon(const gfx::ImageSkia& icon);
40 const gfx::ImageSkia& icon() const { return icon_; } 48 const gfx::ImageSkia& icon() const { return icon_; }
41 49
42 // Sets/gets the properties for the button of speech recognition. 50 // Sets/gets the properties for the button of speech recognition.
43 void SetSpeechRecognitionButton(scoped_ptr<ButtonProperty> speech_button); 51 void SetSpeechRecognitionButton(
44 const ButtonProperty* speech_button() const { return speech_button_.get(); } 52 scoped_ptr<SpeechButtonProperty> speech_button);
53 const SpeechButtonProperty* speech_button() const {
54 return speech_button_.get();
55 }
45 56
46 // Sets/gets the hint text to display when there is in input. 57 // Sets/gets the hint text to display when there is in input.
47 void SetHintText(const base::string16& hint_text); 58 void SetHintText(const base::string16& hint_text);
48 const base::string16& hint_text() const { return hint_text_; } 59 const base::string16& hint_text() const { return hint_text_; }
49 60
50 // Sets/gets the selection model for the search box's Textfield. 61 // Sets/gets the selection model for the search box's Textfield.
51 void SetSelectionModel(const gfx::SelectionModel& sel); 62 void SetSelectionModel(const gfx::SelectionModel& sel);
52 const gfx::SelectionModel& selection_model() const { 63 const gfx::SelectionModel& selection_model() const {
53 return selection_model_; 64 return selection_model_;
54 } 65 }
55 66
56 // Sets/gets the text for the search box's Textfield. 67 // Sets/gets the text for the search box's Textfield.
57 void SetText(const base::string16& text); 68 void SetText(const base::string16& text);
58 const base::string16& text() const { return text_; } 69 const base::string16& text() const { return text_; }
59 70
60 void AddObserver(SearchBoxModelObserver* observer); 71 void AddObserver(SearchBoxModelObserver* observer);
61 void RemoveObserver(SearchBoxModelObserver* observer); 72 void RemoveObserver(SearchBoxModelObserver* observer);
62 73
63 private: 74 private:
64 gfx::ImageSkia icon_; 75 gfx::ImageSkia icon_;
65 scoped_ptr<ButtonProperty> speech_button_; 76 scoped_ptr<SpeechButtonProperty> speech_button_;
66 base::string16 hint_text_; 77 base::string16 hint_text_;
67 gfx::SelectionModel selection_model_; 78 gfx::SelectionModel selection_model_;
68 base::string16 text_; 79 base::string16 text_;
69 80
70 ObserverList<SearchBoxModelObserver> observers_; 81 ObserverList<SearchBoxModelObserver> observers_;
71 82
72 DISALLOW_COPY_AND_ASSIGN(SearchBoxModel); 83 DISALLOW_COPY_AND_ASSIGN(SearchBoxModel);
73 }; 84 };
74 85
75 } // namespace app_list 86 } // namespace app_list
76 87
77 #endif // UI_APP_LIST_SEARCH_BOX_MODEL_H_ 88 #endif // UI_APP_LIST_SEARCH_BOX_MODEL_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/app_list/start_page_handler.cc ('k') | ui/app_list/search_box_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698