Commit Graph

14668 Commits

Author SHA1 Message Date
Tom Hacohen e611c58b37 Evas: Updated changelog.
SVN revision: 61844
2011-07-28 09:18:59 +00:00
Tom Hacohen 5fd7c82d5f Evas textblock: Format tags now support quoting values.
For example: "<font='Sans:style=Bold Oblique'>bla</font>".

SVN revision: 61843
2011-07-28 09:18:55 +00:00
Tom Hacohen bb87f260a6 Evas textblock: Removed useless alloca.
SVN revision: 61842
2011-07-28 09:18:50 +00:00
Carsten Haitzler 00047ce6c6 fix cleaning up tmpf (new feature in 1.1 anyway) for memfile load in
some other situations like setting image data/colorspace etc.



SVN revision: 61836
2011-07-28 05:28:32 +00:00
Tom Hacohen d0d6d5494b Evas textblock: Fixed a bug with format invalidation.
With the following example text: "aa<b>a <i>bbb</i> ccc", adding a </b>
at the end wouldn't cause an invalidation to happen as expected.

SVN revision: 61805
2011-07-27 11:27:25 +00:00
Christopher Michael ca78a5dc81 Ecore: Add back in x11-xcb pkgconfig check. Needs for 11.04 apparently.
SVN revision: 61804
2011-07-27 11:13:58 +00:00
Tom Hacohen 0b7030a964 Evas textblock: Fix format_append's format parsing.
It took the pre-translated (tags) format which caused some things not to
work correctly when using tags.

SVN revision: 61798
2011-07-27 08:27:04 +00:00
Christopher Michael 3ffddafeed Ecore: Fix configure.ac for dumb systems that cannot find pixman
without being explicitly told where it is.



SVN revision: 61797
2011-07-27 07:40:55 +00:00
Christopher Michael a71c7d1f68 Ecore_X: For some very odd reason, certain *buntu systems will not
build our ecore_xcb without having pixman_clags & libs as separate
variables here...works on every other system I've tried, but eh it's
*buntu .. their stupid :P



SVN revision: 61796
2011-07-27 07:40:19 +00:00
Christopher Michael c3730e9748 Ecore_X: Remove recent xcb resource code (we're going to go a
different path with this) ;) Reorder init/shutdown procedures to match
order (first in, last out).



SVN revision: 61788
2011-07-27 05:10:28 +00:00
Mike McCormack 6f8f583abf ecore: Reduce rendering latency in g_main_loop
After a lot of hair pulling, and other debugging, it appears
that to make animation smooth on an embedded device, the
following things should happen in (quick) sequence:

1. update the loop time
2. call timers (which animates and updates the scene graph)
3. call idle enterers (which renders to the display)
4. call fd buf handlers (which flushes xlib stuff)

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61784
2011-07-27 03:13:47 +00:00
Mike McCormack 1fe297b463 ecore: Check timers when not idling also
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61782
2011-07-27 02:34:53 +00:00
Mike Blumenkrantz f614bbaad7 __UNUSED__
SVN revision: 61778
2011-07-26 21:20:30 +00:00
Mike Blumenkrantz 39dce75051 use correct list find function sigh
SVN revision: 61777
2011-07-26 21:19:08 +00:00
Mike Blumenkrantz 4170c601f3 only attempt an mtab lock if permissions are sufficient
SVN revision: 61774
2011-07-26 20:36:42 +00:00
Mike Blumenkrantz e4e0c27836 fix const warning
SVN revision: 61773
2011-07-26 20:36:40 +00:00
Christopher Michael 8a63b0c909 Ecore_X: Xlib uses screen number, not screen object. Fix !! Bad DH,
spank spank ;)

Thanks antognolli for the report :)



SVN revision: 61760
2011-07-26 13:17:52 +00:00
Tom Hacohen d8ac3178b7 Evas textblock: Updated docs.
SVN revision: 61759
2011-07-26 12:48:54 +00:00
Jihoon Kim 94cf5e7829 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



SVN revision: 61756
2011-07-26 12:04:27 +00:00
Naruto TAKAHASHI c8383a2b87 From: Naruto TAKAHASHI <tnaruto@gmail.com>
Subject: Re: [E-devel] [Patch] Add XIM module for ecore_imf

I attach a patch for fixing some XIM module bugs.

  - fix showing previous preedit string bug.
  - delete compile warning(thanks JihoonKim)
  -  fix some sequence issue to send preedit changed event and commit
  event.(thanks JihoonKim)



SVN revision: 61754
2011-07-26 11:57:51 +00:00
Tom Hacohen ab6366a310 Evas tests: Added numerous tests for latest bug fixes.
SVN revision: 61753
2011-07-26 11:47:58 +00:00
Tom Hacohen 666988aa4c Evas textblock: Fixed a bug with item visibility check.
SVN revision: 61752
2011-07-26 11:47:55 +00:00
Tom Hacohen fd0bc3b2b1 Evas textblock: Fixed invalidate_text_nodes to work with <b><i></b></i>
SVN revision: 61751
2011-07-26 11:47:51 +00:00
Tom Hacohen d042763162 Evas textblock: Fixed remove_pair and remove_matching.
They now work with <b><i></b></i> mixes.

SVN revision: 61750
2011-07-26 11:47:48 +00:00
Tom Hacohen 97285894c8 Evas tests: Fixed textblock tests (formats).
SVN revision: 61749
2011-07-26 11:47:44 +00:00
Tom Hacohen 5b15fc2d2a Evas textblock: Use orig_format instead of _style_match_replace.
It's more correct as you won't get unwanted translations you would have
in some cases, or even worse, breaking markup get when you have synonymous
tags.

SVN revision: 61748
2011-07-26 11:47:41 +00:00
Carsten Haitzler 3e1c856d90 segv if preedit str null!
SVN revision: 61747
2011-07-26 11:47:40 +00:00
Tom Hacohen 681e4bfa8c Evas textblock: Fixed _format_append to parse tags + incomplete stuff.
Added the first step to allow <b> </b> exact matching when handling formats.
I.e making "<b>a<i>b</b>c</i>d" behave like expected.

SVN revision: 61746
2011-07-26 11:47:19 +00:00
Christopher Michael ab5e8633df Ecore_Evas: Remove xlib (and xcb) specific calls for the software_x11
and opengl_x11 engines and replace with ecore_x calls.

NB: I did not touch software_16 or software_8 so we cannot yet remove
the XLib linking wrt ecore_evas. I leave that exercise to 'the old
man' as per our convo this morning...but this does put us one step
closer ;)



SVN revision: 61743
2011-07-26 11:24:10 +00:00
Christopher Michael f694f08de5 Ecore_X: Add some new api functions for getting default
Depth/Visual/Colormap of a given screen.

NB: Added these so that we can remove xlib specific calls in
ecore_evas and just generic ecore_x calls (so we are engine
independant).



SVN revision: 61742
2011-07-26 11:19:55 +00:00
Daniel Juyung Seo fb6ca14911 edje Edje.h: Fixed documentation.
Fixed wrong placed documentations. Removed some blank lines and added
@brief tag. Many @brief tags are still missing.


