1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// 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_result.h"
#include "ui/app_list/search_result_observer.h"
namespace app_list {
SearchResult::Action::Action(const gfx::ImageSkia& base_image,
const gfx::ImageSkia& hover_image,
const gfx::ImageSkia& pressed_image,
const base::string16& tooltip_text)
: base_image(base_image),
hover_image(hover_image),
pressed_image(pressed_image),
tooltip_text(tooltip_text) {}
SearchResult::Action::Action(const base::string16& label_text,
const base::string16& tooltip_text)
: tooltip_text(tooltip_text),
label_text(label_text) {}
SearchResult::Action::~Action() {}
SearchResult::SearchResult() : is_installing_(false), percent_downloaded_(0) {}
SearchResult::~SearchResult() {}
void SearchResult::SetIcon(const gfx::ImageSkia& icon) {
icon_ = icon;
FOR_EACH_OBSERVER(SearchResultObserver,
observers_,
OnIconChanged());
}
void SearchResult::SetActions(const Actions& sets) {
actions_ = sets;
FOR_EACH_OBSERVER(SearchResultObserver,
observers_,
OnActionsChanged());
}
void SearchResult::SetIsInstalling(bool is_installing) {
if (is_installing_ == is_installing)
return;
is_installing_ = is_installing;
FOR_EACH_OBSERVER(SearchResultObserver,
observers_,
OnIsInstallingChanged());
}
void SearchResult::SetPercentDownloaded(int percent_downloaded) {
if (percent_downloaded_ == percent_downloaded)
return;
percent_downloaded_ = percent_downloaded;
FOR_EACH_OBSERVER(SearchResultObserver,
observers_,
OnPercentDownloadedChanged());
}
void SearchResult::NotifyItemInstalled() {
FOR_EACH_OBSERVER(SearchResultObserver, observers_, OnItemInstalled());
}
void SearchResult::NotifyItemUninstalled() {
FOR_EACH_OBSERVER(SearchResultObserver, observers_, OnItemUninstalled());
}
void SearchResult::AddObserver(SearchResultObserver* observer) {
observers_.AddObserver(observer);
}
void SearchResult::RemoveObserver(SearchResultObserver* observer) {
observers_.RemoveObserver(observer);
}
ui::MenuModel* SearchResult::GetContextMenuModel() {
return NULL;
}
} // namespace app_list
|