Mac: Fix performance issues with remote CoreAnimation
[chromium-blink-merge.git] / ui / app_list / app_list_model.h
blob0ff01499b6d6f6f22d32c2285ffb928ce32ff081
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_APP_LIST_MODEL_H_
6 #define UI_APP_LIST_APP_LIST_MODEL_H_
8 #include <string>
9 #include <vector>
11 #include "base/basictypes.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/observer_list.h"
14 #include "ui/app_list/app_list_export.h"
15 #include "ui/app_list/app_list_item_list.h"
16 #include "ui/app_list/app_list_item_list_observer.h"
17 #include "ui/app_list/search_result.h"
18 #include "ui/base/models/list_model.h"
20 namespace app_list {
22 class AppListFolderItem;
23 class AppListItem;
24 class AppListItemList;
25 class AppListModelObserver;
26 class SearchBoxModel;
28 // Master model of app list that consists of three sub models: AppListItemList,
29 // SearchBoxModel and SearchResults. The AppListItemList sub model owns a list
30 // of AppListItems and is displayed in the grid view. SearchBoxModel is
31 // the model for SearchBoxView. SearchResults owns a list of SearchResult.
32 // NOTE: Currently this class observes |top_level_item_list_|. The View code may
33 // move entries in the item list directly (but can not add or remove them) and
34 // the model needs to notify its observers when this occurs.
35 class APP_LIST_EXPORT AppListModel : public AppListItemListObserver {
36 public:
37 enum Status {
38 STATUS_NORMAL,
39 STATUS_SYNCING, // Syncing apps or installing synced apps.
42 enum State {
43 STATE_APPS,
44 STATE_SEARCH_RESULTS,
45 STATE_START,
46 STATE_CUSTOM_LAUNCHER_PAGE,
48 INVALID_STATE,
51 typedef ui::ListModel<SearchResult> SearchResults;
53 AppListModel();
54 ~AppListModel() override;
56 void AddObserver(AppListModelObserver* observer);
57 void RemoveObserver(AppListModelObserver* observer);
59 void SetStatus(Status status);
61 void SetState(State state);
62 State state() { return state_; }
64 // Finds the item matching |id|.
65 AppListItem* FindItem(const std::string& id);
67 // Find a folder item matching |id|.
68 AppListFolderItem* FindFolderItem(const std::string& id);
70 // Adds |item| to the model. The model takes ownership of |item|. Returns a
71 // pointer to the item that is safe to use (e.g. after passing ownership).
72 AppListItem* AddItem(scoped_ptr<AppListItem> item);
74 // Adds |item| to an existing folder or creates a new folder. If |folder_id|
75 // is empty, adds the item to the top level model instead. The model takes
76 // ownership of |item|. Returns a pointer to the item that is safe to use.
77 AppListItem* AddItemToFolder(scoped_ptr<AppListItem> item,
78 const std::string& folder_id);
80 // Merges two items. If the target item is a folder, the source item is added
81 // to the end of the target folder. Otherwise a new folder is created in the
82 // same position as the target item with the target item as the first item in
83 // the new folder and the source item as the second item. Returns the id of
84 // the target folder, or an empty string if the merge failed. The source item
85 // may already be in a folder. See also the comment for RemoveItemFromFolder.
86 // NOTE: This should only be called by the View code (not the sync code); it
87 // enforces folder restrictions (e.g. the target can not be an OEM folder).
88 const std::string MergeItems(const std::string& target_item_id,
89 const std::string& source_item_id);
91 // Move |item| to the folder matching |folder_id| or to the top level if
92 // |folder_id| is empty. |item|->position will determine where the item
93 // is positioned. See also the comment for RemoveItemFromFolder.
94 void MoveItemToFolder(AppListItem* item, const std::string& folder_id);
96 // Move |item| to the folder matching |folder_id| or to the top level if
97 // |folder_id| is empty. The item will be inserted before |position| or at
98 // the end of the list if |position| is invalid. Note: |position| is copied
99 // in case it refers to the containing folder which may get deleted. See also
100 // the comment for RemoveItemFromFolder. Returns true if the item was moved.
101 // NOTE: This should only be called by the View code (not the sync code); it
102 // enforces folder restrictions (e.g. the source folder can not be type OEM).
103 bool MoveItemToFolderAt(AppListItem* item,
104 const std::string& folder_id,
105 syncer::StringOrdinal position);
107 // Sets the position of |item| either in |top_level_item_list_| or the folder
108 // specified by |item|->folder_id(). If |new_position| is invalid, move the
109 // item to the end of the list.
110 void SetItemPosition(AppListItem* item,
111 const syncer::StringOrdinal& new_position);
113 // Sets the name of |item| and notifies observers.
114 void SetItemName(AppListItem* item, const std::string& name);
116 // Sets the name and short name of |item| and notifies observers.
117 void SetItemNameAndShortName(AppListItem* item,
118 const std::string& name,
119 const std::string& short_name);
121 // Deletes the item matching |id| from |top_level_item_list_| or from the
122 // appropriate folder.
123 void DeleteItem(const std::string& id);
125 // Call OnExtensionPreferenceChanged() for all items in the model.
126 void NotifyExtensionPreferenceChanged();
128 // Sets wither or not folder UI should be enabled. If |folders_enabled| is
129 // false, removes any non-OEM folders.
130 void SetFoldersEnabled(bool folders_enabled);
132 // Filters the given |results| by |display_type|. The returned list is
133 // truncated to |max_results|.
134 static std::vector<SearchResult*> FilterSearchResultsByDisplayType(
135 SearchResults* results,
136 SearchResult::DisplayType display_type,
137 size_t max_results);
139 AppListItemList* top_level_item_list() { return top_level_item_list_.get(); }
141 SearchBoxModel* search_box() { return search_box_.get(); }
142 SearchResults* results() { return results_.get(); }
143 Status status() const { return status_; }
144 bool folders_enabled() const { return folders_enabled_; }
146 private:
147 // AppListItemListObserver
148 void OnListItemMoved(size_t from_index,
149 size_t to_index,
150 AppListItem* item) override;
152 // Returns an existing folder matching |folder_id| or creates a new folder.
153 AppListFolderItem* FindOrCreateFolderItem(const std::string& folder_id);
155 // Adds |item_ptr| to |top_level_item_list_| and notifies observers.
156 AppListItem* AddItemToItemListAndNotify(
157 scoped_ptr<AppListItem> item_ptr);
159 // Adds |item_ptr| to |top_level_item_list_| and notifies observers that an
160 // Update occured (e.g. item moved from a folder).
161 AppListItem* AddItemToItemListAndNotifyUpdate(
162 scoped_ptr<AppListItem> item_ptr);
164 // Adds |item_ptr| to |folder| and notifies observers.
165 AppListItem* AddItemToFolderItemAndNotify(AppListFolderItem* folder,
166 scoped_ptr<AppListItem> item_ptr);
168 // Removes |item| from |top_level_item_list_| or calls RemoveItemFromFolder if
169 // |item|->folder_id is set.
170 scoped_ptr<AppListItem> RemoveItem(AppListItem* item);
172 // Removes |item| from |folder|. If |folder| becomes empty, deletes |folder|
173 // from |top_level_item_list_|. Does NOT trigger observers, calling function
174 // must do so.
175 scoped_ptr<AppListItem> RemoveItemFromFolder(AppListFolderItem* folder,
176 AppListItem* item);
178 scoped_ptr<AppListItemList> top_level_item_list_;
180 scoped_ptr<SearchBoxModel> search_box_;
181 scoped_ptr<SearchResults> results_;
183 Status status_;
184 State state_;
185 ObserverList<AppListModelObserver, true> observers_;
186 bool folders_enabled_;
188 DISALLOW_COPY_AND_ASSIGN(AppListModel);
191 } // namespace app_list
193 #endif // UI_APP_LIST_APP_LIST_MODEL_H_