SVN revision: 61737
2011-07-26 10:09:16 +00:00
Mike Blumenkrantz ee754de955 fixes a weird bug exposed somewhere by giant tooltips resulting in the following crash:
#0  0xb7e92786 in evas_cache_image_flush (cache=0x0) at evas_cache_image.c:1353
#1  0xb7e9192e in evas_cache_image_drop (im=0xb6aa4d38) at evas_cache_image.c:913
#2  0xb7ee3d8b in eng_image_free (data=0xb6a020c0, image=0xb6aa4d38) at evas_engine.c:383
#3  0xb7e4b8e6 in evas_object_image_free (obj=0xb7517178) at evas_object_image.c:2478
#4  0xb7e4f403 in evas_object_free (obj=0xb7517178, clean_layer=0) at evas_object_main.c:45
#5  0xb7e41c95 in evas_layer_free_objects (lay=0xb6a5d8b0) at evas_layer.c:80
#6  0xb7e42656 in evas_free (e=0xb6a98cd8) at evas_main.c:204
#7  0xb7f27ad3 in _ecore_evas_free (ee=0xb6ab18e8) at ecore_evas.c:2822
#8  0xb7f24161 in ecore_evas_free (ee=0xb6ab18e8) at ecore_evas.c:839
#9  0xb7df2f7f in _deferred_ecore_evas_free (data=0xb6ab18e8) at elm_win.c:477
#10 0x4b0fd858 in _ecore_job_event_handler (data=0x0, type=14, ev=0xb6a99c58) at ecore_job.c:131
#11 0x4b0f907e in _ecore_event_call () at ecore_events.c:693
#12 0x4b0ff93e in _ecore_main_loop_iterate_internal (once_only=0) at ecore_main.c:1750
#13 0x4b0fe195 in ecore_main_loop_begin () at ecore_main.c:848



SVN revision: 61736
2011-07-26 10:03:07 +00:00
Carsten Haitzler e93763d785 fix timer precision handling to do what it was meant to do to begin with
SVN revision: 61730
2011-07-26 07:01:55 +00:00
Christopher Michael 72abee3481 Ecore_X: Add a missing function for getting the count of screens.
Bonus: Added doxy and the @since stuffs (for Tom) ;)

NB: Needed for changes to ecore_evas as that was using xlib
ScreenCount. This way we can just use ecore_x_screen_count_get and not
have to worry if we are xcb/xlib/etc.



SVN revision: 61728
2011-07-26 06:44:12 +00:00
Christopher Michael 210b6dcc9b Ecore_X: Oopsie, don't need those dbg statements anymore.
SVN revision: 61725
2011-07-26 05:55:25 +00:00
Christopher Michael 37b122117e Ecore_X: Add start of XResource handling for xcb backend (NB: Nowhere
near finished yet). Add working OpenGL for XCB engine.

NB: wrt Opengl...Raster, this is the env var/dlsym version you
requested this morning ;)

NB: Basically what happens is, if you know you do not ever want/use
opengl, you can export ECORE_X_NO_XLIB env variable, and ecore_x will
use pure xcb to establish it's X connection. However, if you do use
OpenGL and this env var is not exported, then ecore_x(cb) will use
XOpenDisplay to init the connection.



SVN revision: 61724
2011-07-26 05:54:01 +00:00
Christopher Michael 27395e85cf Ecore_X: Remove 2 fixme's that were bogus, but add one new fixme note
SVN revision: 61723
2011-07-26 02:31:13 +00:00
Christopher Michael 4dcd5b1a7e Ecore_X: Remove fixme comment (correct as it sits).
SVN revision: 61722
2011-07-26 02:21:59 +00:00
Leandro Pereira 00e0fe6dbe evas: ecore_evas_buffer_new(bla, *very large number*) would crash on memset
Instead of zeroing out each line of the buffer, zero out the whole buffer "at once".



SVN revision: 61714
2011-07-25 22:42:54 +00:00
Gustavo Lima Chaves 115a89736e [evas] Fixing typos on diagram.
SVN revision: 61701
2011-07-25 18:22:28 +00:00
Christopher Michael 068b3a9c65 Evas: Fix 'variable undeclared': I assume we wanted the xr rectangle
there ? ;)

NB: Fixes building w/ xcb.



SVN revision: 61685
2011-07-25 10:37:43 +00:00
Carsten Haitzler e413884dac fix latent onebuf code (was never used before)
SVN revision: 61684
2011-07-25 10:30:20 +00:00
Christopher Michael 050eed1b32 Evas: Fix autofoo wrt building Opengl w/ xcb.
SVN revision: 61677
2011-07-25 09:30:12 +00:00
Christopher Michael 4b87169132 Ecore_Evas: Use ecore_x function(s) for getting window attributes.
Some fixes for OpenGL wrt xcb (minor stuffs).

NB: We already use ecore_x for some things in here, so let's keep
duplicated code down to a minimum and resuse what we already have ;)



SVN revision: 61676
2011-07-25 09:29:09 +00:00
Cedric BAIL 619332f0c0 emotion: correctly close pipeline on file close, plus minor fix.
SVN revision: 61675
2011-07-25 09:10:44 +00:00
Tom Hacohen c5e396b8ee Evas tests: Added a TODO test.
SVN revision: 61672
2011-07-25 08:37:44 +00:00
Tom Hacohen d6b2473668 Edje docs: Updated the 'tag' part of the Edc reference.
SVN revision: 61671
2011-07-25 08:26:03 +00:00
Naruto TAKAHASHI 75cfb11d6e ecore-imf: Fix warnings
Signed-off-by: Naruto TAKAHASHI <tnaruto@gmail.com>

SVN revision: 61665
2011-07-25 07:16:54 +00:00
Christopher Michael 35fbbc9aab Ecore_X: Fix CnP when using xcb backend.
SVN revision: 61662
2011-07-24 22:19:00 +00:00
Mike Blumenkrantz f28ad30b8d update svn:ignores
SVN revision: 61659
2011-07-24 21:49:49 +00:00
Mike Blumenkrantz 5987833b64 my triumphant return to AUTHORS
SVN revision: 61658
2011-07-24 21:32:54 +00:00
Mike Blumenkrantz db98b3fe32 populate edje.dox.in from edje.dox (was this intentionally empty?), update from AUTHORS
SVN revision: 61657
2011-07-24 21:32:35 +00:00
Mike Blumenkrantz f862f71e4c middle mouse click now changes cursor location, fixes primary selection paste location bugs
SVN revision: 61656
2011-07-24 21:25:27 +00:00
Rui Seabra 871ddf43d1 Fix rpm build.
SVN revision: 61652
2011-07-24 15:36:22 +00:00
Vincent Torri abcd670439 Evil: prepare the 1.0 release. Put (all, evil as well as 'standard' ones) the headers in $includedir/evil-vmaj
SVN revision: 61640
2011-07-24 08:51:33 +00:00
Tom Hacohen 123e491079 Evas tests: Adedd a textblock test for the last bug fix.
SVN revision: 61639
2011-07-24 08:50:46 +00:00
Tom Hacohen 53fc933312 Evas textblock: Fixed updating of formats position on char_delete.
Format offsets got wrong when merging paragraphs.

SVN revision: 61638
2011-07-24 08:50:42 +00:00
Mike Blumenkrantz e6bdceb300 added entry,selection,none,request to spite tasn
SVN revision: 61636
2011-07-24 08:36:27 +00:00
Mike Blumenkrantz ee01981c9d renamed to entry,selection,all,request because tasn won't shut up
SVN revision: 61633
2011-07-24 08:05:45 +00:00
Mike Blumenkrantz fbfdfc5117 +entry,selection,request signal
SVN revision: 61632
2011-07-24 07:59:47 +00:00
Mike Blumenkrantz 4c0446c7d2 add entry,paste,request,1 and entry,paste,request,3 for different types of pasting
SVN revision: 61631
2011-07-24 07:47:17 +00:00
Vincent Torri 3e655d5e56 link xim module against ecore_x. This patch fixes compilation on mac os x
SVN revision: 61625
2011-07-24 00:23:34 +00:00
Christopher Michael abe52914db EIO: Add UNUSED where missing.
SVN revision: 61623
2011-07-23 23:15:54 +00:00
Christopher Michael d39b302cee Ethumb: Add a bunch of UNUSED where needed.
SVN revision: 61622
2011-07-23 23:12:55 +00:00
Christopher Michael 6d6fe5aca0 Edje: Add UNUSED where needed on the edje_entry obj.
SVN revision: 61621
2011-07-23 23:00:14 +00:00
Christopher Michael 08aedd264a Ecore_Evas: Use an easier check for If existing ecore_evas is already
alpha. No need to do comparisons like this.



