WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=b4461f691b8dad5da8b1b3e7aea405400f9b77a6
commit b4461f691b8dad5da8b1b3e7aea405400f9b77a6 Author: Andrew Williams <[email protected]> Date: Tue Oct 31 04:43:07 2017 -0700 Wiki page panes_tutorial changed with summary [] by Andrew Williams --- pages/tutorial/panes_tutorial.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pages/tutorial/panes_tutorial.txt b/pages/tutorial/panes_tutorial.txt index a681e85a..7696f01e 100644 --- a/pages/tutorial/panes_tutorial.txt +++ b/pages/tutorial/panes_tutorial.txt @@ -13,7 +13,8 @@ This tutorial explains how to use Panes in the application. A panes example : {{ :panes.png?direct |list}} -//**__The whole code__ : **//{{/code_c/tutorial/panes/panes.c}} +**__//The whole code://__** +{{/code_c/tutorial/panes/panes.c}} -------- === Initializing the Application === @@ -148,7 +149,7 @@ interaction with the draggable bar. A callback function is added for each of them. -//**__"click" Signal__**// +**__//"click" Signal//__** The callback function for the clicked signal prints "Clicked" to standard output. @@ -167,7 +168,7 @@ This is how to register this callback function to the vertical panes. evas_object_smart_callback_add(panes, "clicked", _clicked_cb, panes); </code> -//**__"press" Signal__**// +**__//"press" Signal//__** The callback function for the clicked signal prints "Clicked" to standard output. @@ -188,7 +189,7 @@ output. evas_object_smart_callback_add(panes, "press", _press_cb, panes); </code> -//**__"unpress" Signal__**// +**__//"unpress" Signal//__** For the "unpress" signal, the proportion size of the left content of the Panes widget is printed to the standard output. To do this, use the @@ -207,7 +208,7 @@ This is how to register this callback function to the vertical panes. evas_object_smart_callback_add(panes, "unpress", _unpress_cb, panes); </code> -//**__"clicked,double" Signal__**// +**__//"clicked,double" Signal//__** Hide the left part of the Panes widget on the "clicked,double" signal and set the left proportion to 0.0. To restore the left part proportion with a double @@ -244,4 +245,4 @@ This is how to register this callback function to the Panes. evas_object_smart_callback_add(panes, "clicked,double", _clicked_double_cb, panes); </code> \\ -//**__The whole code__ : **//{{/code_c/tutorial/panes/panes.c}} +**__//The whole code://__**{{/code_c/tutorial/panes/panes.c}} --
