#include <Elementary.h>
static int counter = 3;
static void
{
char label[32];
snprintf(label, sizeof(label), "Item %i", counter++);
if (!list_it)
printf("Error adding item\n");
}
static void
{
char label[32];
snprintf(label, sizeof(label), "Item %i", counter++);
if (!list_it)
printf("Error adding item\n");
}
static void
{
char label[32];
snprintf(label, sizeof(label), "Item %i", counter++);
if (!list_it)
printf("Error adding item with icon\n");
}
static void
{
printf("Selected label: %s\n", elm_object_item_text_get(list_it));
}
static void
{
char label[32];
snprintf(label, sizeof(label), "Item %i", counter++);
if (!list_it)
printf("Error adding item\n");
}
static void
{
char *content = data;
printf("Selected label: %s with data: %s\n",
elm_object_item_text_get(list_it), content);
}
static void
{
free(data);
}
static void
{
char label[32];
char *content = malloc(sizeof(char) * 32);
snprintf(content, 32, "Item content %i", counter);
snprintf(label, sizeof(label), "Item %i", counter++);
if (!list_it)
{
printf("Error adding item\n");
return;
}
}
static void
{
}
static void
{
elm_list_item_selected_set(selected_item,
EINA_FALSE);
}
static void
{
printf("%s\n", elm_object_item_text_get(list_it));
}
static void
{
}
static void
{
if (!selected_item) return;
next_item = elm_list_item_next(selected_item);
if (next_item)
elm_list_item_selected_set(next_item,
EINA_TRUE);
}
static void
{
char label[32];
if (!selected_item) return;
snprintf(label, sizeof(label), "Item %i", counter++);
NULL, NULL);
if (!list_it)
printf("Error adding item\n");
}
static void
{
if (!selected_item) return;
prev_item = elm_list_item_prev(selected_item);
if (prev_item)
elm_list_item_selected_set(prev_item,
EINA_TRUE);
}
static void
{
char label[32];
if (!selected_item) return;
snprintf(label, sizeof(label), "Item %i", counter++);
NULL, NULL);
if (!list_it)
printf("Error adding item\n");
}
static void
{
if (!selected_item) return;
elm_list_item_separator_set(selected_item,
EINA_TRUE);
}
static void
{
if (!selected_item) return;
}
EAPI_MAIN int
{
elm_object_text_set(bt, "Prepend item");
elm_object_text_set(bt, "Append item");
elm_object_text_set(bt, "Append with icon");
elm_object_text_set(bt, "Append with selected function");
elm_object_text_set(bt, "Append with data");
elm_object_text_set(bt, "Delete item");
elm_object_text_set(bt, "Unselect item");
elm_object_text_set(bt, "Print items");
elm_object_text_set(bt, "Clear");
elm_object_text_set(bt, "Select next item");
elm_object_text_set(bt, "Insert after item");
elm_object_text_set(bt, "Select previous item");
elm_object_text_set(bt, "Insert before item");
elm_object_text_set(bt, "Set as separator");
elm_object_text_set(bt, "Disable item");
return 0;
}
#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:297
#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:298
#define EINA_LIST_FOREACH(list, l, _data)
Definition for the macro to iterate over a list.
Definition: eina_list.h:1415
#define EINA_TRUE
boolean value TRUE (numerical value 1)
Definition: eina_types.h:539
#define EINA_FALSE
boolean value FALSE (numerical value 0)
Definition: eina_types.h:533
#define EINA_UNUSED
Used to indicate that a function parameter is purposely unused.
Definition: eina_types.h:339
void elm_box_horizontal_set(Elm_Box *obj, Eina_Bool horizontal)
Set the horizontal orientation.
Definition: elm_box_eo.legacy.c:27
Evas_Object * elm_box_add(Evas_Object *parent)
Add a new box to the parent.
Definition: elm_box.c:363
void elm_box_pack_end(Elm_Box *obj, Efl_Canvas_Object *subobj)
Add an object at the end of the pack list.
Definition: elm_box_eo.legacy.c:57
Eo Elm_Object_Item
An Elementary Object item handle.
Definition: elm_object_item.h:6
void elm_object_item_disabled_set(Elm_Widget_Item *obj, Eina_Bool disable)
Control the disabled state of a widget item.
Definition: elm_widget_item_eo.legacy.c:111
void elm_object_item_del_cb_set(Elm_Widget_Item *obj, Evas_Smart_Cb del_cb)
Set the function to be called when an item from the widget is freed.
Definition: elm_widget_item_eo.legacy.c:231
#define ELM_MAIN()
macro to be used after the elm_main() function
Definition: elm_general.h:556
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:1380
void elm_object_item_del(Eo *obj)
Delete the given item.
Definition: elm_main.c:2017
void elm_run(void)
Run Elementary's main loop.
Definition: elm_main.c:1357
@ ELM_POLICY_QUIT_LAST_WINDOW_CLOSED
quit when the application's last window is closed
Definition: elm_general.h:248
@ ELM_POLICY_QUIT
under which circumstances the application should quit automatically.
Definition: elm_general.h:227
Eina_Bool elm_icon_standard_set(Evas_Object *obj, const char *name)
Set the icon by icon standards names.
Definition: elm_icon.c:885
Evas_Object * elm_icon_add(Evas_Object *parent)
Add a new icon object to the parent.
Definition: elm_icon.c:613
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:2656
void elm_list_go(Elm_List *obj)
Starts the list.
Definition: elm_list_eo.legacy.c:111
Elm_Widget_Item * elm_list_selected_item_get(const Elm_List *obj)
Get the selected item.
Definition: elm_list_eo.legacy.c:75
Elm_Widget_Item * elm_list_item_append(Elm_List *obj, const char *label, Efl_Canvas_Object *icon, Efl_Canvas_Object *end, Evas_Smart_Cb func, const void *data)
Append a new item to the list object.
Definition: elm_list_eo.legacy.c:129
const Eina_List * elm_list_items_get(const Elm_List *obj)
Get a list of all the list items.
Definition: elm_list_eo.legacy.c:81
Elm_Widget_Item * elm_list_item_insert_before(Elm_List *obj, Elm_Widget_Item *before, const char *label, Efl_Canvas_Object *icon, Efl_Canvas_Object *end, Evas_Smart_Cb func, const void *data)
Insert a new item into the list object before item before.
Definition: elm_list_eo.legacy.c:105
Elm_Widget_Item * elm_list_item_insert_after(Elm_List *obj, Elm_Widget_Item *after, const char *label, Efl_Canvas_Object *icon, Efl_Canvas_Object *end, Evas_Smart_Cb func, const void *data)
Insert a new item into the list object after item after.
Definition: elm_list_eo.legacy.c:117
void elm_list_clear(Elm_List *obj)
Remove all list's items.
Definition: elm_list_eo.legacy.c:141
Evas_Object * elm_list_add(Evas_Object *parent)
Add a new list widget to the given parent Elementary (container) object.
Definition: elm_list.c:2513
Elm_Widget_Item * elm_list_item_prepend(Elm_List *obj, const char *label, Efl_Canvas_Object *icon, Efl_Canvas_Object *end, Evas_Smart_Cb func, const void *data)
Prepend a new item to the list object.
Definition: elm_list_eo.legacy.c:135
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:9582
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:8997
void elm_win_autodel_set(Eo *obj, Eina_Bool autodel)
Set the window's autodel state.
Definition: efl_ui_win.c:6194
EVAS_API void evas_object_show(Evas_Object *eo_obj)
Makes the given Evas object visible.
Definition: evas_object_main.c:1814
EVAS_API void evas_object_size_hint_weight_set(Evas_Object *obj, double x, double y)
Sets the hints for an object's weight.
Definition: evas_object_main.c:2638
Efl_Canvas_Object Evas_Object
An Evas Object handle.
Definition: Evas_Common.h:185
EVAS_API void evas_object_size_hint_align_set(Evas_Object *obj, double x, double y)
Sets the hints for an object's alignment.
Definition: evas_object_main.c:2650
EVAS_API void evas_object_resize(Evas_Object *obj, Evas_Coord w, Evas_Coord h)
Changes the size of the given Evas object.
Definition: evas_object_main.c:1236
EVAS_API 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:1040
Type for a generic double linked list.
Definition: eina_list.h:318