SVN revision: 61611
2011-07-23 17:37:04 +00:00
Mike Blumenkrantz 48bb4c6252 url of ecore-con-url is now stringshared
SVN revision: 61607
2011-07-23 03:17:57 +00:00
Mike Blumenkrantz a10530a6f4 +ecore_con_url_url_get
SVN revision: 61606
2011-07-23 03:14:42 +00:00
Iván Briano 46969fd34a Group docs so textblock, line and polygon at least show their functions
SVN revision: 61590
2011-07-22 14:01:56 +00:00
ChunEon Park 614288feb3 evas/evas_object_image.c - reverted to previous
Sorry. Need to look more because of the pageflip. 



SVN revision: 61579
2011-07-22 06:08:04 +00:00
ChunEon Park e9ca4aa10e evas/evas_object_image - modified to keep the uv consistency with normal evas_object.
Although the uv range of normal object is be localized to the it's geometry, 

but the uv range of the image object is be localized it's image size but not geometry size. 

In that case, user should find out the objects type and set the uv value differently between normal and image

why they do that?



SVN revision: 61577
2011-07-22 05:24:16 +00:00
Christopher Michael 9e994ffdd0 Ecore_X: Add some doxy for newly added functions (to keep Tom happy),
and fix some horrid formatting.



SVN revision: 61562
2011-07-21 14:05:27 +00:00
Tom Hacohen 6515a30cc9 Evas tests: Enabled the textblock relsize item native size test.
SVN revision: 61561
2011-07-21 14:04:55 +00:00
Tom Hacohen 5aba518db0 Evas textblock: Fixed native size calculation with relative items.
SVN revision: 61560
2011-07-21 14:04:52 +00:00
Tom Hacohen 6299cbd685 Evas textblock: Fixed some more line height calculations.
Some issues were related to SIZE_REL items and some were not.

SVN revision: 61559
2011-07-21 14:04:48 +00:00
Tom Hacohen c870d8e7ad Evas tests: Added textblock test for the last bugfix.
SVN revision: 61558
2011-07-21 13:00:28 +00:00
Tom Hacohen 083095a903 Evas textblock: Fixed relative items size calculation.
Now they are calculated according to real line height, and not just line
height before this point. Furthermore, this also fixes some issues with
wrapping not being correct.

SVN revision: 61557
2011-07-21 12:53:39 +00:00
Christopher Michael cd65bde09c Ecore_X: Add a couple of missing functions to the xlib engine.
NB: These are mainly for systray module so that it can be engine
independant in that it can just use ecore_x calls now, instead of
specific xlib stuff.



SVN revision: 61555
2011-07-21 12:09:33 +00:00
Cedric BAIL 9910cd4d3e emotion: fix buggies, add YUY2 support.
Note: almost working webcam support. Need to detect
when the pipeline need to be playing to know what is in the
stream. Or maybe do that later...


SVN revision: 61550
2011-07-21 10:46:54 +00:00
Cedric BAIL 5cbc6350ba evas: add software YUY2 colorspace converter.
NOTE: will shortly learn how to write the corresponding shader and add it soon.


SVN revision: 61548
2011-07-21 10:36:05 +00:00
Gustavo Lima Chaves 0b7d33e3df [evas] More love to a given example's text.
SVN revision: 61536
2011-07-20 17:58:56 +00:00
Tom Hacohen 859c4bd33d Evas tests: Added a textblock test to verify the two last fixes.
SVN revision: 61531
2011-07-20 15:45:25 +00:00
Tom Hacohen 055f9996ec Evas textblock: Fixed removing of format pairs in a rare case (range).
Until now, removing the <ps> when <b><ps></b> would have left the
<b></b> intact instead of removing them when using a range delete.

SVN revision: 61530
2011-07-20 15:45:21 +00:00
Tom Hacohen 412b203b46 Evas textblock: Fixed removing of format pairs in a rare case.
Until now, removing the <ps> when <b><ps></b> would have left the <b></b>
intact instead of removing them.

SVN revision: 61529
2011-07-20 15:45:12 +00:00
Tom Hacohen 92c22656d8 Evas tests: Added a textblock test to verify last fix.
SVN revision: 61528
2011-07-20 14:13:36 +00:00
Tom Hacohen bdbc3b8398 Evas textblock: Fixed &nbsp; handling.
It now translates to a real nbsp, and not just a space.

SVN revision: 61527
2011-07-20 14:13:33 +00:00
Tom Hacohen 315d354354 Evas tests: Adedd more textblock visible formats tests.
SVN revision: 61524
2011-07-20 12:37:08 +00:00
Cedric BAIL 42bda9f02c evas: fix bug when array was reallocated during walk.
SVN revision: 61523
2011-07-20 11:22:01 +00:00
Cedric BAIL f13f92ce15 evas: forgotten header.
SVN revision: 61522
2011-07-20 09:23:47 +00:00
Cedric BAIL e263bca092 evas: forgotten revert.
SVN revision: 61521
2011-07-20 09:20:53 +00:00
Cedric BAIL e18334a778 evas: better patch for preventing infinite loop.
SVN revision: 61520
2011-07-20 09:14:41 +00:00
Cedric BAIL cfaac57a76 emotion: add v4l2:// uri scheme for webcam.
SVN revision: 61512
2011-07-19 22:34:54 +00:00
Cedric BAIL 716660e509 efl: fix make dist-check.
SVN revision: 61511
2011-07-19 22:34:17 +00:00
Iván Briano 501232ecfc Diagrams for Ecore_Thread
SVN revision: 61507
2011-07-19 16:58:15 +00:00
Tom Hacohen 9f7d3f8af8 Evas tests: Added a test to verify last textblock bugfix.
SVN revision: 61505
2011-07-19 15:14:40 +00:00
Tom Hacohen 6eb5cdc681 Evas textblock: Fixed a bug when the last paragraph is empty.
SVN revision: 61504
2011-07-19 14:32:54 +00:00
Tom Hacohen 540592a0df Evas tests: Added another textblock format removal test.
SVN revision: 61503
2011-07-19 13:43:20 +00:00
Tom Hacohen a66ec744e9 Evas tests: Added some format removal tests.
SVN revision: 61502
2011-07-19 13:19:18 +00:00
Carsten Haitzler ca357bea50 fix pack_set of evas table (fix to added feature already in changelog)
SVN revision: 61501
2011-07-19 11:24:34 +00:00
Tom Hacohen 63946da1a3 Edje text: Fixed a bug with text ellipsis being off by 1.
SVN revision: 61500
2011-07-19 11:21:35 +00:00
Tom Hacohen d9adfc83ca Edje entry: Emit signals for undo/redo.
SVN revision: 61493
2011-07-19 08:08:16 +00:00
Iván Briano 8c07c3fa30 Add missing images
SVN revision: 61490
2011-07-18 22:39:13 +00:00
Gustavo Lima Chaves f9737c3187 [evas] Fixing oopsies on text/image object docs.
Text needed an explanation and citation to the .c example and large
images explaining borders were prettyfied on html docs.



