profile/ivi/edje.git
12 years agoRevert "Edje entry: Start using the new tb_range_formats_get."
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

12 years agoedje: less useless call to eina_stringshare_add/del.
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

12 years agochglog++
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

12 years agotypo--
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

12 years agoFrom: Jihoon Kim <jihoon48.kim@samsung.com>
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

12 years ago[edje] Putting edc examples in src/examples dir, so that
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

12 years agoedje edje_calc.c: Removed warnings.
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

12 years agoedje: add collection.group.limits.vertical and collection.group.limits.horizontal.
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

12 years agochange text's single recalc to use apply version.
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

12 years agoJust cut/ellipsis if text.min.x is not set.
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

12 years agominor corner case fix for extents without some of the return parameters.
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

12 years agoand when doing proxy.. lets calc the right proxy id part shall we?
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

12 years agofix: if proxy id < 0 (invalid) disable proxy...!!! (yes i know -
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

12 years agoEdje: Make links work on PDF documentation.
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

12 years agoEdje: Fixed a couple of compilation warnings.
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

12 years agoedje: Fix shadow warnings
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

12 years agoEdje entry: Fixed a markup_prepend that should have been a text_prepend.
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

12 years agoedje: fix cache and proxy.
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

12 years agoedje: at least advertise the fact that we do have PROXY part.
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

12 years agoForward messages to Edje defined children of box and table
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

12 years agoedje/epp: cpp line control command is #line
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

12 years agoEdje entry: Start using the new tb_range_formats_get.
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

12 years agoremvoe todo's from doc
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

12 years agoand more doc clean for edje.
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

12 years agoremove some legacy bits of docs, fix spelling
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

12 years agoedje/perspective - Add an example using the perspective global setting.
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

12 years agoedje/perspective - Add docs to the relative functions.
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

12 years agoedje/perspective - Actually use the global perspective.
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

12 years agoInherit parts used by map too
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

12 years agoEdje: Changing the screenshots from table and color class
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

12 years agoEdje: fixing images on pdf.
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

12 years agoEdje: Documenting the Edje animations functions.
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

13 years agoedje: small error detection improvement.
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

13 years agoedje/dragable - Setting size of knob with the API.
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

13 years agoedje/dragable - Docs and example for dragable parts API.
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

13 years agoEdje: copy images for latex so we can make pdf docs.
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

13 years agoEdje: removing author list from main page.
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

13 years agoEdje: Color class documentation
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

13 years agoSome more docs for the edje_external c api
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

13 years agoEdje entry: Fixed changed/changed,user with backspace.
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

13 years agoEdje entry: Added entry,changed,user signal.
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

13 years agoFrom: Jihoon Kim <jihoon48.kim@samsung.com>
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

13 years agoFixing a problem with edje_object_color_class_del.
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

13 years agoedje/box - Document edje box API (just fixes) and add example.
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

13 years agoFix DSO issues building examples. And Ecore-Evas is a dependency of Edje now, no...
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

13 years agoEdje: fixing signal examples listen to.
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

13 years agochlog++
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

13 years agofix edje_shutdown being calle3d before all edje object are deleted -
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

13 years agothat's it - remove autom4te.cache dirs again... - keep having to many
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

13 years ago[edje] Documentation for the following:
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

13 years agoEdje: edje table documentation.
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

13 years agoEdje: fix edje swallow doc.
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

13 years agoEdje: edje text parts documentation.
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

13 years agoEdje: fixing link to examples.
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

13 years agoedje edje_cc_handlers.c: Fixed documentation.
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

13 years agoFix build (and rpmbuild) of evas now it installs some examples.
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

13 years agoEdje: edje swallow documentation.
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

13 years agoDamn.
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

13 years ago[edje] First commented example, along with infra to build it.
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

13 years ago[edje] Documentation bumps on the following:
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

13 years agoFrom: Jihoon Kim <jihoon48.kim@samsung.com>
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

13 years agoFrom: Jihoon Kim <jihoon48.kim@samsung.com>
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

13 years agoFrom: Jihoon Kim <jihoon48.kim@samsung.com>
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

13 years agoedje Edje.h: Fixed documentation.
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

13 years agoEdje docs: Updated the 'tag' part of the Edc reference.
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

13 years agoupdate svn:ignores
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

13 years agomy triumphant return to AUTHORS
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

13 years agopopulate edje.dox.in from edje.dox (was this intentionally empty?), update from AUTHORS
discomfitor [Sun, 24 Jul 2011 21:32:35 +0000 (21:32 +0000)]
populate edje.dox.in from edje.dox (was this intentionally empty?), update from AUTHORS

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61657 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agomiddle mouse click now changes cursor location, fixes primary selection paste locatio...
discomfitor [Sun, 24 Jul 2011 21:25:27 +0000 (21:25 +0000)]
middle mouse click now changes cursor location, fixes primary selection paste location bugs

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61656 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoadded entry,selection,none,request to spite tasn
discomfitor [Sun, 24 Jul 2011 08:36:27 +0000 (08:36 +0000)]
added entry,selection,none,request to spite tasn

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61636 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agorenamed to entry,selection,all,request because tasn won't shut up
discomfitor [Sun, 24 Jul 2011 08:05:45 +0000 (08:05 +0000)]
renamed to entry,selection,all,request because tasn won't shut up

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61633 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years ago+entry,selection,request signal
discomfitor [Sun, 24 Jul 2011 07:59:47 +0000 (07:59 +0000)]
+entry,selection,request signal

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61632 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoadd entry,paste,request,1 and entry,paste,request,3 for different types of pasting
discomfitor [Sun, 24 Jul 2011 07:47:17 +0000 (07:47 +0000)]
add entry,paste,request,1 and entry,paste,request,3 for different types of pasting

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61631 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoEdje: Add UNUSED where needed on the edje_entry obj.
devilhorns [Sat, 23 Jul 2011 23:00:14 +0000 (23:00 +0000)]
Edje: Add UNUSED where needed on the edje_entry obj.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61621 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoEdje text: Fixed a bug with text ellipsis being off by 1.
tasn [Tue, 19 Jul 2011 11:21:35 +0000 (11:21 +0000)]
Edje text: Fixed a bug with text ellipsis being off by 1.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61500 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoEdje entry: Emit signals for undo/redo.
tasn [Tue, 19 Jul 2011 08:08:16 +0000 (08:08 +0000)]
Edje entry: Emit signals for undo/redo.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61493 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoEdje entry: Removed redundant func call and 2 comments.
tasn [Mon, 18 Jul 2011 15:25:03 +0000 (15:25 +0000)]
Edje entry: Removed redundant func call and 2 comments.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61481 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoEdje entry: Removed a hack that's not needed anymore.
tasn [Wed, 13 Jul 2011 15:45:50 +0000 (15:45 +0000)]
Edje entry: Removed a hack that's not needed anymore.

This is thanks to a bug fix in textblock.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61346 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje/ecore/eina: Updated documentaton for version number.
seoz [Thu, 7 Jul 2011 04:58:34 +0000 (04:58 +0000)]
edje/ecore/eina: Updated documentaton for version number.

I did this manually. But it'll be good if someone can automate this.
It's a painful for busy developers.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@61104 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje : Password's last char show feature supported. This patch is made
woohyun [Thu, 30 Jun 2011 05:31:08 +0000 (05:31 +0000)]
edje : Password's last char show feature supported. This patch is made
by Shilpa.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60858 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoEdje entry: Differentiate between entry,changed and preedit,changed.
tasn [Fri, 24 Jun 2011 08:43:38 +0000 (08:43 +0000)]
Edje entry: Differentiate between entry,changed and preedit,changed.

Patch by Jihoon Kim.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60658 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje: refactor text_class and color_class code.
cedric [Thu, 23 Jun 2011 09:55:57 +0000 (09:55 +0000)]
edje: refactor text_class and color_class code.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60627 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoAssorted build and spec fixes.
mej [Thu, 23 Jun 2011 07:01:45 +0000 (07:01 +0000)]
Assorted build and spec fixes.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60624 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje: give more info when needed.
cedric [Wed, 22 Jun 2011 15:59:15 +0000 (15:59 +0000)]
edje: give more info when needed.

Typicall case being with elementary not taking theme
into account due to misspelling.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60599 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje: fix huge memory leak.
cedric [Wed, 22 Jun 2011 14:51:53 +0000 (14:51 +0000)]
edje: fix huge memory leak.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60593 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoFrom: Vincent Torri <vtorri@univ-evry.fr>
Vincent Torri [Wed, 22 Jun 2011 13:50:59 +0000 (13:50 +0000)]
From: Vincent Torri <vtorri@univ-evry.fr>
To: enlightenment-devel@lists.sourceforge.net
Subject: Re: [E-devel] E SVN: raster trunk/edje/src/lib
Date: Wed, 22 Jun 2011 15:32:41 +0200 (CEST)

On Wed, 22 Jun 2011, Enlightenment SVN wrote:

 [...]

i would have prefered a beautiful colored spank message with ERR

Vincent

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60591 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agofor the french.
raster [Wed, 22 Jun 2011 13:28:43 +0000 (13:28 +0000)]
for the french.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60590 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje: remove debug printf.
cedric [Wed, 22 Jun 2011 11:05:02 +0000 (11:05 +0000)]
edje: remove debug printf.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60587 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje: don't forget to del text_class when destroying object.
cedric [Wed, 22 Jun 2011 09:47:16 +0000 (09:47 +0000)]
edje: don't forget to del text_class when destroying object.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60585 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje: forgotten dup.
cedric [Tue, 21 Jun 2011 15:49:08 +0000 (15:49 +0000)]
edje: forgotten dup.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60554 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje: remove warning.
cedric [Tue, 21 Jun 2011 14:31:37 +0000 (14:31 +0000)]
edje: remove warning.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60553 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje: make it possible to define part.description.max on only one axis.
cedric [Tue, 21 Jun 2011 10:41:20 +0000 (10:41 +0000)]
edje: make it possible to define part.description.max on only one axis.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60546 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoEdje: fix invalid read on edje embryo get_part_id
bdilly [Mon, 20 Jun 2011 21:59:31 +0000 (21:59 +0000)]
Edje: fix invalid read on edje embryo get_part_id

It was expecting for a null terminator. But that wasn't the
case. Using parts_count instead.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60537 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoepp : use binary mode for (f)open()
caro [Fri, 17 Jun 2011 21:42:27 +0000 (21:42 +0000)]
epp : use binary mode for (f)open()

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60463 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoUpdate .gitignore files
mike_m [Fri, 17 Jun 2011 01:59:49 +0000 (01:59 +0000)]
Update .gitignore files

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60416 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoSince the SVN revision is now included in %{version}, it's redundant
mej [Thu, 16 Jun 2011 20:36:43 +0000 (20:36 +0000)]
Since the SVN revision is now included in %{version}, it's redundant
to have it in %{release} also.  So let's just tag the package as ours
and try to make sure it doesn't interfere with vendor releases.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60407 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoFrom: Ulrich Eckhardt <doomster@knuut.de>
Ulrich Eckhardt [Wed, 15 Jun 2011 09:38:08 +0000 (09:38 +0000)]
From: Ulrich Eckhardt <doomster@knuut.de>
Subject: [E-devel] Provide sensible errors for edje utilities

If you start edje_player or edje_inspector with a path to a file that doesn't
exist you get a bogus error message saying that the file doesn't contain any
groups. The attached patch uses access() to check if the program can read the
file, giving a sensible error message if not.

I have checked the other utilities there, too, and they work, with the
exception of edje_external_inspector. I'm not sure how this one works at all,
but it seems not to take a file but a list of modules, maybe someone with
greater insight can take a look at that.

Going through things installed under bin, I'll take a look if those behave
properly and create patches for those, too, if this one is okay.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60338 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoFrom: Vincent Torri <vtorri@univ-evry.fr>
Vincent Torri [Tue, 14 Jun 2011 07:02:14 +0000 (07:02 +0000)]
From: Vincent Torri <vtorri@univ-evry.fr>
Subject: [E-devel] Edje: using fdopen instead of fopen in edje_cc

On windows, using open() followed by fopen() does not work. Hence, in
edje_cc, where mkstemp (which uses open) is followed by fopen, edje_cc
fails.

Instead of fopen, we can use fdopen. I pasted a  patch below. Can you
comment it (like, instead of keeping the filename in the function that
i  modified, why not using it for the fd?

(changes - closefd) removed from data_write_scripts() as fclose()
handles that)

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60299 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoedje: fix doc build when srcdir != builddir.
antognolli [Mon, 13 Jun 2011 17:53:28 +0000 (17:53 +0000)]
edje: fix doc build when srcdir != builddir.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60289 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

13 years agoRevert "Edje min_restricted_calc: Fixed min height calculation for textblock."
tasn [Mon, 13 Jun 2011 09:31:58 +0000 (09:31 +0000)]
Revert "Edje min_restricted_calc: Fixed min height calculation for textblock."

This reverts commit 60239

I guess the world is not ready for correct min height calculation, too
many things depend on the current behavior. Will re-apply sometime in
the future.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60264 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33