#include <Elementary.h>
static void
{
}
static void
{
}
static void
{
}
EAPI_MAIN int
{
unsigned int i, j;
elm_box_pack_end(bx, mb);
for (i = 0; i < 8; i++)
{
for (j = 0; j < 8; j++)
{
elm_table_pack(tb, ic, i, j, 1, 1);
}
}
elm_object_content_set(mb, tb);
elm_box_pack_end(bx, hbx);
elm_object_text_set(tg, "Map");
elm_box_pack_end(hbx, tg);
elm_object_text_set(ck, "Alpha");
elm_box_pack_end(hbx, ck);
elm_object_text_set(ck, "Smooth");
elm_box_pack_end(hbx, ck);
evas_object_resize(win, 240, 320);
return 0;
}
quit when the application's last window is closed
Definition: elm_general.h:248
void elm_object_part_text_set(Evas_Object *obj, const char *part, const char *label)
Set a text of an object.
Definition: elm_main.c:1512
EAPI Evas_Object * elm_box_add(Evas_Object *parent)
Add a new box to the parent.
Definition: elm_box.c:366
#define EINA_UNUSED
Definition: eina_types.h:321
EAPI void elm_check_state_set(Evas_Object *obj, Eina_Bool state)
Set the on/off state of the check object.
Definition: efl_ui_check.c:369
#define EINA_FALSE
Definition: eina_types.h:502
EAPI void elm_image_resizable_set(Evas_Object *obj, Eina_Bool up, Eina_Bool down)
Control if the object is (up/down) resizable.
Definition: efl_ui_image.c:2569
Eina_Bool elm_object_style_set(Evas_Object *obj, const char *style)
Set the style to used by a given widget.
Definition: elm_main.c:1610
#define EVAS_HINT_EXPAND
Use with evas_object_size_hint_weight_set(), evas_object_size_hint_weight_get(), evas_object_size_hin...
Definition: Evas_Common.h:292
void evas_object_smart_callback_add(Evas_Object *eo_obj, const char *event, Evas_Smart_Cb func, const void *data)
Add (register) a callback function to the smart event specified by event on the smart object obj.
Definition: evas_object_smart.c:980
Efl_Canvas_Object Evas_Object
Definition: Evas_Common.h:180
Evas_Object * elm_icon_add(Evas_Object *parent)
Add a new icon object to the parent.
Definition: elm_icon.c:606
void elm_run(void)
Run Elementary's main loop.
Definition: elm_main.c:1384
EAPI Evas_Object * elm_mapbuf_add(Evas_Object *parent)
Add a new mapbuf widget to the given parent Elementary (container) object.
Definition: elm_mapbuf.c:310
#define ELM_MAIN()
macro to be used after the elm_main() function
Definition: elm_general.h:528
EAPI Evas_Object * elm_table_add(Evas_Object *parent)
Add a new table to the parent.
Definition: elm_table.c:137
Evas_Object * elm_win_util_standard_add(const char *name, const char *title)
Adds a window object with standard setup.
Definition: efl_ui_win.c:9200
void evas_object_show(Evas_Object *eo_obj)
Makes the given Evas object visible.
Definition: evas_object_main.c:1853
#define EVAS_HINT_FILL
Use with evas_object_size_hint_align_set(), evas_object_size_hint_align_get(), evas_object_size_hint_...
Definition: Evas_Common.h:293
#define EINA_TRUE
Definition: eina_types.h:508
Eina_Bool elm_policy_set(unsigned int policy, int value)
Set a new policy's value (for a given policy group/identifier).
Definition: elm_main.c:1407
EAPI Evas_Object * elm_check_add(Evas_Object *parent)
Add a new Check object.
Definition: efl_ui_check.c:533
void elm_win_resize_object_add(Eo *obj, Evas_Object *subobj)
Add subobj as a resize object of window obj.
Definition: efl_ui_win.c:8900
EAPI Eina_Bool elm_check_state_get(const Evas_Object *obj)
Get the state of the check object.
Definition: efl_ui_check.c:378
void elm_win_autodel_set(Eo *obj, Eina_Bool autodel)
Set the window's autodel state.
Definition: efl_ui_win.c:6146
Eina_Bool elm_icon_standard_set(Evas_Object *obj, const char *name)
Set the icon by icon standards names.
Definition: elm_icon.c:878
under which circumstances the application should quit automatically.
Definition: elm_general.h:227