SVN revision: 61488
2011-07-18 21:45:14 +00:00
Iván Briano 094f06522a Images and more Map stuff
SVN revision: 61486
2011-07-18 21:06:56 +00:00
Rafael Antognolli 8c58c7e668 ecore/doc - Add some @htmlonly guards.
SVN revision: 61485
2011-07-18 18:26:35 +00:00
Tom Hacohen 6a67030bf1 Edje entry: Removed redundant func call and 2 comments.
SVN revision: 61481
2011-07-18 15:25:03 +00:00
Jonas M. Gastal 9023cef248 Ecore: copy images to latex doc dir so we can create PDF.
SVN revision: 61480
2011-07-18 14:03:23 +00:00
Carsten Haitzler 6b39139e05 0 byte sreads are not so important - try again next time.
SVN revision: 61477
2011-07-18 10:34:25 +00:00
Tom Hacohen 50e197ecc0 Evas text: Fixed text_props_index_find and added props_cluster_next/prev.
SVN revision: 61469
2011-07-18 07:41:27 +00:00
Tom Hacohen c6a1f2caa1 Evas text: Made text_props_index_find faster.
SVN revision: 61468
2011-07-18 07:41:21 +00:00
ChunEon Park 5440167a6d evas/evas_engine - patched by Seung-Soo Woo <om101.woo@samsung.com>
Dear all,

eng_image_stride_get() of gl backend get fault stride value.
In case of using dynamic image, it get from dyn.w*4.
But, dyn.stride was already got from secsym_eglGetImageAttribSEC() in _pool_tex_dynamic_new().
dyn.stride can be changed according to DDK.
So, the stride needs to get from dyn.stride.

Please find enclosed file.

Thanks.



SVN revision: 61463
2011-07-18 05:32:06 +00:00
Mike McCormack 656fc3cd99 ecore: Make test more asserty
Following on from suggestion by Vincent Torri.

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61461
2011-07-18 00:20:00 +00:00
Mike McCormack 092c0e82ac ecore: Use ecore_pipe in ecore_test
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61460
2011-07-18 00:19:51 +00:00
Mike McCormack 500199fcc2 ecore: Put config.h first
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61459
2011-07-18 00:19:43 +00:00
Cedric BAIL b79ff92fe9 emotion: improve debugging.
SVN revision: 61456
2011-07-18 00:17:21 +00:00
Cedric BAIL 6eb9bfd5bc emotion: don't forget requirement.
SVN revision: 61455
2011-07-17 22:04:11 +00:00
Cedric BAIL 9384d7d814 emotion: always forgot that damn svn add !
SVN revision: 61454
2011-07-17 21:58:40 +00:00
Cedric BAIL 0f1f6bfe18 emotion: remove useless code.
SVN revision: 61453
2011-07-17 21:39:26 +00:00
Cedric BAIL dad10a507f emotion: add webcam detection, cleanup code and add timing detection.
SVN revision: 61452
2011-07-17 21:38:54 +00:00
Tom Hacohen 1fdf2c67b5 Evas textblock: Adjusted textblock_item_text struct fields.
Removed the unused per-item baseline and changed inset to Evas_Coord.

SVN revision: 61443
2011-07-17 13:42:55 +00:00
Tom Hacohen 7f37b26856 Evas textblock: Fixed inline valign.
SVN revision: 61442
2011-07-17 13:42:51 +00:00
Tom Hacohen 12fa2337cc Evas tests: Enabled mixed wrap tests now that it's fixed.
SVN revision: 61441
2011-07-17 11:15:23 +00:00
Tom Hacohen 73a5f2277a Evas textblock: Fixed a bug in mixed wrapping mode.
SVN revision: 61440
2011-07-17 11:15:18 +00:00
Vincent Torri 22eb580e59 ecore_con : fix compilation on Windows
SVN revision: 61439
2011-07-17 11:11:25 +00:00
Tom Hacohen 6898c688f2 Evas textblock: Fixed linegap.
SVN revision: 61438
2011-07-17 10:48:05 +00:00
Tom Hacohen 5501f844d3 Evas tests: Added a textblock test that emulates edje's min size calc.
Currently mixed wrapping is disabled, because something is wrong there,
but word and char work. This also tests the bugs fixed in previous commits.

SVN revision: 61437
2011-07-17 10:48:01 +00:00
Tom Hacohen 0af138b6ff Evas textblock: Fixed a bug in RELSIZE items size calculation.
SVN revision: 61436
2011-07-17 10:47:58 +00:00
Tom Hacohen c47d4bebd8 Evas text: Added _text_props_cluster_next.
Started using it in tb.

SVN revision: 61435
2011-07-17 10:47:54 +00:00
Tom Hacohen 4f9010d33d Evas textblock: Fixed an issue with item formats.
They weren't pushed to the format stack which in turn meant </item> popped
unrelated formats causing a mess in the stack.

SVN revision: 61434
2011-07-17 10:47:39 +00:00
Vincent Torri 019e86347b Embryo:
* remove all occurences of cegcc (not supported anymore)
* fix unistd.h guards
* remove useless headers in embryo_cc_prefix.c

SVN revision: 61433
2011-07-16 23:19:02 +00:00
Vincent Torri 20544d65df eet_main.c : use correct guards
SVN revision: 61432
2011-07-16 22:51:44 +00:00
Christopher Michael 9d3be74bc3 Ecore_X: Use Eina_Bool for unsigned char.
SVN revision: 61431
2011-07-16 19:17:24 +00:00
Mike Blumenkrantz 9d235b3fc7 switch over all buffers to use binbufs
SVN revision: 61423
2011-07-16 13:07:39 +00:00
Vincent Torri 5fa8593191 Eet : O_BINARY does not exist on linux...
SVN revision: 61422
2011-07-16 08:18:28 +00:00
Mike Blumenkrantz 300a32728b clean up ecore-con server example: HTTP requires a seperator (\r\n in this case) following each header line and a double separator between headers and body. additionally, content-length must be EXACTLY the length of the body, and must not include trailing garbage.
snprintf use here is incorrect due to inconsistent behavior of snprintf, so we can lazily fall back to strlen since this is just a simple example


SVN revision: 61421
2011-07-16 08:01:19 +00:00
Vincent Torri 42cf875234 Embryo : embryo_cc_sc1.c : delete temporary files on Windows
SVN revision: 61420
2011-07-16 07:38:33 +00:00
Vincent Torri 603dc537b0 Eet : eet_flush2 : add O_BINARY to open()
On Windows, open() in text mode followed by fdopen() in
binary mode does not create a stream in binary mode.
So add O_BINARY to open().

SVN revision: 61418
2011-07-16 07:24:48 +00:00
Vincent Torri dc12586bdd revert last commit of mkstemp (remove _O_TEMPORARY flag in open())
SVN revision: 61417
2011-07-16 07:14:42 +00:00
Cedric BAIL 9314ca2baf eeze: update ChangeLog and AUTHORS.
SVN revision: 61415
2011-07-15 20:26:03 +00:00
Jonas M. Gastal cd8cd93209 Eina: Groups shouldn't be inside themselves, and both groups
and conditionals need to be properly closed..



SVN revision: 61413
2011-07-15 18:37:44 +00:00
Jonas M. Gastal 2d6dec2b4e Eina: Making html tags in doc appear only in html doc.
SVN revision: 61412
2011-07-15 18:35:45 +00:00
Jonas M. Gastal eff8c0568e Eina: Giving some pages better names and fixing a typo.
SVN revision: 61411
2011-07-15 18:33:41 +00:00
Cedric BAIL afa692034f eeze: add v4l device discovery.
SVN revision: 61410
2011-07-15 17:28:13 +00:00
Lucas De Marchi 56f7ba4751 eet: fix common misppellings
Mispellings detected by codespell.



