#include <Elementary.h>
static void _hide(
void *data,
Evas_Object *obj,
void *event_info);
EAPI_MAIN int
elm_main(
int argc
EINA_UNUSED,
char **argv EINA_UNUSED)
{
elm_object_text_set(content, "default");
elm_notify_timeout_set(notify, 5);
elm_object_content_set(notify, content);
elm_box_pack_end(bx, notify);
elm_object_text_set(content, "bottom");
elm_notify_align_set(notify, 0.5, 1.0);
elm_object_content_set(notify, content);
elm_box_pack_end(bx, notify);
elm_object_text_set(content, "center");
elm_notify_align_set(notify, 0.5, 0.5);
elm_object_content_set(notify, content);
elm_box_pack_end(bx, notify);
return 0;
}
static void
{
}