blob: 29609316c2aafa5c39ce79bd7ddee9f666c961a8 (
plain)
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
|
// 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.
#ifndef UI_APP_LIST_APP_LIST_ITEM_MODEL_H_
#define UI_APP_LIST_APP_LIST_ITEM_MODEL_H_
#include <string>
#include "base/basictypes.h"
#include "base/observer_list.h"
#include "ui/app_list/app_list_export.h"
#include "ui/gfx/image/image_skia.h"
namespace ui {
class MenuModel;
}
namespace app_list {
class AppListItemModelObserver;
// AppListItemModel provides icon and title to be shown in a AppListItemView
// and action to be executed when the AppListItemView is activated.
class APP_LIST_EXPORT AppListItemModel {
public:
AppListItemModel();
virtual ~AppListItemModel();
void SetIcon(const gfx::ImageSkia& icon);
const gfx::ImageSkia& icon() const { return icon_; }
void SetTitle(const std::string& title);
const std::string& title() const { return title_; }
void SetHighlighted(bool highlighted);
bool highlighted() const { return highlighted_; }
void SetIsInstalling(bool is_installing);
bool is_installing() const { return is_installing_; }
void SetPercentDownloaded(int percent_downloaded);
int percent_downloaded() const { return percent_downloaded_; }
void AddObserver(AppListItemModelObserver* observer);
void RemoveObserver(AppListItemModelObserver* observer);
// Returns the context menu model for this item.
// Note the returned menu model is owned by this item.
virtual ui::MenuModel* GetContextMenuModel();
private:
gfx::ImageSkia icon_;
std::string title_;
bool highlighted_;
bool is_installing_;
int percent_downloaded_;
ObserverList<AppListItemModelObserver> observers_;
DISALLOW_COPY_AND_ASSIGN(AppListItemModel);
};
} // namespace app_list
#endif // UI_APP_LIST_APP_LIST_ITEM_MODEL_H_
|