Commit Graph

1240 Commits

Author SHA1 Message Date
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
Lucas De Marchi 54531a69ed 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
2010-08-04 16:57:32 +00:00
Christopher Michael 2d524955e2 Fix padding issues w/ 'scroller'.
Fix content showing up in the 'frame' when scrolled.



SVN revision: 50805
2010-08-04 05:12:48 +00:00
Christopher Michael 1e16f33910 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
2010-08-04 02:18:44 +00:00
Brett Nash f9a721d4d0 More error returns.
Please people, when you add a function look at what it compiles too.

SVN revision: 50801
2010-08-04 02:03:57 +00:00
Brett Nash 4194c83fc0 elm_notify: Return an invalid enumeration on error.
SVN revision: 50800
2010-08-04 02:03:53 +00:00
Brett Nash de54ffcf23 eina_list: Return false on error.
Maybe Eina_Bool needs a 'file not found' error or something.

SVN revision: 50799
2010-08-04 02:03:45 +00:00
Brett Nash 960624f80d Doesn't anyone check their compiler output?
Don't return random stack cruft on NULL pointer.

SVN revision: 50796
2010-08-04 01:46:41 +00:00
Christopher Michael c4ee716181 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
2010-08-04 01:09:08 +00:00
Christopher Michael 46871c3405 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
2010-08-04 00:27:48 +00:00
Iván Briano c48e0e98fa Invalid write, go away, that 'si' thing is freed already.
SVN revision: 50770
2010-08-03 16:46:59 +00:00
Jonathan Atton 76a2b5f2cb 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
2010-08-01 17:29:20 +00:00
Carsten Haitzler 20490e70d8 handle clear being called from genlist item callback (eg selected)
SVN revision: 50590
2010-07-28 08:35:34 +00:00
Mike Blumenkrantz c9182a400c wrong data type
SVN revision: 50580
2010-07-28 03:30:39 +00:00