SVN revision: 61409
2011-07-15 14:41:15 +00:00
Lucas De Marchi 1feec2b65e evas: fix common misppellings
Mispellings detected by codespell.



SVN revision: 61408
2011-07-15 14:37:49 +00:00
Lucas De Marchi 943fb6b06c ecore: fix common misppellings
Mispellings detected by codespell.



SVN revision: 61407
2011-07-15 14:36:13 +00:00
Lucas De Marchi 84f0c4de1d emotion: fix common misspellings
Misspellings detected by codespell.



SVN revision: 61406
2011-07-15 14:34:02 +00:00
Lucas De Marchi 6fb6089ea1 eina: fix common misspellings
Misspellings detected by codespell.



SVN revision: 61405
2011-07-15 14:31:31 +00:00
Jonas M. Gastal f99a16d27d Eina: add descriptions to eina accessor and eina strbuf.
SVN revision: 61404
2011-07-15 14:07:03 +00:00
Christopher Michael 76fdeb601f Ecore_X: Add a few more missing randr functions to xcb.
SVN revision: 61399
2011-07-15 13:13:38 +00:00
Christopher Michael a391598c3b Ecore_X: Add some more missing randr functions.
SVN revision: 61398
2011-07-15 12:58:24 +00:00
Christopher Michael b1c32bd7a9 Ecore_X: Add a missing function for ecore_x_randr_modes_info_get. Add
a list of remaining ecore_xcb_randr functions to do.



SVN revision: 61397
2011-07-15 12:20:52 +00:00
Cedric BAIL 186e0807ee emotion: properly handle some race condition.
SVN revision: 61395
2011-07-15 09:12:24 +00:00
Christopher Michael ac53b8b57b Ecore_X: Remove unused file.
SVN revision: 61387
2011-07-14 16:05:13 +00:00
Christopher Michael 927ce0bb7b Ecore_X: Remove unused file.
SVN revision: 61386
2011-07-14 16:04:26 +00:00
Christopher Michael cfed4716f6 Ecore: Add autofoo magic for building XCB-based ecore_x.
NB: IF you are going to try this, build evas with
`--enable-software-xcb` AND build ecore with `--enable-ecore-x-xcb
--disable-ecore-evas-opengl-x11`.

NB: OpenGL does NOT work with the xcb stuff yet. E itself does NOT
work with this yet either (still have to commit those changes).



SVN revision: 61385
2011-07-14 15:46:30 +00:00
Christopher Michael 1039f57ad6 Ecore: Add 'makekeys' utility (used for compiling new xcb stuff)
provides a lookup table for xlookupstring (as xcb does not have a function for this).



SVN revision: 61382
2011-07-14 15:43:49 +00:00
Christopher Michael 7dd39d374c Ecore: Remove whitespace in Makefile.am
SVN revision: 61381
2011-07-14 15:42:02 +00:00
Christopher Michael c3e316bd9a Ecore_Input: Add Shift_Lock variable for Ecore_Event.
SVN revision: 61380
2011-07-14 15:41:36 +00:00
Christopher Michael da03bd6e66 Ecore_Evas: Fixes for working with the xcb engine. Fix some
formatting. Fix dst_rect being uninitialized. Remove 'prefetch &
fetch' calls as they are not used in the new xcb stuffs.



SVN revision: 61379
2011-07-14 15:40:53 +00:00
Christopher Michael c19fc42875 Ecore_Input_Evas: Add missing Shift_Lock modifier.
SVN revision: 61378
2011-07-14 15:38:09 +00:00
Christopher Michael 4c5e65e442 Ecore_X: Add missing shift_lock modifier. Remove unused _ecore_x_ic
variable. Add atom for VisualID (for systray module).



SVN revision: 61377
2011-07-14 15:37:04 +00:00
Christopher Michael 654b646e22 Ecore_X: Add new xcb code (still not 100% complete tho).
SVN revision: 61376
2011-07-14 15:35:42 +00:00
Christopher Michael e3ad6ca2cc Ecore: Add myself to Authors (for incoming xcb stuffs).
SVN revision: 61375
2011-07-14 15:31:24 +00:00
Gustavo Lima Chaves 8de348318f [evas] More diagrams on docs.
SVN revision: 61374
2011-07-14 15:11:36 +00:00
Gustavo Lima Chaves 60c0f2ebca [evas] English corrections.
SVN revision: 61373
2011-07-14 15:11:20 +00:00
Tom Hacohen 6dc9a02f09 Evas tests: Fixed a textblock cursor test.
SVN revision: 61372
2011-07-14 14:38:41 +00:00
Tom Hacohen 4431349f56 Evas textblock: Removed useless code. We should never get there.
SVN revision: 61370
2011-07-14 14:25:46 +00:00
Tom Hacohen 8b59100774 Evas tests: Added more cursor tests, this time with bidi.
SVN revision: 61369
2011-07-14 14:25:42 +00:00
Tom Hacohen 00e8406b24 Evas textblock: Fixed cursor_coord_set with rtl/bidi in some cases.
Fix it when pressing beyond line boundaries.

SVN revision: 61368
2011-07-14 14:25:39 +00:00
Tom Hacohen 344a98d2a9 Evas textblock: Added a small fix to valign.
SVN revision: 61366
2011-07-14 12:47:17 +00:00
Tom Hacohen 77978d965a Evas textblock: Fixed an issue with in-line valign.
Thanks to SeoZ for the report.

SVN revision: 61365
2011-07-14 12:31:24 +00:00
Tom Hacohen b976ff8adf Evas tests: Added more textblock cursor tests.
Added a set of tests to verify my last fix.

SVN revision: 61363
2011-07-14 08:00:27 +00:00
Tom Hacohen 1128519838 Evas textblock: Fixed issue with char/line_coord_set with valign. #2.
After adding some tests, I found out that my previous fix was not enough.

SVN revision: 61362
2011-07-14 08:00:23 +00:00
Tom Hacohen 9615dc0226 Evas tests: Added more textblock cursor tests.
Also added tests to verify my previous fix.

SVN revision: 61361
2011-07-14 07:36:49 +00:00
Tom Hacohen 218042176b Evas textblock: Fixed issue with char/line_coord_set with valign.
SVN revision: 61360
2011-07-14 07:36:45 +00:00
Vincent Torri 70d3c66bd7 Eina: link against iconv, use rt_libs to hold -lrt and add -lrt to eina.pc.in's Libs.private
SVN revision: 61358
2011-07-14 07:18:11 +00:00
Vincent Torri f9fe039a95 Eina : configure.ac : improve shm_open detection
* Do not use spaces around '=' in configure scripts
 * formatting
 * put -lrt in EINA_LIBS instead of LIBS


SVN revision: 61357
2011-07-14 06:58:59 +00:00
Rafael Antognolli 25e3fb0162 ecore/ecore_con - Add some sequence diagrams.
SVN revision: 61351
2011-07-13 19:04:27 +00:00
Rafael Antognolli e85a63bef5 ecore/ecore_con - Add minimal http server and url cookies examples.
SVN revision: 61350
2011-07-13 19:04:17 +00:00
Rafael Antognolli afaf1b535b ecore/ecore_con - Move more documentation to Ecore_Con.h.
Cookie related function documentation is moved, and some additional
comments were added to ecore_con_url_cookies_file_add and
ecore_con_url_cookies_jar_file_set.



SVN revision: 61349
2011-07-13 19:04:10 +00:00
Tom Hacohen e49f3baa84 Edje entry: Removed a hack that's not needed anymore.
This is thanks to a bug fix in textblock.

SVN revision: 61346
2011-07-13 15:45:50 +00:00
Tom Hacohen 8b499b1984 Evas tests: Added textblock line_coord_set tests.
These also verifies the bug fix from my previous commit.

