inwin_example.c
/*
* gcc -o inwin_example inwin_example.c `pkg-config --cflags --libs elementary`
*/
#include <Elementary.h>
static Evas_Object *inwin = NULL;
static const char *styles[] = {
"default",
"minimal",
"minimal_vertical"
};
static int current_style = 0;
static void
_inwin_hide(void *data, Evas_Object *obj, void *event)
{
if (inwin)
{
evas_object_hide(inwin);
return;
}
elm_object_text_set(obj, "No inwin!");
elm_object_disabled_set(obj, EINA_TRUE);
}
static void
_inwin_destroy(void *data, Evas_Object *obj, void *event)
{
if (inwin)
{
evas_object_del(inwin);
inwin = NULL;
return;
}
elm_object_text_set(obj, "No inwin!");
elm_object_disabled_set(obj, EINA_TRUE);
}
static void
_btn_click_cb(void *data, Evas_Object *obj, void *event)
{
Evas_Object *o, *parent;
if (inwin)
{
return;
}
inwin = elm_win_inwin_add(parent);
elm_object_style_set(inwin, styles[current_style]);
evas_object_show(inwin);
current_style = (current_style + 1) % 3;
o = elm_box_add(parent);
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(o, EVAS_HINT_FILL, EVAS_HINT_FILL);
evas_object_show(o);
o = elm_label_add(parent);
elm_object_text_set(o, "Click on the first button to hide the Inwin.<ps>"
"Second to destroy it<ps>");
evas_object_show(o);
o = elm_button_add(parent);
elm_object_text_set(o, "Hide");
evas_object_show(o);
evas_object_smart_callback_add(o, "clicked", _inwin_hide, NULL);
o = elm_button_add(parent);
elm_object_text_set(o, "Destroy");
evas_object_show(o);
evas_object_smart_callback_add(o, "clicked", _inwin_destroy, NULL);
}
static void
_win_del_cb(void *data, Evas_Object *obj, void *event)
{
if (inwin)
{
Evas_Object *hover, *o = elm_win_inwin_content_unset(inwin);
evas_object_del(inwin);
inwin = NULL;
hover = elm_hover_add(obj);
elm_hover_target_set(hover, obj);
elm_object_part_content_set(hover, "middle", o);
evas_object_show(hover);
return;
}
evas_object_del(obj);
}
static Eina_Bool
_screenshot_hack_cb(void *data)
{
_btn_click_cb(NULL, data, NULL);
return EINA_FALSE;
}
EAPI_MAIN int
elm_main(int argc, char *argv[])
{
Evas_Object *win, *box, *o;
elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);
win = elm_win_util_standard_add("inwin-example", "Inwin Example");
elm_win_autodel_set(win, EINA_TRUE);
evas_object_smart_callback_add(win, "delete,request", _win_del_cb, NULL);
box = elm_box_add(win);
evas_object_size_hint_weight_set(box, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_show(box);
o = elm_button_add(win);
elm_object_text_set(o, "Inwin!");
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(o, 0.0, 0.0);
evas_object_show(o);
evas_object_smart_callback_add(o, "clicked", _btn_click_cb, NULL);
if (!strncmp(elm_config_engine_get(), "shot", 4))
ecore_timer_add(0.1, _screenshot_hack_cb, o);
evas_object_resize(win, 400, 400);
evas_object_show(win);
return 0;
}