summaryrefslogtreecommitdiff
path: root/legacy/elementary/src/examples/toolbar_example_01.c
diff options
context:
space:
mode:
Diffstat (limited to 'legacy/elementary/src/examples/toolbar_example_01.c')
-rw-r--r--legacy/elementary/src/examples/toolbar_example_01.c83
1 files changed, 83 insertions, 0 deletions
diff --git a/legacy/elementary/src/examples/toolbar_example_01.c b/legacy/elementary/src/examples/toolbar_example_01.c
new file mode 100644
index 0000000000..75499b20fd
--- /dev/null
+++ b/legacy/elementary/src/examples/toolbar_example_01.c
@@ -0,0 +1,83 @@
+/**
+ * Simple Elementary's <b>toolbar widget</b> example, illustrating its
+ * usage and API.
+ *
+ * See stdout/stderr for output. Compile with:
+ *
+ * @verbatim
+ * gcc -g toolbar_example_01.c -o toolbar_example_01 `pkg-config --cflags --libs elementary`
+ * @endverbatim
+ */
+
+#include <Elementary.h>
+
+static void
+_item_1_pressed(void *data, Evas_Object *obj, void *event_info)
+{
+ Evas_Object *bt = data;
+ elm_object_text_set(bt, "Print Document");
+}
+
+static void
+_item_2_pressed(void *data, Evas_Object *obj, void *event_info)
+{
+ Evas_Object *bt = data;
+ elm_object_text_set(bt, "Create new folder");
+}
+
+static void
+_item_3_pressed(void *data, Evas_Object *obj, void *event_info)
+{
+ /* This function won't be called because we disabled item that call it */
+ Evas_Object *bt = data;
+ elm_object_text_set(bt, "Create and send email");
+}
+
+EAPI_MAIN int
+elm_main(int argc, char **argv)
+{
+ Evas_Object *win, *bx, *tb, *bt;
+ Elm_Object_Item *tb_it;
+
+ elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);
+
+ win = elm_win_util_standard_add("toolbar", "Toolbar Example");
+ elm_win_autodel_set(win, EINA_TRUE);
+
+ bx = elm_box_add(win);
+ evas_object_size_hint_weight_set(bx, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+ elm_win_resize_object_add(win, bx);
+ evas_object_show(bx);
+
+ bt = elm_button_add(win);
+ evas_object_size_hint_weight_set(bt, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
+ evas_object_size_hint_align_set(bt, EVAS_HINT_FILL, EVAS_HINT_FILL);
+ elm_object_text_set(bt, "Button");
+ evas_object_show(bt);
+
+ tb = elm_toolbar_add(win);
+ elm_toolbar_shrink_mode_set(tb, ELM_TOOLBAR_SHRINK_SCROLL);
+ evas_object_size_hint_weight_set(tb, 0.0, 0.0);
+ evas_object_size_hint_align_set(tb, EVAS_HINT_FILL, 0.0);
+ evas_object_show(tb);
+
+ elm_toolbar_item_append(tb, "document-print", "Print", _item_1_pressed, bt);
+ elm_toolbar_item_append(tb, "folder-new", "New Folder", _item_2_pressed, bt);
+
+ tb_it = elm_toolbar_item_append(tb, "mail-send", "Create and send email",
+ _item_3_pressed, bt);
+ elm_object_item_disabled_set(tb_it, EINA_TRUE);
+
+ elm_toolbar_homogeneous_set(tb, EINA_FALSE);
+
+ elm_box_pack_end(bx, tb);
+ elm_box_pack_end(bx, bt);
+
+ evas_object_resize(win, 200, 200);
+ evas_object_show(win);
+
+ elm_run();
+
+ return 0;
+}
+ELM_MAIN()