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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
// 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/app_list_item_model.h"
#include "base/logging.h"
#include "ui/app_list/app_list_item_model_observer.h"
namespace app_list {
AppListItemModel::AppListItemModel(const std::string& id)
: id_(id),
highlighted_(false),
is_installing_(false),
percent_downloaded_(-1) {
}
AppListItemModel::~AppListItemModel() {
}
void AppListItemModel::SetIcon(const gfx::ImageSkia& icon, bool has_shadow) {
icon_ = icon;
has_shadow_ = has_shadow;
FOR_EACH_OBSERVER(AppListItemModelObserver, observers_, ItemIconChanged());
}
void AppListItemModel::SetTitleAndFullName(const std::string& title,
const std::string& full_name) {
if (title_ == title && full_name_ == full_name)
return;
title_ = title;
full_name_ = full_name;
FOR_EACH_OBSERVER(AppListItemModelObserver, observers_, ItemTitleChanged());
}
void AppListItemModel::SetHighlighted(bool highlighted) {
if (highlighted_ == highlighted)
return;
highlighted_ = highlighted;
FOR_EACH_OBSERVER(AppListItemModelObserver,
observers_,
ItemHighlightedChanged());
}
void AppListItemModel::SetIsInstalling(bool is_installing) {
if (is_installing_ == is_installing)
return;
is_installing_ = is_installing;
FOR_EACH_OBSERVER(AppListItemModelObserver,
observers_,
ItemIsInstallingChanged());
}
void AppListItemModel::SetPercentDownloaded(int percent_downloaded) {
if (percent_downloaded_ == percent_downloaded)
return;
percent_downloaded_ = percent_downloaded;
FOR_EACH_OBSERVER(AppListItemModelObserver,
observers_,
ItemPercentDownloadedChanged());
}
void AppListItemModel::AddObserver(AppListItemModelObserver* observer) {
observers_.AddObserver(observer);
}
void AppListItemModel::RemoveObserver(AppListItemModelObserver* observer) {
observers_.RemoveObserver(observer);
}
void AppListItemModel::Activate(int event_flags) {
}
const char* AppListItemModel::GetAppType() const {
static const char* app_type = "";
return app_type;
}
ui::MenuModel* AppListItemModel::GetContextMenuModel() {
return NULL;
}
bool AppListItemModel::CompareForTest(const AppListItemModel* other) const {
return id_ == other->id_ &&
title_ == other->title_ &&
position_.Equals(other->position_);
}
std::string AppListItemModel::ToDebugString() const {
return id_.substr(0, 8) + " '" + title_ + "'"
+ " [" + position_.ToDebugString() + "]";
}
} // namespace app_list
|