summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicole Vreden <damba@mecka.net>2010-01-08 00:35:02 +0100
committerNicole Vreden <damba@mecka.net>2010-01-08 00:35:02 +0100
commit64a68b013f1b47059ccadbba1730995cc7b1c32d (patch)
tree90ac7c59d7c948593e8389f885c295f1451ca292
parent1360fc510616ca96e5de6ebe7c17a697a288e84e (diff)
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 <damba@mecka.net>
-rw-r--r--src/YalpClients/EflClient/yalp_gui.edc84
1 files changed, 81 insertions, 3 deletions
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;
+ }
+ }
+ }
+ }
+ }
}
+
+
+
+