platform/upstream/elementary.git
13 years agoUse a macro to add a specific path for efl tools (edje_cc and eet, here)
Vincent Torri [Sun, 22 Aug 2010 07:19:29 +0000 (07:19 +0000)]
Use a macro to add a specific path for efl tools (edje_cc and eet, here)
See usage in efl_binary.m4

SVN revision: 51514

13 years agoremove whitespaces
Vincent Torri [Sun, 22 Aug 2010 07:12:11 +0000 (07:12 +0000)]
remove whitespaces

SVN revision: 51513

13 years agoremove tab
Vincent Torri [Sun, 22 Aug 2010 05:45:48 +0000 (05:45 +0000)]
remove tab

SVN revision: 51509

13 years agoConvert (hopefully) all comparisons to NULL
Lucas De Marchi [Sat, 21 Aug 2010 13:52:25 +0000 (13:52 +0000)]
Convert (hopefully) all comparisons to NULL

Apply badzero.cocci, badnull.coci and badnull2.cocci

This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:

code before patch               ||code after patch
===============================================================

return a == NULL;                 return !a;

return a != NULL;                 return !!a;

func(a == NULL);                  func(!a);

func(a != NULL);                  func(!!a);

b = a == NULL;                    b = !a;

b = a != NULL;                    b = !!a;

b = a == NULL ? c : d;            b = !a ? c : d;

b = a != NULL ? c : d;            b = a ? c : d;

other cases:

a == NULL                         !a
a != NULL                         a

SVN revision: 51487

13 years agoSpelling.
Christopher Michael [Fri, 20 Aug 2010 17:10:35 +0000 (17:10 +0000)]
Spelling.

SVN revision: 51469

13 years agoMake sure after moving the cursor on cursor end in a scrolled entry, the scroller...
titan [Thu, 19 Aug 2010 20:57:51 +0000 (20:57 +0000)]
Make sure after moving the cursor on cursor end in a scrolled entry, the scroller stays where it was.
Should this be done for all cursor moves? Currently a cursor move always takes the scroller to the top.

SVN revision: 51450

13 years agoLots of fixes:
Christopher Michael [Wed, 18 Aug 2010 19:18:42 +0000 (19:18 +0000)]
Lots of fixes:
  Add UNUSED where needed.
  Remove unused variables.
  Fix lots of compiler warnings.
  Formatting.

SVN revision: 51320

13 years ago * edje: fix edje external module to be consistent with the rest of the efl.
Cedric BAIL [Wed, 18 Aug 2010 16:57:19 +0000 (16:57 +0000)]
* edje: fix edje external module to be consistent with the rest of the efl.

SVN revision: 51296

13 years ago * edje: fix edje external module path.
Cedric BAIL [Tue, 17 Aug 2010 13:29:23 +0000 (13:29 +0000)]
* edje: fix edje external module path.

SVN revision: 51251

13 years agoElementary: Fixed selection and a possible segfault.
Tom Hacohen [Mon, 16 Aug 2010 14:52:36 +0000 (14:52 +0000)]
Elementary: Fixed selection and a possible segfault.
1. Selection now works with the buttons in elementary_test.
2. Selection with ctrl+v does not print ERR:elementary elm_widget.c:1373 _elm_widget_type_check() Passing Object: (nil), of type: '(unknown)' when expecting type: 'entry' anymore.

SVN revision: 51216

13 years agoadapt to 1.0.0 alpha vers.
Carsten Haitzler [Mon, 16 Aug 2010 10:16:39 +0000 (10:16 +0000)]
adapt to 1.0.0 alpha vers.

SVN revision: 51191

13 years agoElementary: Translate <ps> back to paragraph separator.
Tom Hacohen [Mon, 16 Aug 2010 09:06:19 +0000 (09:06 +0000)]
Elementary: Translate <ps> back to paragraph separator.

SVN revision: 51175

13 years agonamefix.
Carsten Haitzler [Mon, 16 Aug 2010 04:44:45 +0000 (04:44 +0000)]
namefix.

