diff options
author | Radoslaw Czerski <r.czerski@samsung.com> | 2016-01-30 13:27:54 +0100 |
---|---|---|
committer | Radoslaw Czerski <r.czerski@samsung.com> | 2016-01-30 13:27:54 +0100 |
commit | cf5ac9c0a70f47d60c53123b29c46f918c39ec8d (patch) | |
tree | b0226419935172eb687d59dcfc2ebd65e7673ef9 /inc/grid.h | |
parent | aa09bed689b89f77255822cdc3964b105611fea7 (diff) | |
download | share-panel-cf5ac9c0a70f47d60c53123b29c46f918c39ec8d.tar.gz share-panel-cf5ac9c0a70f47d60c53123b29c46f918c39ec8d.tar.bz2 share-panel-cf5ac9c0a70f47d60c53123b29c46f918c39ec8d.zip |
Migrate to Tizen SDK 3.0
Change-Id: Ib9399fb9eb2025cd6f126aacd527bcf012d41531
Signed-off-by: Radoslaw Czerski <r.czerski@samsung.com>
Diffstat (limited to 'inc/grid.h')
-rw-r--r-- | inc/grid.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/inc/grid.h b/inc/grid.h new file mode 100644 index 0000000..f19535a --- /dev/null +++ b/inc/grid.h @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __TIZEN_SHARE_PANEL_GRID_H__ +#define __TIZEN_SHARE_PANEL_GRID_H__ + +#include <Elementary.h> + +extern Evas_Object *_grid_create(Evas_Object *page); +extern void _grid_destroy(Evas_Object *grid); + +extern Elm_Object_Item *_grid_append_item(Evas_Object *grid, item_s *item_info); +extern void _grid_remove_item(Evas_Object *grid, item_s *item_info); + +extern int _grid_count_item(Evas_Object *grid); + +int _app_control_launch(item_s *item); + +#endif /* __TIZEN_SHARE_PANEL_GRID_H__ */ |