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
3 // found in the LICENSE file.
5 #ifndef UI_APP_LIST_VIEWS_SEARCH_RESULT_ACTIONS_VIEW_H_
6 #define UI_APP_LIST_VIEWS_SEARCH_RESULT_ACTIONS_VIEW_H_
8 #include "base/basictypes.h"
9 #include "ui/app_list/search_result.h"
10 #include "ui/views/controls/button/button.h"
11 #include "ui/views/view.h"
15 class SearchResultActionsViewDelegate
;
17 // SearchResultActionsView displays a SearchResult::Actions in a button
18 // strip. Each action is presented as a button and horizontally laid out.
19 class SearchResultActionsView
: public views::View
,
20 public views::ButtonListener
{
22 explicit SearchResultActionsView(SearchResultActionsViewDelegate
* delegate
);
23 ~SearchResultActionsView() override
;
25 void SetActions(const SearchResult::Actions
& actions
);
27 void SetSelectedAction(int action_index
);
28 int selected_action() const { return selected_action_
; }
30 bool IsValidActionIndex(int action_index
) const;
33 void CreateImageButton(const SearchResult::Action
& action
);
34 void CreateBlueButton(const SearchResult::Action
& action
);
36 // views::View overrides:
37 void OnPaint(gfx::Canvas
* canvas
) override
;
39 // views::ButtonListener overrides:
40 void ButtonPressed(views::Button
* sender
, const ui::Event
& event
) override
;
42 SearchResultActionsViewDelegate
* delegate_
; // Not owned.
45 DISALLOW_COPY_AND_ASSIGN(SearchResultActionsView
);
48 } // namespace app_list
50 #endif // UI_APP_LIST_VIEWS_SEARCH_RESULT_ACTIONS_VIEW_H_