summaryrefslogtreecommitdiff
path: root/include/util/util.h
diff options
context:
space:
mode:
authorJehun Lim <jehun.lim@samsung.com>2015-07-01 21:54:50 +0900
committerJehun Lim <jehun.lim@samsung.com>2015-07-01 21:58:24 +0900
commite59444149ed200dff36f4daaaa062fc926163df5 (patch)
tree2b400ae77614cee98c69ebf8de70beaea27adb1f /include/util/util.h
parentcb05893c72d7bd17c8074a0f6a6d9aa6e84b2cac (diff)
downloadair_mediahub-e59444149ed200dff36f4daaaa062fc926163df5.tar.gz
air_mediahub-e59444149ed200dff36f4daaaa062fc926163df5.tar.bz2
air_mediahub-e59444149ed200dff36f4daaaa062fc926163df5.zip
util: add function to create box, gengrid and scroller
Change-Id: I6dbf248e75d305f951f4983848920baefb5fc7e4 Signed-off-by: Jehun Lim <jehun.lim@samsung.com>
Diffstat (limited to 'include/util/util.h')
-rw-r--r--include/util/util.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/util/util.h b/include/util/util.h
new file mode 100644
index 0000000..59aefce
--- /dev/null
+++ b/include/util/util.h
@@ -0,0 +1,25 @@
+/*
+ * 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 __AIR_MEDIAHUB_UTIL_H__
+#define __AIR_MEDIAHUB_UTIL_H__
+
+Evas_Object *util_add_box(Evas_Object *base);
+Evas_Object *util_add_gengrid(Evas_Object *base,
+ int item_size_x, int item_size_y);
+Evas_Object *util_add_scroller(Evas_Object *base);
+
+#endif /* __AIR_MEDIAHUB_UTIL_H__ */