SVN revision: 51153

13 years agofix copying - it didnt actually even claim copyright. fix.
Carsten Haitzler [Mon, 16 Aug 2010 02:40:32 +0000 (02:40 +0000)]
fix copying - it didnt actually even claim copyright. fix.

SVN revision: 51148

13 years agoelm_theme doxygen fix
Daniel Juyung Seo [Sat, 14 Aug 2010 15:30:35 +0000 (15:30 +0000)]
elm_theme doxygen fix

elm_theme_extension_add() uses eina_list_append() not eina_list_prepend().

Patch by: Daniel Juyung Seo <seojuyung2@gmail.com>

SVN revision: 51116

13 years agoElementary: Fixed theme to have 'ps' again and removed align=left from textblock...
Tom Hacohen [Wed, 11 Aug 2010 06:57:07 +0000 (06:57 +0000)]
Elementary: Fixed theme to have 'ps' again and removed align=left from textblock (see previous commit for details).

SVN revision: 50983

13 years agowonguk -> happy?
Carsten Haitzler [Tue, 10 Aug 2010 23:58:57 +0000 (23:58 +0000)]
wonguk -> happy?

SVN revision: 50980

13 years agoReverting 50929. Too many changes that don't belong and broke stuff.
Iván Briano [Tue, 10 Aug 2010 23:13:21 +0000 (23:13 +0000)]
Reverting 50929. Too many changes that don't belong and broke stuff.

SVN revision: 50979

13 years agoElementary: Update textblock theme to *not* hardcode alignment to the left.
Tom Hacohen [Tue, 10 Aug 2010 15:41:41 +0000 (15:41 +0000)]
Elementary: Update textblock theme to *not* hardcode alignment to the left.
This is still the default in the object, but this allows us to auto-align according to natural text direction without breaking functionality.

SVN revision: 50967

13 years agoElementary: Update theme to have the 'ps' tag used by textblock.
Tom Hacohen [Mon, 9 Aug 2010 15:48:09 +0000 (15:48 +0000)]
Elementary: Update theme to have the 'ps' tag used by textblock.

SVN revision: 50929

13 years agoFix up formatting while I am reading this.
Christopher Michael [Sun, 8 Aug 2010 23:00:09 +0000 (23:00 +0000)]
Fix up formatting while I am reading this.

SVN revision: 50914

13 years agoFixing weird behavior at scrolled entries.
Gustavo Lima Chaves [Thu, 5 Aug 2010 18:40:33 +0000 (18:40 +0000)]
Fixing weird behavior at scrolled entries.

SVN revision: 50842

13 years agoDon't drop selection when dragging from selected item
Iván Briano [Thu, 5 Aug 2010 18:17:05 +0000 (18:17 +0000)]
Don't drop selection when dragging from selected item

SVN revision: 50841

13 years agoSet boolean to 1.
Christopher Michael [Wed, 4 Aug 2010 19:20:52 +0000 (19:20 +0000)]
Set boolean to 1.

SVN revision: 50824

13 years agoRename variable to 'autosave'.
Christopher Michael [Wed, 4 Aug 2010 19:20:02 +0000 (19:20 +0000)]
Rename variable to 'autosave'.
When deleting the notepad, check if autosave is set before writting.

SVN revision: 50823

13 years agoFinish unscrewing patch-fu
Lucas De Marchi [Wed, 4 Aug 2010 19:00:15 +0000 (19:00 +0000)]
Finish unscrewing patch-fu

SVN revision: 50820

13 years agoFORMATTING
Lucas De Marchi [Wed, 4 Aug 2010 16:57:32 +0000 (16:57 +0000)]
FORMATTING

* Remove vim modelines:
 find . -name '*.[chx]' -exec sed -i '/\/\*$/ {N;N;/ \* vim:ts/d}' \{\} \;
 find . -name '*.[chx]' -exec sed -i '/\/[\*\/] *vim:/d' \{\} \;

