Commit Graph

30 Commits

Author SHA1 Message Date
Hannes Janetzek b8c7cf601e e-modules: update do e_gadcon_util_cliet_menu_append api changes. allowing to have settings menu in toplevel again
SVN revision: 57828
2011-03-17 17:24:53 +00:00
Miculcy Brian 38ff81ae71 fix recent menu api break
SVN revision: 52062
2010-09-09 14:50:07 +00:00
Lucas De Marchi d98f684bad 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
Lucas De Marchi 139250020f 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 ff61116d06 Fixes for Ecore Api changes.
Add libintl.h



SVN revision: 50074
2010-07-06 17:59:30 +00:00
Christopher Michael 5a95840222 More 'make net module compile' changes.
SVN revision: 46982
2010-03-08 06:36:02 +00:00
Sebastian Dransfeld bb71e2bdc7 Make non static functions EINTERN
SVN revision: 45447
2010-01-22 20:01:01 +00:00
Viktor Kojouharov 262c5e2bfd remove all traces of the resize callback function. it iss not needed anymore
SVN revision: 40942
2009-06-07 09:00:05 +00:00
Davide Andreoli ad5c3603bb Rename all icons in E-MODULE-EXTRA
SVN revision: 39774
2009-03-28 13:30:14 +00:00
Carsten Haitzler 483cd80710 remove fake mouse up calls.
SVN revision: 36232
2008-09-25 01:40:59 +00:00
Christopher Michael 88550fe7a5 Fix up net & screenshot modules to play nicely.
SVN revision: 33338
2008-01-04 06:39:21 +00:00
Sebastian Dransfeld 6ba7e280cb Revert gadcon menu change.
SVN revision: 32936
2007-12-02 16:41:11 +00:00
Christopher Michael 1edcdab1a7 Fix for gadcon menu breakage.
SVN revision: 32875
2007-11-25 05:43:29 +00:00
Sebastian Dransfeld 2f3ac93e24 Fix for gadcon update. Not added new gadcon functions.
SVN revision: 31732
2007-09-16 01:46:52 +00:00
Miculcy Brian 0f587b2489 http://bugs.enlightenment.org/show_bug.cgi?id=185 fixed
SVN revision: 31582
2007-08-31 15:01:41 +00:00
Viktor Kojouharov 37a5b2094a use the gadcon popup
SVN revision: 31434
2007-08-20 19:03:03 +00:00
Viktor Kojouharov f7b8e096e5 increase of the "resolution" of the speed info in the MB range
SVN revision: 29179
2007-03-26 17:06:32 +00:00
Christopher Michael 69b39c9a3c Ravenlock's Bsd patch for allowing net module to work on *Bsd
SVN revision: 29165
2007-03-26 01:25:10 +00:00
Sebastian Dransfeld bc67187f68 Remove unused variables.
Move static function declarations to .c file. A static function is local
to a .c file, so no point in declaring them in a .h file.


SVN revision: 28742
2007-03-15 13:27:12 +00:00
Massimo Maiurana 3cdabcbd55 restored i18n support
SVN revision: 28560
2007-03-05 00:09:40 +00:00
Christopher Michael aed9c89774 Add option to allow disabling of popup window on mouse_over.
SVN revision: 28412
2007-02-21 02:13:35 +00:00
Viktor Kojouharov 006cb7a4cd changed the info that is displayed in the popup
SVN revision: 28378
2007-02-16 23:47:54 +00:00
Christopher Michael 735d25b743 Added option to always show text on the icon.
Added option to launch an app on double-click.


SVN revision: 28355
2007-02-14 08:23:45 +00:00
Christopher Michael 9fc831fc96 Fix mouse,in being sent multiple times by using edje signals, not
evas_callbacks. Thanks rephorm :)


SVN revision: 28343
2007-02-13 08:37:13 +00:00
Miculcy Brian 747be7eb46 Now it's possible to lock the popup using a single click on the net icon, so the popup will stay open. Unlock with another click.
SVN revision: 28342
2007-02-13 06:40:08 +00:00
Christopher Michael 2e3c6d180b Remove option to set the poll time. Use a hard-coded time that should be
plenty fast enough to get activity changes.


SVN revision: 28327
2007-02-12 21:23:07 +00:00
Christopher Michael b46d14e9a7 Fix net popup window position for shelf stacking weirdness.
SVN revision: 28325
2007-02-12 19:05:03 +00:00
Miculcy Brian b21cc0cfdc New configuration option which allows to define the activity level.
SVN revision: 28322
2007-02-12 15:55:25 +00:00
Christopher Michael 3519b6907f Fix popup window position.
SVN revision: 28310
2007-02-11 23:20:19 +00:00
Michael Jennings cec260cdd5 Sun Feb 11 04:28:49 2007 Michael Jennings (mej)
devilhorns' new net module.
----------------------------------------------------------------------


SVN revision: 28305
2007-02-11 15:28:53 +00:00