SVN revision: 61345
2011-07-13 15:16:41 +00:00
Tom Hacohen 70da0ccdbe Evas textblock: Fixed a bug in line_coord_set with y<0.
SVN revision: 61344
2011-07-13 15:16:38 +00:00
Tom Hacohen edf4d4ee86 Evas tests: Added a bit of line geometry tests.
SVN revision: 61343
2011-07-13 15:16:34 +00:00
Tom Hacohen e03f8274dc Evas tests: Added more textblock cursor tests.
Also added tests to verify my previous fix.

SVN revision: 61342
2011-07-13 14:35:15 +00:00
Tom Hacohen 3b71290152 Evas textblock: Fixed a bug in cursor_char_coord_set with coords < 0.
SVN revision: 61341
2011-07-13 14:35:12 +00:00
Cedric BAIL 333f523df4 emotion: raise gstreamer backend as it is more stable than the other.
SVN revision: 61340
2011-07-13 14:14:32 +00:00
Tom Hacohen 94255cd511 Evas tests: Added a missing fail_if to a textblock test.
SVN revision: 61337
2011-07-13 13:56:40 +00:00
Tom Hacohen c4a1b9c53b Evas tests: Added textblock tests, including ones to verify my last fixes.
SVN revision: 61335
2011-07-13 12:49:33 +00:00
Tom Hacohen 6c48f6f881 Evas textblock: Fixed a bug with scaling items.
SVN revision: 61334
2011-07-13 12:49:29 +00:00
Tom Hacohen 3755bdac92 Evas tests: Make sure default bidi direction of empty texts is correct.
SVN revision: 61333
2011-07-13 11:36:34 +00:00
Tom Hacohen 69abe2e093 Evas: Stopped using the typo enum EVAS_BIDI_DIRECTION_NATURAL.
s/EVAS_BIDI_DIRECTION_NATURAL/EVAS_BIDI_DIRECTION_NEUTRAL/

SVN revision: 61332
2011-07-13 11:36:31 +00:00
Tom Hacohen 9da04fdce9 Evas tests: Added more bidi, script and other tests to text object.
SVN revision: 61331
2011-07-13 11:36:26 +00:00
Cedric BAIL 43e1e44168 eina: fix typo.
SVN revision: 61329
2011-07-13 09:25:49 +00:00
Cedric BAIL fc8f5a4be9 eina: fix eina shm_open detection.
SVN revision: 61328
2011-07-13 09:21:55 +00:00
Tom Hacohen 420d235bff Evas: Moved font functions from object_text.c to font_dir.c
Not the best place, but at least better than putting them in object_text.c

SVN revision: 61327
2011-07-13 08:54:49 +00:00
Tom Hacohen 9f2e58e6f0 Evas tests: Added last_up_to_pos tests to text object.
SVN revision: 61326
2011-07-13 08:54:17 +00:00
Cedric BAIL 5d21b6699b eina: fix build on NetBSD.
NOTE: we need a fallback for shm_open that will work on BSD system.


SVN revision: 61324
2011-07-13 08:51:19 +00:00
ChunEon Park cf4ed126c4 [E-devel] [Patch] evas_gl_shader patch for get_program_binary extension
from gl77.lee@samsung.com

Dear all,

I attached a patch of evas_gl_shader.

I've removed a comment which is creating dummy shader when using GL_OES_get_program_binary extension.
Mr. Haegeun Park who is in charge of GPU driver fixed get_program_binary bug in the SGX driver.
There's no need to create dummy shaders any longer.

And I've added link status checking code to validate the binary object.

Please review this patch.

Thanks.



SVN revision: 61309
2011-07-13 00:56:12 +00:00
Gustavo Lima Chaves 7a64f6312b [evas] Filling more gaps of image object docs.
SVN revision: 61304
2011-07-12 17:30:14 +00:00
Gustavo Lima Chaves 4a37443310 [evas] Text objects example tweaks.
SVN revision: 61303
2011-07-12 17:29:39 +00:00
Tom Hacohen 22ed7e2e3b Evas tests: Added text tests, including ones to verify my last fixes.
SVN revision: 61302
2011-07-12 15:04:13 +00:00
Tom Hacohen 85f116cc9e Evas text: Fixed a bug with char_coords_get searching at the wrong x.
SVN revision: 61301
2011-07-12 15:04:10 +00:00
Tom Hacohen d808ccdaab Evas text: Fixed a bug in evas_object_text_char_pos_get - wrong X returned.
Happens when using multiple scripts in the same text object.

SVN revision: 61300
2011-07-12 15:04:07 +00:00
Tom Hacohen b0a4063d6b Evas text: Fixed mistake in comment.
SVN revision: 61299
2011-07-12 15:04:03 +00:00
Rafael Antognolli c66ec1de38 ecore/ecore_con - Brief description for the client and server groups.
Also improve the documentation of some functions.



SVN revision: 61298
2011-07-12 14:37:32 +00:00
Rafael Antognolli 6c645fa930 ecore/ecore_con - Ecore_Con examples (server and client).
SVN revision: 61297
2011-07-12 14:37:22 +00:00
Rafael Antognolli 4ef10c3b53 ecore/ecore_con - Update documentation of server/client timeout_set().
SVN revision: 61296
2011-07-12 14:37:14 +00:00
Rafael Antognolli 050b0c7c73 ecore/ecore_con - Constify return of ecore_con_server_clients_get().
We can't change the returned list, since it's not a copy but the
internal list itself.



SVN revision: 61295
2011-07-12 14:37:08 +00:00
Rafael Antognolli 03d383c201 ecore/ecore_con - Move more function documentation to Ecore_Con.h
Some small fixes were also made to these docs.



SVN revision: 61294
2011-07-12 14:36:58 +00:00
Iván Briano 970c4e6757 Some example for Ecore_Thread
It has some issues that need debugging, I'm not sure if Ecore_Thread doesn't
like having stuff done before the main loop is running and valgrind was also
complaining about some invalid reads in ecore_thread.c, but at least the
example is there for people to look at and report problems, things not clear
or just about anything that may come up from it.


SVN revision: 61293
2011-07-12 13:38:25 +00:00
Iván Briano 4da2c481b5 Fix some double frees. The hash frees the data itself.
SVN revision: 61292
2011-07-12 13:36:19 +00:00
Mike McCormack 6b57d19096 ecore: Enable timers in glib dispatch
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61286
2011-07-12 11:57:12 +00:00
Mike McCormack a55b6bb98e ecore: Make g_main_loop call idle enterers last
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61285
2011-07-12 11:57:03 +00:00
Mike McCormack dc537d0047 ecore: Run timers at end of glib loop
This reduces the time between calculating the scene
and rendering it, making scrolling smoother.

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61284
2011-07-12 11:56:54 +00:00
Mike McCormack 540bf3368f ecore: Fix warnings when epoll is disabled
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61283
2011-07-12 11:56:45 +00:00
Mike McCormack c64f48b32a ecore: Only check timers if we need to
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61282
2011-07-12 11:56:36 +00:00
Mike McCormack 6052bbe9c1 ecore: Remove redundant variable
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61281
2011-07-12 11:56:24 +00:00
Tom Hacohen 9871789a5e Evas tests: Added various text object tests.
SVN revision: 61280
2011-07-12 11:40:28 +00:00
Tom Hacohen a6d0247724 Evas bidi: Fixed typo DIRECTION_NATURAL -> DIRECTION_NEUTRAL.
Kept the old one just for not breaking ABI/API.
To all of you that are fast on the trigger, I set it to the same value,
so it doesn't matter that I inserted it at the start.

