[cbhm] copy&paste error in webkit
[framework/uifw/cbhm.git] / src / item_manager.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  */
17
18 #ifndef _ITEM_MANAGER_H_
19 #define _ITEM_MANAGER_H_
20
21 #include "cbhm.h"
22
23 struct _CNP_ITEM {
24         int type_index;
25         void *data;
26         size_t len;
27
28         Elm_Object_Item *gitem;
29         Evas_Object *layout;
30         AppData *ad;
31 };
32
33 CNP_ITEM *item_add_by_CNP_ITEM(AppData *ad, CNP_ITEM *item);
34 CNP_ITEM *item_add_by_data(AppData *ad, Ecore_X_Atom type, void *data, int len);
35
36 CNP_ITEM *item_get_by_index(AppData *ad, int index);
37 CNP_ITEM *item_get_by_data(AppData *ad, void *data);
38 CNP_ITEM *item_get_last(AppData *ad);
39
40 void item_delete_by_CNP_ITEM(AppData *ad, CNP_ITEM *item);
41 void item_delete_by_data(AppData *ad, void *data);
42 void item_delete_by_index(AppData *ad, int index);
43 void item_clear_all(AppData *ad);
44 int item_count_get(AppData *ad);
45
46 #endif /*_ITEM_MANAGER_H_*/
47