From 64a68b013f1b47059ccadbba1730995cc7b1c32d Mon Sep 17 00:00:00 2001 From: Nicole Vreden Date: Fri, 8 Jan 2010 00:35:02 +0100 Subject: Python-EFL-GUI: added textfield - added editable textblock in searchframe - textfield is not displayed in GUI, something doesn't work Signed-off-by: Nicole Vreden --- src/YalpClients/EflClient/yalp_gui.edc | 84 ++++++++++++++++++++++++++++++++-- 1 file changed, 81 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/YalpClients/EflClient/yalp_gui.edc b/src/YalpClients/EflClient/yalp_gui.edc index 84631db..59d402f 100644 --- a/src/YalpClients/EflClient/yalp_gui.edc +++ b/src/YalpClients/EflClient/yalp_gui.edc @@ -254,12 +254,12 @@ collections rel1 { - relative: 0.8 0.05; + relative: 0.8 0.07; offset: 0 0; } rel2 { - relative: 0.95 0.15; + relative: 0.95 0.13; offset: -1 -1; } } @@ -353,8 +353,47 @@ collections } } } - } + part + { + name: "searcharea"; + type: BOX; + mouse_events: 0; + description + { + state: "default" 0.0; + visible: 1; + align: 0.0 0.0; + color: 255 255 255 50; + rel1 + { + relative: 0.15 0.07; + } + rel2 + { + relative: 0.65 0.13; + } + box + { + layout: "vertical"; + padding: 0 2; + align: 0.5 0.5; + } + } + box + { + items + { + item + { + type: GROUP; + min: 100 100; + source: "text_group"; + } + } + } + } + } programs { program @@ -375,5 +414,44 @@ collections } } } + + group + { + name: "text_group"; + parts + { + part + { + name: "searchfield"; + type: TEXTBLOCK; + mouse_events: 0; + entry_mode: EDITABLE; + description + { + state: "default" 0.0; + visible: 1; + align: 0.1 0.1; + text + { + text: "Huhu"; + style: "style"; + min: 0 1; + } + rel1 + { + relative: 0.15 0.07; + } + rel2 + { + relative: 0.65 0.13; + } + } + } + } + } } + + + + -- cgit v1.2.3