SVN revision: 61279
2011-07-12 11:40:25 +00:00
Tom Hacohen 6ae3ed79f1 Evas tests: Added textblock replacement char tests.
SVN revision: 61278
2011-07-12 11:40:22 +00:00
Tom Hacohen 53fb33ec2c Evas tests: Also test EVAS_TEXTBLOCK_CURSOR_BEFORE cursor mode.
SVN revision: 61275
2011-07-12 09:12:20 +00:00
Tom Hacohen 5f488bb789 Evas tests: Added hinting change coverage to textblock.
SVN revision: 61274
2011-07-12 09:04:10 +00:00
Tom Hacohen 3b917c52a7 Evas tests: Added various text wrapping + ellipsis tests.
SVN revision: 61273
2011-07-12 09:04:07 +00:00
Tom Hacohen ebb8c6c2a3 Evas tests: More textblock style padding tests.
SVN revision: 61272
2011-07-12 09:04:04 +00:00
Mike McCormack 125f08ef40 ecore: Set source priority to high
Will only make a difference if there are other gsources.

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61269
2011-07-12 06:11:23 +00:00
Mike McCormack 92723a2ee5 ecore: Wake main loop immediately on zero sleep
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61268
2011-07-12 06:11:14 +00:00
Mike McCormack 87b27ee044 ecore-imf: Place braces consistently
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61267
2011-07-12 06:11:04 +00:00
Mike McCormack b8c2bb3fe5 ecore-imf: Fix build in no XIM case
Fixes:

ecore_imf_xim.c: In function 'ecore_imf_xim_shutdown':
ecore_imf_xim.c:608:11: error: 'open_ims' undeclared (first use in this function)
ecore_imf_xim.c:608:11: note: each undeclared identifier is reported only once for each function it appears

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61266
2011-07-12 06:10:54 +00:00
Mike McCormack 02cf92bcc6 ecore-x: Use Evas CFLAGS to build XIM support
Signed-off-by: Mike McCormack <mikem@ring3k.org>

SVN revision: 61260
2011-07-12 02:26:48 +00:00
Naruto TAKAHASHI d4dbb336bb ecore-x: Add XIM module for ecore_imf
Signed-off-by: Naruto TAKAHASHI <tnaruto@gmail.com>

SVN revision: 61259
2011-07-12 02:26:39 +00:00
Naruto TAKAHASHI f5f1c56657 ecore-x: Add immodules directory
Signed-off-by: Naruto TAKAHASHI <tnaruto@gmail.com>

SVN revision: 61258
2011-07-12 02:26:29 +00:00
Naruto TAKAHASHI 39164fb44d ecore-x: Remove XIM
Signed-off-by: Naruto TAKAHASHI <tnaruto@gmail.com>

SVN revision: 61257
2011-07-12 02:26:19 +00:00
Rafael Antognolli dba308e60b ecore/examples - Fix DSO build (linking example against Evas).
SVN revision: 61255
2011-07-11 17:22:31 +00:00
Tom Hacohen c56ce3a747 Evas tests: Add more style tests to verify bug fixed in previous commit.
SVN revision: 61254
2011-07-11 16:39:48 +00:00
Tom Hacohen 9d6d6cedc9 Evas textblock: Fixed style padding calculation.
SVN revision: 61253
2011-07-11 16:39:45 +00:00
Tom Hacohen e4dcb66095 Evas tests: Added a test to verify the last bug is fixed.
SVN revision: 61252
2011-07-11 15:56:51 +00:00
Tom Hacohen b55c9032aa Evas textblock: Fixed an issue with escaped-html-like chars.
SVN revision: 61251
2011-07-11 15:56:47 +00:00
Tom Hacohen b9acb9687c Evas tests: More textblock tests.
SVN revision: 61250
2011-07-11 15:27:53 +00:00
Tom Hacohen 6c67f54efb Evas tests: Added tests for evas_textblock_cursor_range_geometry_get.
SVN revision: 61249
2011-07-11 15:19:33 +00:00
Tom Hacohen 6d082b5da7 Evas: Move the HAVE_TESTS define to the m4 macro.
Thanks to vtorri for the spanking.

SVN revision: 61245
2011-07-11 14:39:53 +00:00
Tom Hacohen a425de556c Evas: Added HAVE_TESTS to config.h
This is set to 1 if tests are enabled.

SVN revision: 61244
2011-07-11 14:08:13 +00:00
Tom Hacohen 6465e886fe Evas tests: Added a test for evas_textblock_node_format_list_get.
SVN revision: 61243
2011-07-11 13:55:53 +00:00
Tom Hacohen 40d8a3a433 Evas tests: Added tests to evas_textblock_node_format_remove_pair.
SVN revision: 61242
2011-07-11 13:55:48 +00:00
Tom Hacohen 9924c133c1 Evas tests: Add another textblock test.
SVN revision: 61240
2011-07-11 13:39:46 +00:00
Tom Hacohen 78d304e37f Evas tests: Improved textblock tests.
SVN revision: 61239
2011-07-11 12:30:18 +00:00
Tom Hacohen 5c0443cf79 Evas textblock: Removed useless function.
SVN revision: 61238
2011-07-11 12:30:15 +00:00
Tom Hacohen 30ed908c18 Evas tests: Added various text and textblock tests.
SVN revision: 61237
2011-07-11 12:30:09 +00:00
Tom Hacohen 697f8eb592 Evas tests: Added more textblock tests, including one to verify my last fix.
SVN revision: 61236
2011-07-11 11:20:45 +00:00
Tom Hacohen 7c14357161 Evas textblock: Fixed an issue with string_escaped_get.
SVN revision: 61235
2011-07-11 11:20:42 +00:00
Tom Hacohen 4ef7602216 Evas textblock: Fixed an error in docs.
SVN revision: 61234
2011-07-11 11:20:37 +00:00
Tom Hacohen f046b06c23 Evas tests: Added more textblock tests, including one to verify my last fix.
SVN revision: 61233
2011-07-11 08:56:19 +00:00
Tom Hacohen e01d587617 Evas textblock: Fixed evas_textblock_cursor_format_prev.
SVN revision: 61232
2011-07-11 08:56:17 +00:00
Tom Hacohen 8fe3776f8a Evas textblock: Deprecated evas_textblock_cursor_set_at_format.
This was a duplicate of evas_textblock_cursor_at_format_set.
The only difference is the name, and this one doesn't conform to the naming
conventions.

SVN revision: 61231
2011-07-11 08:56:13 +00:00
Tom Hacohen 06a85ddbdf Evas textblock: Fixed a confusing parameter name.
SVN revision: 61230
2011-07-11 08:56:10 +00:00
Tom Hacohen 1504fdb4a7 Evas tests: Added more textblock tests, including a test for the last fix.
SVN revision: 61228
2011-07-11 07:23:18 +00:00
Tom Hacohen 181eda995a Evas textblock: Hopefully eliminate all issues with uninit cursors.
SVN revision: 61227
2011-07-11 07:23:12 +00:00
ChunEon Park 6852dc4971 evas/evas_engine - patched by Seung-Soo Woo.
Dear all,

There is a below issue.

Problem : Evas gl engine call eglWaitNative() and eglWaitGL() before/after eglSwapBuffers().
The sync APIs are not call only in case of SGX_DDK.
Resolution : It is necessary to check MALI string too.

So, I fixed it.
Please find enclosed file.

Thanks.



SVN revision: 61226
2011-07-11 06:29:20 +00:00
Mike McCormack 4ff69d688c ecore: Fix logic bug in g_main_loop
Want to use timerfd if either seconds or nanoseconds is non-zero.

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61224
2011-07-11 02:51:37 +00:00
Jiyoun Park 81098de5a6 evas: fix _evas_jpeg_membuf_src_skip bug
If file was corrupted , the size value of app frame is bigger than real file
size.

