aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/elementary/doc/widgets/widget_preview_ctxpopup.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 17:29:19 +1000
committerDavid Walter Seikel2013-01-13 17:29:19 +1000
commit07274513e984f0b5544586c74508ccd16e7dcafa (patch)
treeb32ff2a9136fbc1a4a6a0ed1e4d79cde0f5f16d9 /libraries/elementary/doc/widgets/widget_preview_ctxpopup.c
parentAdded Irrlicht 1.8, but without all the Windows binaries. (diff)
downloadSledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.zip
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.gz
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.bz2
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.xz
Remove EFL, since it's been released now.
Diffstat (limited to 'libraries/elementary/doc/widgets/widget_preview_ctxpopup.c')
-rw-r--r--libraries/elementary/doc/widgets/widget_preview_ctxpopup.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/libraries/elementary/doc/widgets/widget_preview_ctxpopup.c b/libraries/elementary/doc/widgets/widget_preview_ctxpopup.c
deleted file mode 100644
index e8492f8..0000000
--- a/libraries/elementary/doc/widgets/widget_preview_ctxpopup.c
+++ /dev/null
@@ -1,29 +0,0 @@
1#include "widget_preview_tmpl_head.c"
2
3Evas_Object *o = evas_object_rectangle_add(evas_object_evas_get(win));
4evas_object_resize(o, 200, 130);
5evas_object_show(o);
6
7Evas_Object *ctxpopup = elm_ctxpopup_add(o);
8
9Evas_Object *ic = elm_icon_add(ctxpopup);
10elm_icon_standard_set(ic, "home");
11elm_icon_resizable_set(ic, EINA_FALSE, EINA_FALSE);
12elm_ctxpopup_item_append(ctxpopup, "Go to home folder", ic, NULL, NULL);
13
14ic = elm_icon_add(ctxpopup);
15elm_icon_standard_set(ic, "delete");
16elm_icon_resizable_set(ic, EINA_FALSE, EINA_FALSE);
17elm_ctxpopup_item_append(ctxpopup, "Delete file", ic, NULL, NULL);
18
19ic = elm_icon_add(ctxpopup);
20elm_icon_standard_set(ic, "folder");
21elm_icon_resizable_set(ic, EINA_FALSE, EINA_FALSE);
22Elm_Object_Item *it = elm_ctxpopup_item_append(ctxpopup, "Navigate to folder", ic, NULL, NULL);
23elm_object_item_disabled_set(it, EINA_TRUE);
24
25evas_object_size_hint_weight_set(ctxpopup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
26evas_object_move(ctxpopup, 0, 0);
27evas_object_show(ctxpopup);
28
29#include "widget_preview_tmpl_foot.c"