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_
10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/observer_list.h"
13 #include "ui/app_list/app_list_export.h"
14 #include "ui/app_list/app_list_item_list.h"
15 #include "ui/app_list/app_list_item_list_observer.h"
16 #include "ui/base/models/list_model.h"
20 class AppListFolderItem
;
22 class AppListItemList
;
23 class AppListModelObserver
;
27 // Master model of app list that consists of three sub models: AppListItemList,
28 // SearchBoxModel and SearchResults. The AppListItemList sub model owns a list
29 // of AppListItems and is displayed in the grid view. SearchBoxModel is
30 // the model for SearchBoxView. SearchResults owns a list of SearchResult.
31 // NOTE: Currently this class observes |top_level_item_list_|. The View code may
32 // move entries in the item list directly (but can not add or remove them) and
33 // the model needs to notify its observers when this occurs.
34 class APP_LIST_EXPORT AppListModel
: public AppListItemListObserver
{
38 STATUS_SYNCING
, // Syncing apps or installing synced apps.
41 typedef ui::ListModel
<SearchResult
> SearchResults
;
44 virtual ~AppListModel();
46 void AddObserver(AppListModelObserver
* observer
);
47 void RemoveObserver(AppListModelObserver
* observer
);
49 void SetStatus(Status status
);
51 // Finds the item matching |id|.
52 AppListItem
* FindItem(const std::string
& id
);
54 // Find a folder item matching |id|.
55 AppListFolderItem
* FindFolderItem(const std::string
& id
);
57 // Adds |item| to the model. The model takes ownership of |item|. Returns a
58 // pointer to the item that is safe to use (e.g. after passing ownership).
59 AppListItem
* AddItem(scoped_ptr
<AppListItem
> item
);
61 // Adds |item| to an existing folder or creates a new folder. If |folder_id|
62 // is empty, adds the item to the top level model instead. The model takes
63 // ownership of |item|. Returns a pointer to the item that is safe to use.
64 AppListItem
* AddItemToFolder(scoped_ptr
<AppListItem
> item
,
65 const std::string
& folder_id
);
67 // Merges two items. If the target item is a folder, the source item is added
68 // to the end of the target folder. Otherwise a new folder is created in the
69 // same position as the target item with the target item as the first item in
70 // the new folder and the source item as the second item. Returns the id of
71 // the target folder, or an empty string if the merge failed. The source item
72 // may already be in a folder. See also the comment for RemoveItemFromFolder.
73 // NOTE: This should only be called by the View code (not the sync code); it
74 // enforces folder restrictions (e.g. the target can not be an OEM folder).
75 const std::string
MergeItems(const std::string
& target_item_id
,
76 const std::string
& source_item_id
);
78 // Move |item| to the folder matching |folder_id| or to the top level if
79 // |folder_id| is empty. |item|->position will determine where the item
80 // is positioned. See also the comment for RemoveItemFromFolder.
81 void MoveItemToFolder(AppListItem
* item
, const std::string
& folder_id
);
83 // Move |item| to the folder matching |folder_id| or to the top level if
84 // |folder_id| is empty. The item will be inserted before |position| or at
85 // the end of the list if |position| is invalid. Note: |position| is copied
86 // in case it refers to the containing folder which may get deleted. See also
87 // the comment for RemoveItemFromFolder. Returns true if the item was moved.
88 // NOTE: This should only be called by the View code (not the sync code); it
89 // enforces folder restrictions (e.g. the source folder can not be type OEM).
90 bool MoveItemToFolderAt(AppListItem
* item
,
91 const std::string
& folder_id
,
92 syncer::StringOrdinal position
);
94 // Sets the position of |item| either in |top_level_item_list_| or the folder
95 // specified by |item|->folder_id(). If |new_position| is invalid, move the
96 // item to the end of the list.
97 void SetItemPosition(AppListItem
* item
,
98 const syncer::StringOrdinal
& new_position
);
100 // Sets the name of |item| and notifies observers.
101 void SetItemName(AppListItem
* item
, const std::string
& name
);
103 // Sets the name and short name of |item| and notifies observers.
104 void SetItemNameAndShortName(AppListItem
* item
,
105 const std::string
& name
,
106 const std::string
& short_name
);
108 // Deletes the item matching |id| from |top_level_item_list_| or from the
109 // appropriate folder.
110 void DeleteItem(const std::string
& id
);
112 // Call OnExtensionPreferenceChanged() for all items in the model.
113 void NotifyExtensionPreferenceChanged();
115 AppListItemList
* top_level_item_list() { return top_level_item_list_
.get(); }
117 SearchBoxModel
* search_box() { return search_box_
.get(); }
118 SearchResults
* results() { return results_
.get(); }
119 Status
status() const { return status_
; }
122 // AppListItemListObserver
123 virtual void OnListItemMoved(size_t from_index
,
125 AppListItem
* item
) OVERRIDE
;
127 // Returns an existing folder matching |folder_id| or creates a new folder.
128 AppListFolderItem
* FindOrCreateFolderItem(const std::string
& folder_id
);
130 // Adds |item_ptr| to |top_level_item_list_| and notifies observers.
131 AppListItem
* AddItemToItemListAndNotify(
132 scoped_ptr
<AppListItem
> item_ptr
);
134 // Adds |item_ptr| to |top_level_item_list_| and notifies observers that an
135 // Update occured (e.g. item moved from a folder).
136 AppListItem
* AddItemToItemListAndNotifyUpdate(
137 scoped_ptr
<AppListItem
> item_ptr
);
139 // Adds |item_ptr| to |folder| and notifies observers.
140 AppListItem
* AddItemToFolderItemAndNotify(AppListFolderItem
* folder
,
141 scoped_ptr
<AppListItem
> item_ptr
);
143 // Removes |item| from |top_level_item_list_| or calls RemoveItemFromFolder if
144 // |item|->folder_id is set.
145 scoped_ptr
<AppListItem
> RemoveItem(AppListItem
* item
);
147 // Removes |item| from |folder|. If |folder| becomes empty, deletes |folder|
148 // from |top_level_item_list_|. Does NOT trigger observers, calling function
150 scoped_ptr
<AppListItem
> RemoveItemFromFolder(AppListFolderItem
* folder
,
153 scoped_ptr
<AppListItemList
> top_level_item_list_
;
155 scoped_ptr
<SearchBoxModel
> search_box_
;
156 scoped_ptr
<SearchResults
> results_
;
159 ObserverList
<AppListModelObserver
> observers_
;
161 DISALLOW_COPY_AND_ASSIGN(AppListModel
);
164 } // namespace app_list
166 #endif // UI_APP_LIST_APP_LIST_MODEL_H_