tasn [Thu, 3 Nov 2011 12:37:07 +0000 (12:37 +0000)]
Edje text: Remove identical if paths, one is enough.
Thanks to David Seikel.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64689
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
discomfitor [Thu, 3 Nov 2011 06:00:28 +0000 (06:00 +0000)]
fix up docs a little
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64678
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
jaehwan [Thu, 3 Nov 2011 04:43:00 +0000 (04:43 +0000)]
Add CURRENT option which edje object moves from current position.
Currently, when the part in edc move by transition, it moves from the
one of the states to another of the states even if it is ainimating.
We need it to move from current position, because the animation is not
natural and smooth. So I made the "CURRENT" option.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64675
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
jaehwan [Wed, 2 Nov 2011 04:15:01 +0000 (04:15 +0000)]
Revert to revision 64488 in order to split the code into new feature and indentation
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64633
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
jaehwan [Mon, 31 Oct 2011 06:00:06 +0000 (06:00 +0000)]
Add CURRENT option which edje object moves from current position.
Currently, when the part in edc move by transition, it moves from the
one of the states to another of the states even if it is ainimating.
We need it to move from current position, because the animation is not
natural and smooth. So I made the "CURRENT" option.
And I removed the unnecessary tab for indentation.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64545
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
jaehwan [Fri, 28 Oct 2011 09:01:38 +0000 (09:01 +0000)]
add the documentations about edje group inherit.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64488
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
Jihoon Kim [mailto:jihoon48.kim [Thu, 27 Oct 2011 05:42:41 +0000 (05:42 +0000)]
From: Jihoon Kim [mailto:jihoon48.kim@samsung.com]
elm_entry_autocapital_type_set API is high level API to call ecore_imf_context_autocapital_type_set.
Application programmer can choose the type of autocapitalization such as
WORD, SENTENCE, ALLCHARACTER through this API.
elm_entry_input_panel_enabled_set API is for setting whether input panel
(virtual keyboard) should be appeared when entry has a focus or pressed.
It can be used by dialer or calculator application programmer because those
application prefer to use its keypad NOT virtual keyboard supported by system.
They want to use entry to show the cursor for providing the cursor handling
method but don't want to appear system keyboard.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64423
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
bdilly [Wed, 26 Oct 2011 19:49:09 +0000 (19:49 +0000)]
Edje: minor - Fix swallow part error msg
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64416
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
Jaehwan Kim [Wed, 19 Oct 2011 09:41:17 +0000 (09:41 +0000)]
From: Jaehwan Kim <jae.hwan.kim@samsung.com>
Subject: [E-devel] [Patch] change rel1.to to default when using group
inherit
When using group inherit, if rel1.to is set in parent group, we cannot change the part name
of rel1.to to default (the default is that dont have the part name) in child group.
So I changed edje_cc_out.c. After patching, we can change rel1.to to
default by using "". (ex > rel1.to: "";)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64171
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Thu, 13 Oct 2011 00:09:04 +0000 (00:09 +0000)]
oooh bad memory pointer handling as part of group inheritance (part
overriding) patches....!!!!! fix!
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@64028
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Mon, 10 Oct 2011 07:58:14 +0000 (07:58 +0000)]
and actually always apply border_scale_by directly as-is even if
border_scale is not set.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63944
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Mon, 10 Oct 2011 05:53:02 +0000 (05:53 +0000)]
add border_scale_by that adds another scaling factor for border
scaling. use it as a way of super-sampling borders (eg use 0.5 to use
2x over-sampling, 0.25 for 4x oversapling etc.)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63938
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
Mike McCormack [Mon, 10 Oct 2011 02:49:50 +0000 (02:49 +0000)]
edje: Add a --no-save option to edje_cc
Some people don't want to reveal their edc files...
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63937
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Wed, 5 Oct 2011 06:37:06 +0000 (06:37 +0000)]
edje edje_cc_handlers.c: Fixed edje_cc bugs about data.item. Patch by Jaehwan Kim <jae.hwan.kim@samsung.com>
2011/9/30 Jaehwan Kim <jae.hwan.kim@samsung.com>:
>
> I found some bugs in edje_cc_handlers.c.
>
> One is about data.item. It is saved in hash list.
> When it is saved, I freed the memory of the key.
> But the memory is used. so I deleted the free(key).
>
> Second is it is possible in
st_collections_group_parts_part_description_state.
> So I changed the location of the conditional statement.
>
> Please apply this patch :)
>
> Jaehwan Kim.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63822
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
devilhorns [Tue, 4 Oct 2011 15:17:51 +0000 (15:17 +0000)]
Edje: Stop deleting important m4 files on make maintainer-clean. These
m4's come from svn and should not be removed on a maintainer-clean.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63809
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
woohyun [Tue, 4 Oct 2011 11:40:52 +0000 (11:40 +0000)]
edje/edje_entry : When CURSOR_MODE_BEFORE, the width of cursor edje
object should be considered.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63806
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Mon, 3 Oct 2011 12:30:40 +0000 (12:30 +0000)]
Edje entry: Emit signals on range del and add info to changed,user.
Info added includes: cursor position of the action, content related to the
action, and the action that happened (added/removed).
Also fixed tab insertion to delete the current selection.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63773
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Mon, 3 Oct 2011 12:30:37 +0000 (12:30 +0000)]
Edje entry: Do the cheaper if first.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63772
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Mon, 3 Oct 2011 12:30:32 +0000 (12:30 +0000)]
Edje signals: Add the ability to provide extra data for signals.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63771
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
woohyun [Mon, 3 Oct 2011 08:02:07 +0000 (08:02 +0000)]
edje/edje_entry : fixed small bugs and warnings
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63766
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
billiob [Sun, 2 Oct 2011 21:10:15 +0000 (21:10 +0000)]
edje: update ChangeLog
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63754
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
billiob [Sun, 2 Oct 2011 21:07:54 +0000 (21:07 +0000)]
edje: description.max can be -1
also add myself to AUTHORS
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63753
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Fri, 30 Sep 2011 00:37:44 +0000 (00:37 +0000)]
edje edje_cc_handlers.c: Fixed indentation and error message.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63693
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
Jihoon Kim [Thu, 29 Sep 2011 09:02:31 +0000 (09:02 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] update cursor location when the position of
entry is changed
The cursor location information should be transferred when the position of
entry is changed.
For example, an entry can be moved by comformant, rotate event.
The transferred cursor location is used for letting candidate word window
move the appropriate position.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63660
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Thu, 29 Sep 2011 01:29:21 +0000 (01:29 +0000)]
edje: add group inheritance.
Patch by Jaehwan Kim <jae.hwan.kim@samsung.com>
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63648
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Tue, 27 Sep 2011 06:16:34 +0000 (06:16 +0000)]
edje: refactor code.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63620
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
devilhorns [Thu, 22 Sep 2011 07:19:50 +0000 (07:19 +0000)]
Edje: if _edje_fetch fails and we are returning from here, then no need to
fetch evas_object_evas_get. Use eina_stringshare_replace rather than
del & add. Fix a little formatting.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63533
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
caro [Wed, 14 Sep 2011 19:02:07 +0000 (19:02 +0000)]
add tests and coverage support
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63394
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
discomfitor [Sat, 10 Sep 2011 23:56:50 +0000 (23:56 +0000)]
you lied to me, cnp!
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63320
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
discomfitor [Sat, 10 Sep 2011 20:39:24 +0000 (20:39 +0000)]
null check for color_class_list
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63319
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Thu, 8 Sep 2011 04:58:00 +0000 (04:58 +0000)]
edje - reverted embryo debug prints.
they can be used to get outside of the managable control.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63281
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
hermet [Wed, 7 Sep 2011 20:43:40 +0000 (20:43 +0000)]
edje - added print_int print_float print_str funcs for debugging in embryo script
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63275
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
kakaroto [Wed, 7 Sep 2011 06:58:48 +0000 (06:58 +0000)]
Edje: Use ecore_file_symlink rather than symlink
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63256
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Mon, 5 Sep 2011 12:07:31 +0000 (12:07 +0000)]
Revert "Edje entry: Start using the new tb_range_formats_get."
This reverts commit 62260
Unfortunately the textblock function doesn't work as well as expected.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63192
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Tue, 30 Aug 2011 15:21:44 +0000 (15:21 +0000)]
edje: less useless call to eina_stringshare_add/del.
NOTE: edje is getting slow this day, please be carefull
when you add code to make it clean and fast. We soon
will require to go after some of this issue. Need to see
why application doing nothing are using 7% of my CPU
(mostly in edje).
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62993
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Thu, 25 Aug 2011 08:55:16 +0000 (08:55 +0000)]
chglog++
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62791
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Thu, 25 Aug 2011 08:54:12 +0000 (08:54 +0000)]
typo--
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62790
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
Jihoon Kim [Thu, 25 Aug 2011 07:25:37 +0000 (07:25 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] add elm_entry_input_panel_layout_set API
elm_entry_input_panel_layout_set API is high level API to call
ecore_imf_context_input_panel_layout_set (through edje).
This API will be used to set layout of input panel (such as URL, Email,
Number layout...) by application programmer.
Would you please review this patch?
Please let me know if I have to do more.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62782
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
glima [Wed, 24 Aug 2011 16:31:11 +0000 (16:31 +0000)]
[edje] Putting edc examples in src/examples dir, so that
docs find them as well.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62754
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Tue, 23 Aug 2011 16:44:36 +0000 (16:44 +0000)]
edje edje_calc.c: Removed warnings.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62729
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Mon, 22 Aug 2011 21:44:49 +0000 (21:44 +0000)]
edje: add collection.group.limits.vertical and collection.group.limits.horizontal.
The goal is to provide an easy way to do the kind of effect you see in that video
around 00:36 : http://www.youtube.com/watch?v=KVoVLHh8CHc.
At that time it was really difficult to do such thing and required a lot of
embryo code, we designed limit with Billiob to be able to do such kind of things
much more easily.
NOTE: so Billiob, now nothing stop you from releasing amsn2 ! ;-)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62701
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
barbieri [Sun, 21 Aug 2011 01:38:17 +0000 (01:38 +0000)]
change text's single recalc to use apply version.
Original _edje_part_recalc_single_text() was not working as
expected since it was not doing size fit, range, ellipsis and so
on.
The purpose of this function compared with
_edje_text_recalc_apply() is to be faster, not calling Evas update
functions. However for text this is quite difficult given that to
fit we need to set the font, size, style, etc. If it was done
correctly, we'd save some calls to move and some color sets,
however those shouldn't matter much in the overall picture.
I've changed this to force applying the value, it should be more
correct and not so slow. The previous code is kept below for
reference but should be removed before next release!
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62640
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
barbieri [Sat, 20 Aug 2011 23:47:46 +0000 (23:47 +0000)]
Just cut/ellipsis if text.min.x is not set.
This should fix the bug with the following code:
collections {
group { name: "main";
parts {
part { name: "text";
type: TEXT;
description { state: "default" 0.0;
text {
font: "Sans";
size: 72;
text: "contents";
fit: 0 1;
min: 1 0;
}
}
}
}
}
}
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62639
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
barbieri [Sat, 20 Aug 2011 14:49:21 +0000 (14:49 +0000)]
minor corner case fix for extents without some of the return parameters.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62633
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Sat, 20 Aug 2011 13:03:01 +0000 (13:03 +0000)]
and when doing proxy.. lets calc the right proxy id part shall we?
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62630
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Sat, 20 Aug 2011 07:27:52 +0000 (07:27 +0000)]
fix: if proxy id < 0 (invalid) disable proxy...!!! (yes i know -
backport. leaving for 1.1)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62623
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
antognolli [Fri, 19 Aug 2011 13:36:16 +0000 (13:36 +0000)]
Edje: Make links work on PDF documentation.
By: "Jonas M. Gastal" <jgastal@profusion.mobi>
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62588
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Thu, 18 Aug 2011 11:41:04 +0000 (11:41 +0000)]
Edje: Fixed a couple of compilation warnings.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62566
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
englebass [Thu, 18 Aug 2011 10:59:34 +0000 (10:59 +0000)]
edje: Fix shadow warnings
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62563
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Mon, 15 Aug 2011 14:05:18 +0000 (14:05 +0000)]
Edje entry: Fixed a markup_prepend that should have been a text_prepend.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62484
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Sun, 14 Aug 2011 21:55:31 +0000 (21:55 +0000)]
edje: fix cache and proxy.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62464
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Sun, 14 Aug 2011 16:12:13 +0000 (16:12 +0000)]
edje: at least advertise the fact that we do have PROXY part.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62447
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
sachiel [Sat, 13 Aug 2011 00:30:12 +0000 (00:30 +0000)]
Forward messages to Edje defined children of box and table
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62418
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
billiob [Fri, 12 Aug 2011 12:39:17 +0000 (12:39 +0000)]
edje/epp: cpp line control command is #line
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62381
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Tue, 9 Aug 2011 13:58:00 +0000 (13:58 +0000)]
Edje entry: Start using the new tb_range_formats_get.
This should make everything faster cause we now only get/work on the
visible anchors/items.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62260
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Mon, 8 Aug 2011 11:43:13 +0000 (11:43 +0000)]
remvoe todo's from doc
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62204
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Mon, 8 Aug 2011 11:40:27 +0000 (11:40 +0000)]
and more doc clean for edje.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62203
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Mon, 8 Aug 2011 10:50:27 +0000 (10:50 +0000)]
remove some legacy bits of docs, fix spelling
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62198
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
antognolli [Fri, 5 Aug 2011 19:53:10 +0000 (19:53 +0000)]
edje/perspective - Add an example using the perspective global setting.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62150
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
antognolli [Fri, 5 Aug 2011 19:03:38 +0000 (19:03 +0000)]
edje/perspective - Add docs to the relative functions.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62147
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
antognolli [Fri, 5 Aug 2011 18:08:07 +0000 (18:08 +0000)]
edje/perspective - Actually use the global perspective.
The Edje object should use the global perspective if it didn't have its
own perspective set.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62146
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
sachiel [Fri, 5 Aug 2011 17:13:38 +0000 (17:13 +0000)]
Inherit parts used by map too
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62145
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Fri, 5 Aug 2011 16:08:07 +0000 (16:08 +0000)]
Edje: Changing the screenshots from table and color class
examples.
By: Flavio Ceolin <flavio.ceolin@profusion.mobi>
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62142
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Fri, 5 Aug 2011 14:25:33 +0000 (14:25 +0000)]
Edje: fixing images on pdf.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62137
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Fri, 5 Aug 2011 13:52:14 +0000 (13:52 +0000)]
Edje: Documenting the Edje animations functions.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62136
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
cedric [Thu, 4 Aug 2011 09:25:52 +0000 (09:25 +0000)]
edje: small error detection improvement.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62086
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
antognolli [Wed, 3 Aug 2011 21:37:42 +0000 (21:37 +0000)]
edje/dragable - Setting size of knob with the API.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62077
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
antognolli [Wed, 3 Aug 2011 21:11:30 +0000 (21:11 +0000)]
edje/dragable - Docs and example for dragable parts API.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62076
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Wed, 3 Aug 2011 21:02:53 +0000 (21:02 +0000)]
Edje: copy images for latex so we can make pdf docs.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62072
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Wed, 3 Aug 2011 21:01:03 +0000 (21:01 +0000)]
Edje: removing author list from main page.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62071
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
sachiel [Wed, 3 Aug 2011 18:57:38 +0000 (18:57 +0000)]
Edje: Color class documentation
By: ceolin <flavio.ceolin@profusion.mobi>
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62065
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
sachiel [Wed, 3 Aug 2011 18:46:40 +0000 (18:46 +0000)]
Some more docs for the edje_external c api
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62064
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Wed, 3 Aug 2011 08:56:59 +0000 (08:56 +0000)]
Edje entry: Fixed changed/changed,user with backspace.
It used to send the signals even when we didn't change anything (i.e tried
to delete at the start of the entry). Now it's ok.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62044
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Wed, 3 Aug 2011 08:56:54 +0000 (08:56 +0000)]
Edje entry: Added entry,changed,user signal.
This signal means that the user changed entry, i.e by key insert, paste
or anything alike.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62043
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
Jihoon Kim [Wed, 3 Aug 2011 05:36:01 +0000 (05:36 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: RE: [E-devel] [PATCH] notify immodule to know the cursor
location
In the current edje_entry, there are some bugs related to sequence and miss
to call '_edje_entry_imf_cursor_info_set()'.
Cursor geometry information should be transferred after
ecore_imf_context_focus_in API is called.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62039
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
antognolli [Tue, 2 Aug 2011 19:41:43 +0000 (19:41 +0000)]
Fixing a problem with edje_object_color_class_del.
The color class was removed from the list but the edje object
was not updated neither the signal was emmited.
Patch by: Flavio Ceolin <flavio.ceolin@profusion.mobi>
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62019
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
antognolli [Tue, 2 Aug 2011 17:14:29 +0000 (17:14 +0000)]
edje/box - Document edje box API (just fixes) and add example.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62017
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
sachiel [Tue, 2 Aug 2011 14:49:59 +0000 (14:49 +0000)]
Fix DSO issues building examples. And Ecore-Evas is a dependency of Edje now, no need to check for it again.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62001
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Tue, 2 Aug 2011 13:31:27 +0000 (13:31 +0000)]
Edje: fixing signal examples listen to.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61997
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Tue, 2 Aug 2011 07:23:58 +0000 (07:23 +0000)]
chlog++
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61985
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Tue, 2 Aug 2011 07:23:05 +0000 (07:23 +0000)]
fix edje_shutdown being calle3d before all edje object are deleted -
keep edje internal data around until all refs to edje are gone from
objects, then shtudown the core.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61984
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
raster [Tue, 2 Aug 2011 04:13:33 +0000 (04:13 +0000)]
that's it - remove autom4te.cache dirs again... - keep having to many
problems about it storing invalid config when the same build trees are
shared between multiple architectures and machines. :( better we
build right than build fast.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61974
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
glima [Mon, 1 Aug 2011 20:15:23 +0000 (20:15 +0000)]
[edje] Documentation for the following:
- edje_object_message_handler_set
- edje_object_message_send
- edje_object_signal_callback_add
- edje_object_signal_callback_del_full
- edje_object_signal_emit
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61966
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
glima [Mon, 1 Aug 2011 20:04:17 +0000 (20:04 +0000)]
Edje: edje table documentation.
By: ceolin <flavio.ceolin@profusion.mobi>
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61965
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Mon, 1 Aug 2011 19:49:28 +0000 (19:49 +0000)]
Edje: fix edje swallow doc.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61964
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Mon, 1 Aug 2011 19:49:18 +0000 (19:49 +0000)]
Edje: edje text parts documentation.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61963
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Mon, 1 Aug 2011 19:49:06 +0000 (19:49 +0000)]
Edje: fixing link to examples.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61962
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Mon, 1 Aug 2011 05:06:49 +0000 (05:06 +0000)]
edje edje_cc_handlers.c: Fixed documentation.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61932
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
rui [Sun, 31 Jul 2011 15:08:05 +0000 (15:08 +0000)]
Fix build (and rpmbuild) of evas now it installs some examples.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61927
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
gastal [Fri, 29 Jul 2011 16:47:06 +0000 (16:47 +0000)]
Edje: edje swallow documentation.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61905
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
glima [Fri, 29 Jul 2011 16:45:49 +0000 (16:45 +0000)]
Damn.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61904
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
glima [Fri, 29 Jul 2011 16:31:05 +0000 (16:31 +0000)]
[edje] First commented example, along with infra to build it.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61903
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
glima [Fri, 29 Jul 2011 16:30:12 +0000 (16:30 +0000)]
[edje] Documentation bumps on the following:
- edje_init
- edje_shutdown
- edje_object_add
- edje_object_file_get
- edje_object_file_set
- edje_object_load_error_get
- edje_load_error_str
- edje_object_data_get
- edje_object_part_exists
- edje_object_part_geometry_get
- edje_object_part_object_get
- edje_object_size_max_get
- edje_object_size_min_calc
- edje_object_size_min_get
- edje_object_size_min_restricted_calc
- edje_object_parts_extends_calc
- edje_object_scale_get
- edje_object_scale_set
- edje_scale_get
- edje_scale_set
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61902
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
Jihoon Kim [Fri, 29 Jul 2011 11:48:56 +0000 (11:48 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] check NULL parameter in edje entry
This simple patch is for checking NULL parameter in the callback
functions
related to input method framework.
I think it is necessary for safety.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61890
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
Jihoon Kim [Fri, 29 Jul 2011 05:56:09 +0000 (05:56 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] notify immodule to know the cursor location
In immodule, the cursor location is needed to move the word candidate window.
In this patch, calling ecore_imf_context_cursor_location_set lets immodule
know the cursor location.
Also fixed patch conflicts and 1 warning related to IMF.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61877
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
Jihoon Kim [Tue, 26 Jul 2011 12:04:27 +0000 (12:04 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: Re: [E-devel] [Patch] Add XIM module for ecore_imf
Patch to set the right window ID for IMF access from Edje
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61756
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
seoz [Tue, 26 Jul 2011 10:09:16 +0000 (10:09 +0000)]
edje Edje.h: Fixed documentation.
Fixed wrong placed documentations. Removed some blank lines and added
@brief tag. Many @brief tags are still missing.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61737
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
tasn [Mon, 25 Jul 2011 08:26:03 +0000 (08:26 +0000)]
Edje docs: Updated the 'tag' part of the Edc reference.
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61671
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
discomfitor [Sun, 24 Jul 2011 21:49:49 +0000 (21:49 +0000)]
update svn:ignores
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61659
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
discomfitor [Sun, 24 Jul 2011 21:32:54 +0000 (21:32 +0000)]
my triumphant return to AUTHORS
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61658
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33