c: updated example doc. 84/100784/1
authorHermet Park <hermet@hermet.pe.kr>
Tue, 29 Nov 2016 07:55:30 +0000 (16:55 +0900)
committerHermet Park <hermet@hermet.pe.kr>
Tue, 29 Nov 2016 07:55:30 +0000 (16:55 +0900)
Change-Id: If34661179cb58e6136358a2168b6082e78ab6210

16 files changed:
src/examples/efl/c/page1.cpp
src/examples/efl/c/page10.cpp
src/examples/efl/c/page11.cpp
src/examples/efl/c/page12.cpp
src/examples/efl/c/page13.cpp
src/examples/efl/c/page14.cpp
src/examples/efl/c/page15.cpp
src/examples/efl/c/page16.cpp
src/examples/efl/c/page2.cpp
src/examples/efl/c/page3.cpp
src/examples/efl/c/page4.cpp
src/examples/efl/c/page5.cpp
src/examples/efl/c/page6.cpp
src/examples/efl/c/page7.cpp
src/examples/efl/c/page8.cpp
src/examples/efl/c/page9.cpp

index a5ffb21d966b74ee95435095d086729f0bf3f70b..8434fc98f54183d0bb81c34c4c8c9bd2e8aef381 100644 (file)
@@ -66,6 +66,10 @@ view1_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to create a view, set view events, set title and content of the view.
+ */
 void
 create_page1()
 {
index ef625d1487e9637efa97434c086d6e7d6875b961..88c42e4bf26ad665a165780786d049ef7129ea8c 100644 (file)
@@ -88,6 +88,10 @@ view10_load_cb(ui_standard_view *view, void *user_data)
        return view10_rotate_cb(view, user_data);
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to implement the view orientation. It creates proper contents on the rotate method.
+ */
 void
 create_page10()
 {
index c3ec020c71e9301cd92a591545102e9160d69687..f50076ea653d8186a50947757b306c5e30ab61f7 100644 (file)
@@ -118,6 +118,11 @@ view11_menu_cb(ui_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to implement a ui_menu of the view on the MENU event.
+ * It creates a ui control(ctxpopup) for the menu content.
+ */
 void
 create_page11()
 {
index 7936d995485a2e45e993cf5bbf9d9c5e8abc2dc9..e7980cf09bd6fab32f1f07035ee00807d6da686a 100644 (file)
@@ -157,6 +157,11 @@ view12_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to create a ui_popup of the view.
+ * To activate the popup, it sets a title right button.
+ */
 void
 create_page12()
 {
index 870dca3d4e23dbfe4fe4efe0ed69ae4567299626..afaf37093c94e1b636a770c032080224f0819612 100644 (file)
@@ -66,6 +66,11 @@ view13_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to change the view transition style. It sets its style to fade.
+ * The fade effect will be shown on view's appear/disappear time.
+ */
 void
 create_page13()
 {
index 989b7353e82bb2be8a1cc117abfcb1ed95f59ae0..a9382a03003529d91299b06f29b45e3f3521884d 100644 (file)
@@ -66,6 +66,11 @@ view14_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to change the view transition style. It sets its style to none.
+ * There will be no effect on the view's appear/disappear time.
+ */
 void
 create_page14()
 {
index e9a81ff0876bcac51d4c002d78ebfe0c9176a193..88d99f279d6e4735fcb2d9338df250fb460dedf5 100644 (file)
@@ -62,6 +62,11 @@ view15_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to use the auto-scroll feature of the view.
+ * When the view is changed to landscape mode, Scroller is enabled to scroll the view content.
+ */
 void
 create_page15()
 {
index e7bba944ddfa506b236d80235a70f3643f1887f1..4a5e9f0a9c274fcd4521401b9a5243336d860803 100644 (file)
@@ -94,6 +94,10 @@ view16_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to handle title part of the ui_standard_view. It changes title state between visible/invisible states, with/without animations.
+ */
 void
 create_page16()
 {
index 872d6555a5805a8f071961d5cfb068b6f9eb299f..d9a5411da7f53f6fca983e9d72f55f1544971e1d 100644 (file)
@@ -84,6 +84,10 @@ view2_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to create a view, set view events, set title buttons of the view.
+ */
 void
 create_page2()
 {
index ed6bcf537165861086c40b504242519d93df5efc..0a8fa12aaa25db1fab14b6b1a3c6fa26d408093c 100644 (file)
@@ -67,6 +67,10 @@ view3_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to create a view, set view events, set title text and its sub text of the view.
+ */
 void
 create_page3()
 {
index 467c8cb46fa059ffc9bc7ed45aa239b49d4dfd00..4df21bee000104c963cd0fe8a33d126a92e23d7b 100644 (file)
@@ -67,6 +67,10 @@ view4_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to create a view, set view events, set a long title text and set a badge text of the view.
+ */
 void
 create_page4()
 {
index ad45cb6d3d5d3a4b78e285399f43be9195813cb0..e7ff962926ba0fdbfa439648e9974ea2640d6c37 100644 (file)
@@ -71,6 +71,10 @@ view5_load_cb(ui_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_view.
+ * It demonstrates how to create a full view and hide the indicator of the view.
+ */
 void
 create_page5()
 {
index 646c60e82e54649b4c3aea6868bf7e41d7092a2e..869881d238023720109a0e708753dbc34f3bdf16 100644 (file)
@@ -70,6 +70,10 @@ view6_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to create a view with a toolbar(toolbar_with_title).
+ */
 void
 create_page6()
 {
index f3c299b6831ed7ef4449a65e8de2a547b1136a08..278c650591f7982d2413faca8ac11ec11ef9a120 100644 (file)
@@ -69,6 +69,10 @@ view7_load_cb(ui_standard_view *view, void *user_data)
        return true;
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to create a view with a toolbar(navigationbar).
+ */
 void
 create_page7()
 {
index 1dead4cf623e6ed35c9e1bbab00f88f93f11d9e2..d7652654ffd76f4550021792e1d9e76b4b2546fc 100644 (file)
@@ -33,6 +33,10 @@ next_btn_clicked_cb(void *data, Eo *obj, void *event_info)
        create_page9();
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to create a view in prior to the load time.
+ */
 void
 create_page8()
 {
index 19aeade5da17850cab36db29ca8dc8cc7b979cd5..3466ac87bd12eec3bd420141da6dbd5b5a19a368 100644 (file)
@@ -118,6 +118,10 @@ view9_load_cb(ui_standard_view *view, void *user_data)
        }
 }
 
+/*
+ * This example shows a basic usage of an ui_standard_view.
+ * It demonstrates how to implement the view orientation. It creates proper contents on portrait and landscape modes.
+ */
 void
 create_page9()
 {