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
3 // found in the LICENSE file.
5 #ifndef UI_APP_LIST_VIEWS_SEARCH_RESULT_LIST_VIEW_H_
6 #define UI_APP_LIST_VIEWS_SEARCH_RESULT_LIST_VIEW_H_
8 #include "base/basictypes.h"
9 #include "base/memory/weak_ptr.h"
10 #include "ui/app_list/app_list_model.h"
11 #include "ui/base/models/list_model_observer.h"
12 #include "ui/gfx/animation/animation_delegate.h"
13 #include "ui/views/view.h"
16 class LinearAnimation
;
21 class SearchResultListViewTest
;
24 class AppListViewDelegate
;
25 class SearchResultListViewDelegate
;
26 class SearchResultView
;
28 // SearchResultListView displays SearchResultList with a list of
30 class APP_LIST_EXPORT SearchResultListView
: public views::View
,
31 public gfx::AnimationDelegate
,
32 public ui::ListModelObserver
{
34 SearchResultListView(SearchResultListViewDelegate
* delegate
,
35 AppListViewDelegate
* view_delegate
);
36 virtual ~SearchResultListView();
38 void SetResults(AppListModel::SearchResults
* results
);
40 void SetSelectedIndex(int selected_index
);
42 void UpdateAutoLaunchState();
44 bool IsResultViewSelected(const SearchResultView
* result_view
) const;
46 void SearchResultActivated(SearchResultView
* view
, int event_flags
);
48 void SearchResultActionActivated(SearchResultView
* view
,
52 void OnSearchResultInstalled(SearchResultView
* view
);
54 void OnSearchResultUninstalled(SearchResultView
* view
);
56 // Overridden from views::View:
57 virtual bool OnKeyPressed(const ui::KeyEvent
& event
) OVERRIDE
;
58 virtual gfx::Size
GetPreferredSize() const OVERRIDE
;
61 friend class test::SearchResultListViewTest
;
63 // Updates the auto launch states.
64 void SetAutoLaunchTimeout(const base::TimeDelta
& timeout
);
65 void CancelAutoLaunchTimeout();
67 // Helper function to get SearchResultView at given |index|.
68 SearchResultView
* GetResultViewAt(int index
);
70 // Updates UI with model.
73 // Schedules an Update call using |update_factory_|. Do nothing if there is a
75 void ScheduleUpdate();
77 // Forcibly auto-launch for test if it is in auto-launching state.
78 void ForceAutoLaunchForTest();
80 // Overridden from views::View:
81 virtual void Layout() OVERRIDE
;
82 virtual int GetHeightForWidth(int w
) const OVERRIDE
;
83 virtual void VisibilityChanged(
84 views::View
* starting_from
, bool is_visible
) OVERRIDE
;
86 // Overridden from gfx::AnimationDelegate:
87 virtual void AnimationEnded(const gfx::Animation
* animation
) OVERRIDE
;
88 virtual void AnimationProgressed(const gfx::Animation
* animation
) OVERRIDE
;
90 // Overridden from ui::ListModelObserver:
91 virtual void ListItemsAdded(size_t start
, size_t count
) OVERRIDE
;
92 virtual void ListItemsRemoved(size_t start
, size_t count
) OVERRIDE
;
93 virtual void ListItemMoved(size_t index
, size_t target_index
) OVERRIDE
;
94 virtual void ListItemsChanged(size_t start
, size_t count
) OVERRIDE
;
96 SearchResultListViewDelegate
* delegate_
; // Not owned.
97 AppListViewDelegate
* view_delegate_
; // Not owned.
98 AppListModel::SearchResults
* results_
; // Owned by AppListModel.
100 views::View
* results_container_
;
101 views::View
* auto_launch_indicator_
;
102 scoped_ptr
<gfx::LinearAnimation
> auto_launch_animation_
;
104 int last_visible_index_
;
107 // The factory that consolidates multiple Update calls into one.
108 base::WeakPtrFactory
<SearchResultListView
> update_factory_
;
110 DISALLOW_COPY_AND_ASSIGN(SearchResultListView
);
113 } // namespace app_list
115 #endif // UI_APP_LIST_VIEWS_SEARCH_RESULT_LIST_VIEW_H_