* Remove leading blank lines:
 find . -name '*.[cxh]' -exec sed -i '/./,$!d'

If you use vim, use this in your .vimrc:
set ts=8 sw=3 sts=8 expandtab cino=>5n-3f0^-2{2(0W1st0

SVN revision: 50816

13 years agoFix padding issues w/ 'scroller'.
Christopher Michael [Wed, 4 Aug 2010 05:12:48 +0000 (05:12 +0000)]
Fix padding issues w/ 'scroller'.
Fix content showing up in the 'frame' when scrolled.

SVN revision: 50805

13 years agoUse the E icon theme (if present) for 'icon desktops' test.
Christopher Michael [Wed, 4 Aug 2010 02:18:44 +0000 (02:18 +0000)]
Use the E icon theme (if present) for 'icon desktops' test.

NB - Just an example to see if using getenv("E_ICON_THEME") works
correctly.

SVN revision: 50802

13 years agoMore error returns.
Brett Nash [Wed, 4 Aug 2010 02:03:57 +0000 (02:03 +0000)]
More error returns.

Please people, when you add a function look at what it compiles too.

SVN revision: 50801

13 years agoelm_notify: Return an invalid enumeration on error.
Brett Nash [Wed, 4 Aug 2010 02:03:53 +0000 (02:03 +0000)]
elm_notify: Return an invalid enumeration on error.

SVN revision: 50800

13 years agoeina_list: Return false on error.
Brett Nash [Wed, 4 Aug 2010 02:03:45 +0000 (02:03 +0000)]
eina_list: Return false on error.

Maybe Eina_Bool needs a 'file not found' error or something.

SVN revision: 50799

13 years agoDoesn't anyone check their compiler output?
Brett Nash [Wed, 4 Aug 2010 01:46:41 +0000 (01:46 +0000)]
Doesn't anyone check their compiler output?

Don't return random stack cruft on NULL pointer.

SVN revision: 50796

13 years agoAdd function to turn off autosave.
Christopher Michael [Wed, 4 Aug 2010 01:09:08 +0000 (01:09 +0000)]
Add function to turn off autosave.
Add function to call for 'explicit save'
Use PATH_MAX.
Remove some duplicated code in 'load' function.
Update some doxy.

SVN revision: 50794

13 years agoFix scroller theme so that horiz & vert 'trough' bars do not run
Christopher Michael [Wed, 4 Aug 2010 00:27:48 +0000 (00:27 +0000)]
Fix scroller theme so that horiz & vert 'trough' bars do not run
outside the object (previously the 'runners' could be seen a few
pixels outside the object).

SVN revision: 50793

13 years agoInvalid write, go away, that 'si' thing is freed already.
Iván Briano [Tue, 3 Aug 2010 16:46:59 +0000 (16:46 +0000)]
Invalid write, go away, that 'si' thing is freed already.

SVN revision: 50770

13 years agoElementary:
Jonathan Atton [Sun, 1 Aug 2010 17:29:20 +0000 (17:29 +0000)]
Elementary:
- we can get the content of a external object
- a signal can be send to the content of a external object

SVN revision: 50731

13 years agohandle clear being called from genlist item callback (eg selected)
Carsten Haitzler [Wed, 28 Jul 2010 08:35:34 +0000 (08:35 +0000)]
handle clear being called from genlist item callback (eg selected)

SVN revision: 50590

13 years agowrong data type
Mike Blumenkrantz [Wed, 28 Jul 2010 03:30:39 +0000 (03:30 +0000)]
wrong data type

SVN revision: 50580

13 years agono return value
Mike Blumenkrantz [Wed, 28 Jul 2010 03:29:48 +0000 (03:29 +0000)]
no return value

SVN revision: 50579

13 years agoFrom: Dave Andreoli <dave@gurumeditation.it>
Dave Andreoli [Tue, 27 Jul 2010 23:43:12 +0000 (23:43 +0000)]
From: Dave Andreoli <dave@gurumeditation.it>
Subject: [E-devel] New elm pager "slide" and "slide_invisible" styles

Hi everyone,
I have done 2 new style for the pager widget:

"slide" and "slide_invisible"

They work different from the other styles: new (pushed) pages
comes from right and the old go out left, while popped pages
goes out from right. It works like the enna browser, or like all the
"browser lists" on iphone.

The patch include the 2 new styles, a new elementary_test
page called "Pager Slide", a little code for elm_pager.c  that was
needed
for the new style to work and simple update for the other existing
styles.

The patch is located at:
http://pastebin.com/jSbg0wb9

I can commit this myself, just give me the go ;)

SVN revision: 50559

13 years agoFrom: Daniele Ricci <daniele.athome@gmail.com>
Daniele Ricci [Tue, 27 Jul 2010 23:36:27 +0000 (23:36 +0000)]
From: Daniele Ricci <daniele.athome@gmail.com>
Subject: [E-devel] [PATCH] Genlist longpress timeout

Hello,
I've made a patch that makes the genlist capable of configuring the
timeout for the longpress event.

The patch compiles but I haven't tested it yet. However it's very
simple, it should work out of the box.
Patch is the output of "svn diff" from revision 49809.

SVN revision: 50558

13 years agoelementary: add elm_panes in edje external
Jonathan Atton [Mon, 26 Jul 2010 20:33:33 +0000 (20:33 +0000)]
elementary: add elm_panes in edje external

SVN revision: 50520

14 years agoEnable transition between previous item and the current when elm_slideshow_show is...
Nicolas Aguirre [Thu, 22 Jul 2010 16:13:40 +0000 (16:13 +0000)]
Enable transition between previous item and the current when elm_slideshow_show is called.

SVN revision: 50431

14 years agoupdating french and italian translations
Massimo Maiurana [Thu, 22 Jul 2010 11:50:07 +0000 (11:50 +0000)]
updating french and italian translations

SVN revision: 50428

14 years agofix possible null ptr deref
Carsten Haitzler [Wed, 21 Jul 2010 23:33:35 +0000 (23:33 +0000)]
fix possible null ptr deref

SVN revision: 50422

14 years ago"Ooops, forgot about edje_external in the previous patch. Can someone apply this...
Bruno Dilly [Tue, 20 Jul 2010 21:51:08 +0000 (21:51 +0000)]
"Ooops, forgot about edje_external in the previous patch. Can someone apply this for me? Thanks."
  By Rafael Fonseca <rfonseca@profusion.mobi>

SVN revision: 50393

14 years agoAdd setters and getters to interval for elm spinner and clock
Bruno Dilly [Tue, 20 Jul 2010 21:38:17 +0000 (21:38 +0000)]
Add setters and getters to interval for elm spinner and clock

SVN revision: 50392

14 years agoels_icon : hide the object while the image is preloading
Jonathan Atton [Tue, 20 Jul 2010 19:33:40 +0000 (19:33 +0000)]
els_icon : hide the object while the image is preloading

SVN revision: 50390

14 years agoBetter variable naming for elm_thumb.
Luis Felipe Strano Moraes [Tue, 20 Jul 2010 18:42:59 +0000 (18:42 +0000)]
Better variable naming for elm_thumb.

By: Rafael "15 years experience" Fonseca <rfonseca@profusion.mobi>

SVN revision: 50389

14 years agoAfter Sachiel's changes about making the edje_object a sub_object of
Luis Felipe Strano Moraes [Tue, 20 Jul 2010 18:42:21 +0000 (18:42 +0000)]
After Sachiel's changes about making the edje_object a sub_object of
elm_thumb widget, all the stuff about alignement and crop are not
used anymore.

By: Rafael "15 years experience" Fonseca <rfonseca@profusion.mobi>

SVN revision: 50388

14 years agoSet size min hint to elm_thumb.
Luis Felipe Strano Moraes [Tue, 20 Jul 2010 18:41:04 +0000 (18:41 +0000)]
Set size min hint to elm_thumb.

By: Rafael "15 years" Fonseca <rfonseca@profusion.mobi>

SVN revision: 50387

14 years agoelm_slideshow:
Jonathan Atton [Tue, 20 Jul 2010 18:30:22 +0000 (18:30 +0000)]
elm_slideshow:
* remove printf
* no more realize the current item in item_add(). The last item is always and it is the previous item of the first item, consequently a new item was built each time a item vas added :/

SVN revision: 50386

14 years agoelm_slideshow: pre-calcul the next and the previous items, very usefull if the object...
Jonathan Atton [Tue, 20 Jul 2010 18:26:22 +0000 (18:26 +0000)]
elm_slideshow: pre-calcul the next and the previous items, very usefull if the object is big (like a photo)

SVN revision: 50385

14 years agoels_icon: preload the image
Jonathan Atton [Tue, 20 Jul 2010 18:04:37 +0000 (18:04 +0000)]
els_icon: preload the image

SVN revision: 50384

14 years agoelm_slideshow: use itc-del to delete the data and not the object.
Jonathan Atton [Tue, 20 Jul 2010 16:36:31 +0000 (16:36 +0000)]
elm_slideshow: use itc-del to delete the data and not the object.

SVN revision: 50383

14 years ago small fix in doc
Davide Andreoli [Sun, 18 Jul 2010 11:56:56 +0000 (11:56 +0000)]
 small fix in doc

SVN revision: 50322

14 years agoelm_hover/hoversel: set a default parent in the constructor. With the edje external...
Jonathan Atton [Sat, 17 Jul 2010 08:54:51 +0000 (08:54 +0000)]
elm_hover/hoversel: set a default parent in the constructor. With the edje external type we can not set a parent currently but with this patch we can use theses widgets in specifics conditions (the parent will be the edje group)

SVN revision: 50303

14 years agoExternal elm_slideshow: add "string: layout"
Jonathan Atton [Sat, 17 Jul 2010 08:18:04 +0000 (08:18 +0000)]
External elm_slideshow: add "string: layout"

SVN revision: 50302

14 years ago whops, commit also Elementary.h.in I always forbot about it :(
Davide Andreoli [Fri, 16 Jul 2010 20:47:21 +0000 (20:47 +0000)]
 whops, commit also Elementary.h.in  I always forbot about it :(
and add the cube also to test2

SVN revision: 50289

14 years agothings that are important: not trying to pass off a format string as a buffer size...
Mike Blumenkrantz [Fri, 16 Jul 2010 20:39:17 +0000 (20:39 +0000)]
things that are important: not trying to pass off a format string as a buffer size in snprintf :)

SVN revision: 50288

14 years ago Flip widget: add 2 new flip style:
Davide Andreoli [Fri, 16 Jul 2010 20:30:11 +0000 (20:30 +0000)]
 Flip widget: add 2 new flip style:
   ELM_FLIP_CUBE_RIGHT, ELM_FLIP_CUBE_LEFT

As you can imagine the new animations make the flip as a rotating cube,
the 2 contents are on 2 different faces.

SVN revision: 50287

14 years agofinger waggles! this is to make sure developers actually read docs!
Carsten Haitzler [Fri, 16 Jul 2010 06:38:59 +0000 (06:38 +0000)]
finger waggles! this is to make sure developers actually read docs!

SVN revision: 50277

14 years agofix formatting, docs and warnings. and bug.
Carsten Haitzler [Fri, 16 Jul 2010 06:21:25 +0000 (06:21 +0000)]
fix formatting, docs and warnings. and bug.

SVN revision: 50276

14 years agoFrom: 장효영 <hyoyoung.chang@samsung.com>
장효영 [Fri, 16 Jul 2010 05:50:45 +0000 (05:50 +0000)]
From: 장효영 <hyoyoung.chang@samsung.com>

I've added elm_label features. That are fontsize, color, background color and
ellipsis (cutting text to fit widget size) features. Most of the property
setting API is wrapping to label tag set.

The rllipsis feature checks part size and cuts character to fit its size.

SVN revision: 50275

14 years agoallow group's min to limit the calculated size.
Gustavo Sverzut Barbieri [Thu, 15 Jul 2010 23:14:55 +0000 (23:14 +0000)]
allow group's min to limit the calculated size.

PS: probably other widgets that use swallow should have this, so
objects that have minimum size of 0x0 (like list/genlist) can be
forced to some size using group.min.

SVN revision: 50274

14 years agoClear gengrid Before deleting the pan object. (also, clear function
Christopher Michael [Thu, 15 Jul 2010 22:34:55 +0000 (22:34 +0000)]
Clear gengrid Before deleting the pan object. (also, clear function
already deletes the calc job).

SVN revision: 50273

14 years agoElm_Slideshow: Fix the edje, I hope this time it is correct
Jonathan Atton [Thu, 15 Jul 2010 17:41:19 +0000 (17:41 +0000)]
Elm_Slideshow: Fix the edje, I hope this time it is correct
Elm_Notify: set orient = -1, else the default orientation (0) will be not set because the orient does not change (see the test in elm_notify_orient_set())

SVN revision: 50270

14 years agoElm_Slideshow : rollback, remove the possibility to have more than 1 item display...
Jonathan Atton [Thu, 15 Jul 2010 17:09:59 +0000 (17:09 +0000)]
Elm_Slideshow : rollback, remove the possibility to have more than 1 item display at the same time. We need a specific widget to do this with specifics animations.

SVN revision: 50269

14 years agofix hide/del bug if thumb generation was pending, reuse objects if possible.
Gustavo Sverzut Barbieri [Thu, 15 Jul 2010 14:29:17 +0000 (14:29 +0000)]
fix hide/del bug if thumb generation was pending, reuse objects if possible.

As spotted by Brian, we were not cancelling the thumbnail generation
on hide/delete, when the generation finished garbage would be used and
we'd segv. This commit fixes this, also removing the useless
is_generating, as it can be interpreted from wd->id (-1 is not
generating).

As an optimization, we now just delete the view object if it changed
between image and edje (video), otherwise we reuse it.

SVN revision: 50268

14 years agoElm_Slideshow: Delete correct objects at the correct time. The expose layout bug...
Jonathan Atton [Thu, 15 Jul 2010 09:30:52 +0000 (09:30 +0000)]
Elm_Slideshow: Delete correct objects at the correct time. The expose layout bug in specifics condition.

SVN revision: 50263

14 years agoFix elm_thumb smart callback calling
Gustavo Sverzut Barbieri [Wed, 14 Jul 2010 21:29:10 +0000 (21:29 +0000)]
Fix elm_thumb smart callback calling

Currently, elm_thumb is passing the wrong pointer to the
smart_callback_call function, so the callbacks are not being
called. The attached patch fix that.

By: Rafael Fonseca <rfonseca@profusion.mobi>

SVN revision: 50258

14 years agofix widgets that were forcing style to be "default".
Gustavo Sverzut Barbieri [Wed, 14 Jul 2010 21:14:52 +0000 (21:14 +0000)]
fix widgets that were forcing style to be "default".

SVN revision: 50257

14 years agoElm_Slideshow:
Jonathan Atton [Wed, 14 Jul 2010 21:12:58 +0000 (21:12 +0000)]
Elm_Slideshow:
- Add a new layout : expose
- Add a way to display more than 1 slide at a time, the number of slides displayed is defined in the layout

SVN revision: 50256

14 years agoElm notify theme apply.
Gustavo Lima Chaves [Wed, 14 Jul 2010 19:04:22 +0000 (19:04 +0000)]
Elm notify theme apply.

Patch by k-s.

SVN revision: 50252

14 years agoElm_Photo:
Jonathan Atton [Wed, 14 Jul 2010 14:48:21 +0000 (14:48 +0000)]
Elm_Photo:
 - Add a way to display a photo by keeping the ratio AND the theme can display something around the photo (border ...). The way I use is maybe a bit crappy (embryo, offset ...) but I do not know a better way.
 - Add a new style (with a shadow). The default style has no changes
 If you do not like my way, revert the commit and commit your way :)

Elm_Slideshow:
 - Use elm_photo in the test
 - Add a black background

SVN revision: 50248

14 years agoAdd a list of "layout" to elm_slideshow. A layout is like a "sub-style". For example...
Jonathan Atton [Wed, 14 Jul 2010 09:07:43 +0000 (09:07 +0000)]
Add a list of "layout" to elm_slideshow. A layout is like a "sub-style". For example the content can take all the slideshow widget (~fullscreen) or not. I do not have finish to work on it.

SVN revision: 50247

14 years agoRemove unneeded code with notnull.cocci script
Lucas De Marchi [Wed, 14 Jul 2010 02:20:30 +0000 (02:20 +0000)]
Remove unneeded code with notnull.cocci script

This continues previous commit with more complex places, where it required
more than just removing some "ifs".

SVN revision: 50242

14 years agoRemove unneeded code with notnull.cocci script
Lucas De Marchi [Wed, 14 Jul 2010 02:05:47 +0000 (02:05 +0000)]
Remove unneeded code with notnull.cocci script

The notnull.cocci script from Coccinelle finds places where you check if a
variable is NULL, but it's known not to be NULL. The check can be safely
removed. For example, this code would be caught by notnull:

if (!var) return;
if (var && var->fld) { ... }

It's needless to check again if var is not NULL because if it's in fact NULL,
it would have returned on the previous "if". This commit removes all the
trivial places where this pattern happens. Another patch will be generated for
the more complex cases.

SVN revision: 50241

14 years agoUse widget style instead of default on elm index items
Bruno Dilly [Tue, 13 Jul 2010 21:33:12 +0000 (21:33 +0000)]
Use widget style instead of default on elm index items

SVN revision: 50236

14 years agoops, copy & past fail
Lucas De Marchi [Tue, 13 Jul 2010 02:10:00 +0000 (02:10 +0000)]
ops, copy & past fail

I meant clock_val_down_exit_on_error.

SVN revision: 50211

14 years agoFix dereference of null pointer
Lucas De Marchi [Tue, 13 Jul 2010 02:01:52 +0000 (02:01 +0000)]
Fix dereference of null pointer

Bug found by Coccinelle with 'isnull.cocci' script (Dereference of an
expression that has been checked to be NULL) [1].

[1] http://www.emn.fr/x-info/coccinelle/rules/isnull.html

SVN revision: 50210

14 years agoFrom: Rafael Fonseca <rfonseca@profusion.mobi>
Rafael Fonseca [Mon, 12 Jul 2010 01:15:52 +0000 (01:15 +0000)]
From: Rafael Fonseca <rfonseca@profusion.mobi>
Subject: [E-devel] [PATCH] [Elementary] Fix flickering issue on
elm_slideshow

Hey guys,

the attached patch solves the issue of the previous image flickering
after the transition is over on elm_slideshow.

SVN revision: 50190

14 years agoactually ONLy need 1 -I
Carsten Haitzler [Sun, 11 Jul 2010 23:39:54 +0000 (23:39 +0000)]
actually ONLy need 1 -I

SVN revision: 50182

14 years agoalso conform to the includes in name-vmaj dir policy
Carsten Haitzler [Sun, 11 Jul 2010 23:34:49 +0000 (23:34 +0000)]
also conform to the includes in name-vmaj dir policy

SVN revision: 50181

14 years agoAdd the elm notify external object
Jonathan Atton [Sun, 11 Jul 2010 21:19:27 +0000 (21:19 +0000)]
Add the elm notify external object

SVN revision: 50180

14 years agoConstify parameters of elm_widget_drag_*_get functions
Lucas De Marchi [Sat, 10 Jul 2010 22:05:37 +0000 (22:05 +0000)]
Constify parameters of elm_widget_drag_*_get functions

Change "Evas_Object*" to "const Evas_Object*" in:
 * elm_widget_drag_lock_x_get()
 * elm_widget_drag_lock_y_get()
 * elm_widget_drag_child_locked_x_get()
 * elm_widget_drag_child_locked_y_get()

By: Fabiano Fidencio <fidencio@profusion.mobi>

SVN revision: 50177

14 years agobarf. build. didnt use ethubm cflags. bad!
Carsten Haitzler [Sat, 10 Jul 2010 02:31:58 +0000 (02:31 +0000)]
barf. build. didnt use ethubm cflags. bad!

SVN revision: 50171

14 years agoerr should be ethumb_client - not ethumb.
Carsten Haitzler [Sat, 10 Jul 2010 02:28:01 +0000 (02:28 +0000)]
err should be ethumb_client - not ethumb.

SVN revision: 50170

14 years agoFix gengrid usage of item class style.
Gustavo Sverzut Barbieri [Thu, 8 Jul 2010 23:17:12 +0000 (23:17 +0000)]
Fix gengrid usage of item class style.

By: Leandro "acidx" Pereira <leandro@profusion.mobi>

SVN revision: 50136

14 years agoAdd possibility to get all the items in Gengrid
Bruno Dilly [Tue, 6 Jul 2010 21:14:38 +0000 (21:14 +0000)]
Add possibility to get all the items in Gengrid
By Rafael Fonseca <rfonseca@profusion.mobi>

SVN revision: 50087

14 years agoFix warning related to Ecore Api changes.
Christopher Michael [Tue, 6 Jul 2010 20:16:25 +0000 (20:16 +0000)]
Fix warning related to Ecore Api changes.
Fix some formatting.

SVN revision: 50085

14 years agoPatch to fix gengrid item positioning. From Rafael Fonseca.
titan [Tue, 6 Jul 2010 01:23:54 +0000 (01:23 +0000)]
Patch to fix gengrid item positioning. From Rafael Fonseca.

SVN revision: 50053

14 years agoFrom: ChunEon Park <chuneon.park@samsung.com>
ChunEon Park [Sun, 4 Jul 2010 23:41:48 +0000 (23:41 +0000)]
From: ChunEon Park <chuneon.park@samsung.com>
Subject: elm_animator

an animator wrapper - can be attached to an object (and be deleted if
object is deleted) and otherwise call a callback with a 0.0->1.0 value
where along the path you should be etc. etc. - ie handle higher level
animation runs.

SVN revision: 50039

14 years agoOops, add missing .h and minor issues.
Gustavo Sverzut Barbieri [Thu, 1 Jul 2010 23:53:17 +0000 (23:53 +0000)]
Oops, add missing .h and minor issues.

 * add const to getter
 * enforce bool is 0/1
 * remove trailing whitespace

SVN revision: 49982

14 years agoElm_List separator support.
Gustavo Sverzut Barbieri [Thu, 1 Jul 2010 23:48:10 +0000 (23:48 +0000)]
Elm_List separator support.

By: Leandro "acidx" Pereira <leandro@profusion.mobi>

SVN revision: 49981

14 years agoexpose drag lock (x and y axis).
Carsten Haitzler [Thu, 1 Jul 2010 06:59:30 +0000 (06:59 +0000)]
expose drag lock (x and y axis).

SVN revision: 49963

14 years agosomone copy & pasted junk into doc comments. bad! fix.
Carsten Haitzler [Thu, 1 Jul 2010 06:51:18 +0000 (06:51 +0000)]
somone copy & pasted junk into doc comments. bad! fix.

SVN revision: 49962

14 years agoTUrn off debug.
Brett Nash [Thu, 1 Jul 2010 01:18:32 +0000 (01:18 +0000)]
TUrn off debug.

SVN revision: 49956

14 years agoelm_map: Add a hidden object to separate maps objects and marker objects. This way...
Jonathan Atton [Wed, 30 Jun 2010 19:26:53 +0000 (19:26 +0000)]
elm_map: Add a hidden object to separate maps objects and marker objects. This way markers are always on top of the map.

SVN revision: 49952