fixed plugin image size problem
[framework/uifw/elementary.git] / src / bin / test_separator.c
index 4b43ccd..8c1959c 100644 (file)
@@ -1,25 +1,19 @@
-#include <Elementary.h>
 #ifdef HAVE_CONFIG_H
 # include "elementary_config.h"
 #endif
+#include <Elementary.h>
 #ifndef ELM_LIB_QUICKLAUNCH
 void
 test_separator(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
 {
-   Evas_Object *win, *bg, *bx0, *bx, *bt, *sp;
-
-   win = elm_win_add(NULL, "separators", ELM_WIN_BASIC);
-   elm_win_title_set(win, "Separators");
-   elm_win_autodel_set(win, 1);
+   Evas_Object *win, *bx0, *bx, *bt, *sp;
 
-   bg = elm_bg_add(win);
-   elm_win_resize_object_add(win, bg);
-   evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-   evas_object_show(bg);
+   win = elm_win_util_standard_add("separators", "Separators");
+   elm_win_autodel_set(win, EINA_TRUE);
 
    bx0 = elm_box_add(win);
    evas_object_size_hint_weight_set(bx0, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-   elm_box_horizontal_set(bx0, 1);
+   elm_box_horizontal_set(bx0, EINA_TRUE);
    elm_win_resize_object_add(win, bx0);
    evas_object_show(bx0);
 
@@ -34,13 +28,13 @@ test_separator(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_i
    evas_object_show(bt);
 
    sp = elm_separator_add(win);
-   elm_separator_horizontal_set(sp, 1); // by default, separator is vertical, we must set it horizontal
+   elm_separator_horizontal_set(sp, EINA_TRUE); // by default, separator is vertical, we must set it horizontal
    elm_box_pack_end(bx, sp);
    evas_object_show(sp);
 
    bt = elm_button_add(win);
    elm_object_text_set(bt, "Left lower corner");
-   elm_object_disabled_set(bt, 1);
+   elm_object_disabled_set(bt, EINA_TRUE);
    elm_box_pack_end(bx, bt);
    evas_object_show(bt);
 
@@ -55,12 +49,12 @@ test_separator(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_i
 
    bt = elm_button_add(win);
    elm_object_text_set(bt, "Right upper corner");
-   elm_object_disabled_set(bt, 1);
+   elm_object_disabled_set(bt, EINA_TRUE);
    elm_box_pack_end(bx, bt);
    evas_object_show(bt);
 
    sp = elm_separator_add(win);
-   elm_separator_horizontal_set(sp, 1);
+   elm_separator_horizontal_set(sp, EINA_TRUE);
    elm_box_pack_end(bx, sp);
    evas_object_show(sp);