For example, if somebody change file using editor, the file start with (FF
D8 FF E0 FF DB ..).

But real file size can be small than (FF DB).

In that case, _evas_jpeg_membuf_src_skip set src->pub.bytes_in_buffer to
negative value, it make crash later.

Signed-off-by: Jiyoun Park <jy0703.park@samsung.com>

SVN revision: 61222
2011-07-11 02:29:16 +00:00
Mike McCormack 3b5050421b ecore: Ignore new binary ecore_test
Signed-off-by: Mike McCormack <mikem@ring3k.org>

SVN revision: 61218
2011-07-11 01:21:59 +00:00
Mike McCormack ebe85185b8 ecore: Comment missing example
This is causing problems for autogen.sh

Signed-off-by: Mike McCormack <mikem@ring3k.org>

SVN revision: 61217
2011-07-11 01:21:49 +00:00
Tom Hacohen f24a0f896e Evas tests: Added a bunch of text object tests.
SVN revision: 61213
2011-07-10 14:58:37 +00:00
Tom Hacohen 0db401e003 Evas: Updated .gitignore.
SVN revision: 61212
2011-07-10 14:23:50 +00:00
Tom Hacohen c9227dc271 Evas tests: Added a basic evas_objet_text test.
SVN revision: 61211
2011-07-10 14:23:47 +00:00
Tom Hacohen 0a1773ef31 Evas tests: Added some more textblock tests.
SVN revision: 61210
2011-07-10 14:23:43 +00:00
Tom Hacohen bcae70565d Evas tests: Added a lot more textblock tests.
Some verify the fixes I just committed, some are just general tests.

SVN revision: 61208
2011-07-10 13:22:45 +00:00
Tom Hacohen 0aab125684 Evas textblock: Fixed evas_textblock_cursor_eol_get.
SVN revision: 61207
2011-07-10 13:22:42 +00:00
Tom Hacohen 9fe4504574 Evas textblock: Fixed cursor_paragraph_text_length_get.
SVN revision: 61206
2011-07-10 13:22:38 +00:00
Tom Hacohen d30603e37f Evas textblock: Fixed a bug in _paragraph_char_last with the last par.
SVN revision: 61205
2011-07-10 13:22:33 +00:00
Tom Hacohen b6fd1539e8 Evas tests: Added a test to verify the last issue I fixed.
SVN revision: 61204
2011-07-10 12:18:52 +00:00
Tom Hacohen ad79facc8a Evas textblock: Fixed returned position of "clean" cursors.
Issue reported by Shilpa.

SVN revision: 61203
2011-07-10 12:18:48 +00:00
Tom Hacohen b43f08436d Evas tests: Added textblock tests.
SVN revision: 61202
2011-07-10 12:18:45 +00:00
Tom Hacohen 70f9cf686f Evas textblock: textblock_cursor_get's return should not be const.
This does not break API as it's more permissive and behavior doesn't change.

SVN revision: 61201
2011-07-10 12:18:42 +00:00
David Walter Seikel fc1d772c79 Fix ancient typo, and make them all consistant.
Google tells me it's a fairly common miss spelling in USA, and a male singing group.



SVN revision: 61199
2011-07-10 12:02:53 +00:00
Christopher Michael 0869862e5e Evas: Fix building xcb backend as static.
SVN revision: 61178
2011-07-09 21:12:43 +00:00
Christopher Michael 246321e372 Evas: Remove 'double =' signs from configure --help output.
SVN revision: 61177
2011-07-09 20:34:32 +00:00
Iván Briano f42ff0e33c don't build ecore-evas when statically building software-x11
SVN revision: 61176
2011-07-09 18:34:13 +00:00
Iván Briano 4dbecee5e9 keep'em consistent
SVN revision: 61175
2011-07-09 18:19:23 +00:00
Christopher Michael 62078f2372 Evas: Add ability to detect if opengl is built w/ xlib or xcb backend.
SVN revision: 61172
2011-07-09 14:26:46 +00:00
Christopher Michael 2148b1d2f6 Evas: Remove dependency on xcb-aux and add code to find the visual
based on id, as we were only using one function from there.



SVN revision: 61171
2011-07-09 13:48:39 +00:00
Vincent Torri 090ab4805c Eina : lock (win32) : fix compilation
cedric, can you confirm me that

-             LeaveCriticalSection(&mutex->cond_read->threads_count_lock);
...
+             LeaveCriticalSection(&mutex->cond_read.waiters_count_lock);

is correct ?



SVN revision: 61170
2011-07-09 10:20:02 +00:00
Iván Briano efc2f2e1f0 Follow portability advice from Master vtorri.
SVN revision: 61168
2011-07-09 03:04:13 +00:00
Vincent Torri e9518f1521 Add unit tests + coverage support to evas, for Tasn.
unit tests : make check
coverage   : make coverage


SVN revision: 61167
2011-07-09 02:59:24 +00:00
Vincent Torri 049ee49bc9 fix maintainer-clean rule
SVN revision: 61166
2011-07-09 02:57:27 +00:00
Iván Briano 541012930b Fix building gl_xlib as a static module
SVN revision: 61164
2011-07-09 01:47:01 +00:00
Iván Briano 0e0ab628c7 Don't try to build examples if dependencies are not met.
SVN revision: 61163
2011-07-09 01:20:18 +00:00
Rafael Antognolli 0a61ad17b6 ecore/ecore_con - add more reference doc to some functions.
Also add description to the examples.



SVN revision: 61161
2011-07-08 18:06:19 +00:00
Rafael Antognolli 8c3c7f0dac ecore/ecore_con - Add simple examples of ecore_con_url usage.
SVN revision: 61160
2011-07-08 18:06:12 +00:00
Rafael Antognolli 3f02227826 ecore/ecore_con - Move documentation from .c to .h.
This only affects ecore_con_url_* for now.
Also add docs to the structures used by ecore_con_url, and move them to
the Ecore_Con_Url_Group.



SVN revision: 61159
2011-07-08 18:06:04 +00:00
Gustavo Lima Chaves ebe741dbba [evas] Documenting/exemplifying the following:
- evas_object_smart_callback_add
 - evas_object_smart_callback_call
 - evas_object_smart_callback_del
 - evas_object_smart_callback_description_find
 - evas_object_smart_callbacks_descriptions_get
 - evas_object_smart_callbacks_descriptions_set



SVN revision: 61158
2011-07-08 16:54:00 +00:00
Daniel Juyung Seo ea1123d387 evas Evas.h/Evas_GL.h: Removed trailing whitespaces.
SVN revision: 61154
2011-07-08 12:15:25 +00:00
Mike McCormack f297fc260d ecore: Don't come out of idle because due to idlers
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61152
2011-07-08 10:26:24 +00:00
Mike McCormack cd493ac0b3 ecore: Check signals in glib prepare only
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61151
2011-07-08 10:26:14 +00:00
Mike McCormack 22719d5107 ecore: Check for pending before entering g_main_loop
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61150
2011-07-08 08:07:40 +00:00
Mike McCormack c69221de26 ecore: Only check timers on zero time left
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61149
2011-07-08 08:07:29 +00:00
Mike McCormack cd5abb2b0f ecore: Fix unused variable warnings
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61147
2011-07-08 06:38:56 +00:00
Mike McCormack bb6ae3956e ecore: Build with -Wall -W by default
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61146
2011-07-08 06:38:47 +00:00
Mike McCormack 218b33a8c6 ecore: Add test for timers created from idlers
Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 61145
2011-07-08 06:38:38 +00:00