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

Unified Diff: ui/app_list/search_box_model.cc

Issue 10386224: app_list: Add search box and search result view for v2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win_aura Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: ui/app_list/search_box_model.cc
diff --git a/ui/app_list/search_box_model.cc b/ui/app_list/search_box_model.cc
new file mode 100644
index 0000000000000000000000000000000000000000..efff96867694a673150ebe8530e35eb99516ab31
--- /dev/null
+++ b/ui/app_list/search_box_model.cc
@@ -0,0 +1,63 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/app_list/search_box_model.h"
+
+#include "ui/app_list/search_box_model_observer.h"
+#include "ui/views/controls/textfield/textfield.h"
+
+namespace app_list {
+
+SearchBoxModel::SearchBoxModel() {
+}
+
+SearchBoxModel::~SearchBoxModel() {
+}
+
+void SearchBoxModel::SetIcon(const gfx::ImageSkia& icon) {
+ icon_ = icon;
+ FOR_EACH_OBSERVER(SearchBoxModelObserver,
+ observers_,
+ IconChanged());
+}
+
+void SearchBoxModel::SetHintText(const string16& hint_text) {
+ if (hint_text_ == hint_text)
+ return;
+
+ hint_text_ = hint_text;
+ FOR_EACH_OBSERVER(SearchBoxModelObserver,
+ observers_,
+ HintTextChanged());
+}
+
+void SearchBoxModel::SetSelectionModel(const gfx::SelectionModel& sel) {
+ if (selection_model_ == sel)
+ return;
+
+ selection_model_ = sel;
+ FOR_EACH_OBSERVER(SearchBoxModelObserver,
+ observers_,
+ SelectionModelChanged());
+}
+
+void SearchBoxModel::SetText(const string16& text) {
+ if (text_ == text)
+ return;
+
+ text_ = text;
+ FOR_EACH_OBSERVER(SearchBoxModelObserver,
+ observers_,
+ TextChanged());
+}
+
+void SearchBoxModel::AddObserver(SearchBoxModelObserver* observer) {
+ observers_.AddObserver(observer);
+}
+
+void SearchBoxModel::RemoveObserver(SearchBoxModelObserver* observer) {
+ observers_.RemoveObserver(observer);
+}
+
+} // namespace app_list

Powered by Google App Engine
This is Rietveld 408576698