elm codegen_example.c: Fixed formatting.

SVN revision: 81216
This commit is contained in:
Daniel Juyung Seo 2012-12-18 08:08:39 +00:00
parent bfd55da606
commit dc0ad517bf
1 changed files with 27 additions and 29 deletions

View File

@ -23,10 +23,8 @@
* @endverbatim * @endverbatim
*/ */
#include "codegen_example_generated.h" #include "codegen_example_generated.h"
static Eina_Bool _btn_large = EINA_FALSE; static Eina_Bool _btn_large = EINA_FALSE;
static void static void
@ -36,17 +34,17 @@ _swallow_btn_cb(void *data, Evas_Object *btn, void *event_info)
if (_btn_large == EINA_FALSE) if (_btn_large == EINA_FALSE)
{ {
_btn_large = EINA_TRUE; _btn_large = EINA_TRUE;
codegen_example_swallow_grow_emit(layout); codegen_example_swallow_grow_emit(layout);
elm_object_text_set(btn, "Reduce me!"); elm_object_text_set(btn, "Reduce me!");
if (!codegen_example_table_clear(layout, EINA_TRUE)) if (!codegen_example_table_clear(layout, EINA_TRUE))
fprintf(stderr, "Could not remove the items from the table!\n"); fprintf(stderr, "Could not remove the items from the table!\n");
} }
else else
{ {
_btn_large = EINA_FALSE; _btn_large = EINA_FALSE;
codegen_example_swallow_shrink_emit(layout); codegen_example_swallow_shrink_emit(layout);
elm_object_text_set(btn, "Enlarge me!"); elm_object_text_set(btn, "Enlarge me!");
} }
} }
@ -79,9 +77,9 @@ _button_create(Evas_Object *parent, const char *label)
EAPI_MAIN int EAPI_MAIN int
elm_main(int argc, char **argv) elm_main(int argc, char **argv)
{ {
Evas_Object *win, *bg, *btn, *layout, *tbl_items[6]; Evas_Object *win, *bg, *btn, *layout, *tbl_items[6];
const char *labels[] = {"One", "Two", "Three", "Four", "Five", "Six"}; const char *labels[] = {"One", "Two", "Three", "Four", "Five", "Six"};
int i; int i;
elm_app_info_set(elm_main, "elementary", "examples/codegen_example.edj"); elm_app_info_set(elm_main, "elementary", "examples/codegen_example.edj");
win = elm_win_add(NULL, "layout", ELM_WIN_BASIC); win = elm_win_add(NULL, "layout", ELM_WIN_BASIC);
@ -98,8 +96,8 @@ elm_main(int argc, char **argv)
layout = codegen_example_layout_add(win, NULL, NULL); layout = codegen_example_layout_add(win, NULL, NULL);
if (!layout) if (!layout)
{ {
printf("Could not create the layout\n"); printf("Could not create the layout\n");
return -1; return -1;
} }
evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
@ -112,8 +110,8 @@ elm_main(int argc, char **argv)
const char *title = codegen_example_title_get(layout); const char *title = codegen_example_title_get(layout);
if (title) if (title)
{ {
elm_win_title_set(win, title); elm_win_title_set(win, title);
codegen_example_title_set(layout, title); codegen_example_title_set(layout, title);
} }
btn = _button_create(win, "Enlarge me!"); btn = _button_create(win, "Enlarge me!");
@ -122,19 +120,19 @@ elm_main(int argc, char **argv)
for (i = 0; i < 6; i++) for (i = 0; i < 6; i++)
{ {
tbl_items[i] = _button_create(win, labels[i]); tbl_items[i] = _button_create(win, labels[i]);
if (i < 3) if (i < 3)
{ {
if (!codegen_example_table_pack(layout, tbl_items[i], i, i, 1,1)) if (!codegen_example_table_pack(layout, tbl_items[i], i, i, 1,1))
fprintf(stderr, "Could not add the button to the table!\n"); fprintf(stderr, "Could not add the button to the table!\n");
} }
else else
{ {
if (!codegen_example_box_append(layout, tbl_items[i])) if (!codegen_example_box_append(layout, tbl_items[i]))
fprintf(stderr, "Could not add the button to the box!\n"); fprintf(stderr, "Could not add the button to the box!\n");
} }
evas_object_show(tbl_items[i]); evas_object_show(tbl_items[i]);
} }
evas_object_resize(win, 500, 600); evas_object_resize(win, 500, 600);