Commit Graph

1253 Commits

Author SHA1 Message Date
Brett Nash 6e3764585e Docimet elm_image_object_size_get
SVN revision: 51968
2010-09-08 04:55:01 +00:00
Brett Nash 0713be0e14 Elm: Simplify elm photo size handling.
Also don't carry around a negative size when it's not used.

SVN revision: 51967
2010-09-08 04:54:46 +00:00
Davide Andreoli 4ab457bce6 whitespaces--
Im going to clear the fileselector widget, I will make the theme use
a layout instead of a fixed box and also I will clear the api that have
silly names atm

If you have suggestions please speak now

DaveMDS


SVN revision: 51966
2010-09-08 03:54:42 +00:00
Gustavo Sverzut Barbieri e581ae2867 elm_selection_get() is in elm_priv.h and should not be used outside libelementary.so
this is clear when building with -fvisibility=hidden and it breaks
with undefined reference as elm_selection_get() is not marked as EAPI.





SVN revision: 51956
2010-09-07 15:54:43 +00:00
Brett Nash 687cc32cd0 Handle providers a little better.
SVN revision: 51938
2010-09-07 09:36:51 +00:00
Brett Nash 0d492dcdaf Merge branch 'elmdnd'
Conflicts:
	trunk/TMP/st/elementary/.gitignore

SVN revision: 51935
2010-09-07 06:56:16 +00:00
Christopher Michael 31ed630554 Update email address across the board.
SVN revision: 51890
2010-09-04 18:32:59 +00:00
Luis Felipe Strano Moraes df04b4704d Adding bdilly and rfonseca to the AUTHORS file.
SVN revision: 51889
2010-09-04 17:24:01 +00:00
Carsten Haitzler 36577f5abb and more test for launcher 3 - i can't reproduce the reported bug. my
guess is that its been fixed or that something subtle is being done
"wrong"



SVN revision: 51884
2010-09-04 12:31:39 +00:00
Christopher Michael c9f2ef3ef0 Fix ticket #569: Setting the same icon file twice for elm_icon would
make the object disappear.



SVN revision: 51865
2010-09-03 17:15:38 +00:00
Carsten Haitzler 7de3bcd295 aaargh. hack hack.
SVN revision: 51856
2010-09-03 08:27:05 +00:00
Carsten Haitzler 9edf419558 and umm... work... and .. struff.. ugh. don't ask.
SVN revision: 51851
2010-09-03 00:08:11 +00:00
Iván Briano f2c8ba0fe6 Versioned config for Elementary.
This is not doing much now, just the version field in the struct,
some stuff stolen from E and a base to use when new things are added.
There are some comments in the code about what to do in certain cases
that E does not have, like a system update, new config and apps linked
to the old version still running when the config Atoms are updated. These
things we'll probably be addressed as they are needed, as well as come
clean up in quick code I ditched in there, but it would be good to do so
with more feedback from the good guys around that like to break SVN
every now and then.

Since the commit message is already long enough, I'm adding some more crap
just for the sake of doing so. I could go with some tl;dr thing as well,
but I don't feel like resuming what's up there.

Have a nice day.


SVN revision: 51843
2010-09-02 14:33:04 +00:00
Carsten Haitzler 27298797f0 finally! flip works! happy!
SVN revision: 51833
2010-09-02 10:25:05 +00:00
Carsten Haitzler b67066f6d3 make flip 3 easier to tell what's up.. and it's not really right..
flip in flip :(



SVN revision: 51832
2010-09-02 10:15:03 +00:00
Carsten Haitzler cda4f422b1 ooof flippidy-do-da... working much better.
SVN revision: 51831
2010-09-02 09:58:52 +00:00
Tom Hacohen 5f220d5f76 Elementary: Fixed utf8->markup. Should probably just put it all in one place or at least depend on the textblock working on.
SVN revision: 51810
2010-09-01 14:30:31 +00:00
Carsten Haitzler fabb5d67bb sky test edje - clip contents pls. :)
SVN revision: 51793
2010-09-01 01:13:16 +00:00
Carsten Haitzler 42ec2033bb fix some most unfortunate lack of clip honorning :)
SVN revision: 51773
2010-08-31 06:20:33 +00:00
Sebastian Dransfeld 6c5726c16f ignore++
SVN revision: 51715
2010-08-29 08:51:43 +00:00
Brett Nash 298e79f677 More ignores for .git .ppl
SVN revision: 51626
2010-08-25 02:58:37 +00:00
Bruno Dilly e2df452945 Oops, fix leap years detection algorithm on elm_calendar
SVN revision: 51586
2010-08-23 18:50:51 +00:00
Bruno Dilly 1a985e09cd Add tests for elm calendar
SVN revision: 51585
2010-08-23 18:46:43 +00:00
Bruno Dilly cf8280b413 Add Elementary Calendar Widget
A calendar is a widget that allows the user to select a date. It has
support to adding marks (holidays and checks by default). The calendar
is displayed month at a time.

Weekdays names and the function used to format month and year to
be displayed can be set, giving more flexibility to this widget.



SVN revision: 51584
2010-08-23 18:45:36 +00:00
Vincent Torri 0f5c7a96f2 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
2010-08-22 07:19:29 +00:00
Vincent Torri f54ec7ad85 remove whitespaces
SVN revision: 51513
2010-08-22 07:12:11 +00:00
Vincent Torri fa20af7036 remove tab
SVN revision: 51509
2010-08-22 05:45:48 +00:00
Lucas De Marchi c6a4ea9d2f 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
2010-08-21 13:52:25 +00:00
Christopher Michael c391c9c86a Spelling.
SVN revision: 51469
2010-08-20 17:10:35 +00:00
titan 5abc08fa87 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
2010-08-19 20:57:51 +00:00
Christopher Michael bc583d718c Lots of fixes:
Add UNUSED where needed.
  Remove unused variables.
  Fix lots of compiler warnings.
  Formatting.



SVN revision: 51320
2010-08-18 19:18:42 +00:00
Cedric BAIL 7966765d77 * edje: fix edje external module to be consistent with the rest of the efl.
SVN revision: 51296
2010-08-18 16:57:19 +00:00
Cedric BAIL 5826c17db1 * edje: fix edje external module path.
SVN revision: 51251
2010-08-17 13:29:23 +00:00
Tom Hacohen e1491acc3f 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
2010-08-16 14:52:36 +00:00
Carsten Haitzler 5897ae7d63 adapt to 1.0.0 alpha vers.
SVN revision: 51191
2010-08-16 10:16:39 +00:00
Tom Hacohen 444745cf52 Elementary: Translate <ps> back to paragraph separator.
SVN revision: 51175
2010-08-16 09:06:19 +00:00
Carsten Haitzler 605202bf98 namefix.
SVN revision: 51153
2010-08-16 04:44:45 +00:00
Carsten Haitzler 5a9b7bb96a fix copying - it didnt actually even claim copyright. fix.
SVN revision: 51148
2010-08-16 02:40:32 +00:00
Daniel Juyung Seo e42ab9f072 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
2010-08-14 15:30:35 +00:00
Tom Hacohen c03e82b7d5 Elementary: Fixed theme to have 'ps' again and removed align=left from textblock (see previous commit for details).
SVN revision: 50983
2010-08-11 06:57:07 +00:00
Carsten Haitzler 67b635e782 wonguk -> happy?
SVN revision: 50980
2010-08-10 23:58:57 +00:00
Iván Briano e4ca468612 Reverting 50929. Too many changes that don't belong and broke stuff.
SVN revision: 50979
2010-08-10 23:13:21 +00:00
Tom Hacohen 464db2d47b 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
2010-08-10 15:41:41 +00:00
Tom Hacohen 6ee7f97638 Elementary: Update theme to have the 'ps' tag used by textblock.
SVN revision: 50929
2010-08-09 15:48:09 +00:00
Christopher Michael 1900ad84b5 Fix up formatting while I am reading this.
SVN revision: 50914
2010-08-08 23:00:09 +00:00
Gustavo Lima Chaves dace4427be Fixing weird behavior at scrolled entries.
SVN revision: 50842
2010-08-05 18:40:33 +00:00
Iván Briano 530a645192 Don't drop selection when dragging from selected item
SVN revision: 50841
2010-08-05 18:17:05 +00:00
Christopher Michael 03ddd89f5a Set boolean to 1.
SVN revision: 50824
2010-08-04 19:20:52 +00:00
Christopher Michael cd55226643 Rename variable to 'autosave'.
When deleting the notepad, check if autosave is set before writting.



SVN revision: 50823
2010-08-04 19:20:02 +00:00
Lucas De Marchi 3fd31b24a0 Finish unscrewing patch-fu
SVN revision: 50820
2010-08-04 19:00:15 +00:00