Commit Graph

67 Commits

Author SHA1 Message Date
Carsten Haitzler 8d40aa91a4 net module - del popup on shutdown too to avoid leak 2019-05-13 16:12:33 +01:00
Kai Huuhko e70a0ffe50 Follow changes in E 0.19.99 development 2015-03-15 21:48:22 +02:00
maxerba 622dd495a1 Updated to build with e19. For older versions of E checkout the enlightenment-0.18 branch. 2014-03-28 21:19:19 +01:00
Mike Blumenkrantz dbce48fd31 sed -i 's/(E_Gadcon_Client_Class/(const E_Gadcon_Client_Class/g'
SVN revision: 74475
2012-07-27 08:35:53 +00:00
Christopher Michael ba33f26f4c Net: Fix gadcon client aspect for ppurka.
SVN revision: 71784
2012-06-07 09:04:11 +00:00
Boris Faure 3dc75c8e9b E-MODULES-EXTRA: add const to _gc_label() functions
SVN revision: 65208
2011-11-14 22:17:19 +00:00
Vincent Torri 0006de336f fix possible undef ref when gettext is disabled or not installed
SVN revision: 59997
2011-06-06 17:36:38 +00:00
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 ee3a80e3ac And call correct configure calls.
SVN revision: 46984
2010-03-08 06:46:52 +00:00
Christopher Michael 85d663223c Call proper function for gc register/unregister.
SVN revision: 46983
2010-03-08 06:44:28 +00:00
Christopher Michael 5a95840222 More 'make net module compile' changes.
SVN revision: 46982
2010-03-08 06:36:02 +00:00
Christopher Michael 4a7c33e669 More work on getting net to compile.
SVN revision: 46981
2010-03-08 06:23:08 +00:00
Christopher Michael bd897a0606 Work on getting net module to compile again.
SVN revision: 46980
2010-03-08 06:16:41 +00:00
Sebastian Dransfeld bb71e2bdc7 Make non static functions EINTERN
SVN revision: 45447
2010-01-22 20:01:01 +00:00
Christopher Michael 817925d225 Make net compile again.
SVN revision: 45262
2010-01-17 15:59:00 +00:00
Christopher Michael 7cbc837b4a formatting.
SVN revision: 43930
2009-11-23 17:08:25 +00:00
Daniel Kolesa d60a297b10 EMODULES: Fix & Unify autofoo stuff everywhere, fix dist tarballs support, add ability to create dist tarball of all modules.
SVN revision: 41571
2009-08-03 14:49:56 +00:00
semernin 3137cdef25 List of changes:
1. Gadcon sities:
      -- 'E_Gadcon_Site' enum to list all available sities,
      -- added 'is_site' callback for distinguish gadcon sities,
      -- 'e_gadcon_site_is_*' helpers written to use in gadget modules,
      -- gadcon config dialogs modified to show only gadgets that appropriate
         to selected gadcon site,
      -- all gadget modules updated for using new callback.
      
      When callback is not provided in module, then gadget can be used in 
      any gadcon site.
      
   2. Filemanager:
      -- added error icon to unexisting path dialog,
      -- added callback 'func.abort' to 'E_Fm2_Op_Registry_Entry' to specify
         abort operation sequence (if not provided, then operation is not
         cancelable),
      -- added parameter to 'e_fm2_op_registry_entry_add' to specify abort
         method on construct 'E_Fm2_Op_Registry_Entry' or make non-cancelable
         operation if this function is not provided,
      -- added 'e_fm2_operation_abort' call to cancel efm2 operation,
      -- added method '_e_fm2_operation_abort_internal' that represent efm2
         default handler of operation cancelling,
      -- 'done' and 'total' fields of 'E_Fm2_Op_Registry_Entry' changed to
         off_t type, also all message handlers modified to work with it
         (to show progress for large files correctly),
      -- improved file operation progress processing,
      -- added cancel button to operation progress gadget in filemanager window,
      -- added delete file glyph to operation progress gadget,
      -- improved status message for efm2 operation progress.

   3. Filemanager slave:
      -- fixed critical bug in message handling via stdin/stdout,
      -- fixed critical bug in removing task from list,
      -- improved 'E_FM_OP_ABORT' handling,
      -- fix rollback counting on moving files.

   4. Fileman_opinfo module:
      -- a new theme writed: status string and gadget for view operation status
         in summary and detail modes,
      -- summary mode: operation glyph, state message, progressbar, abort button,
      -- detail mode: all for summary + from filename, to filename,
      -- summary/detailed button works as trigger,
      -- added source of module theme and used images.
      
   4. Pathbar module:
      -- non-critical fix, just for safety.

   Also patch contains several minor updates to serve main task.


SVN revision: 41224
2009-06-29 14:38:03 +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
Davide Andreoli e79e8dfe29 Update all EXTRA modules to Gadcon_client_class V3
SVN revision: 37451
2008-11-04 05:54:59 +00:00
Christopher Michael 776baedaf9 Update to use eina_stringshare
SVN revision: 37345
2008-10-31 01:39:42 +00:00
Cedric BAIL 32155e088b Remove Evas list from all E-MODULES.
SVN revision: 36977
2008-10-22 13:53:03 +00:00
Cedric BAIL 8e35733d96 Use pkg-config instead of enlightenment-config.
SVN revision: 36670
2008-10-15 12:39:06 +00:00
Carsten Haitzler 483cd80710 remove fake mouse up calls.
SVN revision: 36232
2008-09-25 01:40:59 +00:00
Eric Schuele 0d3d2343dc Making sure all module's configuration dialogs have appropriate names and classes consistent with the rest of the e_modules.
SVN revision: 34630
2008-05-20 14:53:12 +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 3fcd098cb2 Forgot this revert for gadcon menu.
SVN revision: 32964
2007-12-03 06:24:25 +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 1e454a6ef8 get text from module locale
SVN revision: 32629
2007-11-12 11:17:35 +00:00
Sebastian Dransfeld 0c12db6980 Use module dir for nls, make modules relocateable.
SVN revision: 32599
2007-11-12 04:15:53 +00:00
Christopher Michael 0daaaf9481 Use correct edj file for icon.
SVN revision: 32243
2007-10-31 14:15:19 +00:00
Christopher Michael 9329bb28dc Update net mod for recent breakage.
SVN revision: 32242
2007-10-31 14:13:52 +00:00
Miculcy Brian 3be5040da0 API breakage: e_widget_entry_add() allows now to set a cb function for text change events.
SVN revision: 32009
2007-10-07 21:26:48 +00:00
Sebastian Dransfeld 0ba90c9c74 Implement id_new()
SVN revision: 31737
2007-09-16 03:32:39 +00:00
Sebastian Dransfeld 02c668dab0 Fix for gadcon...
SVN revision: 31733
2007-09-16 01:48:35 +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
Peter Wehrfritz 313ebefbee *API BREAK* in Ecore Data
SVN revision: 30971
2007-07-25 17:06:42 +00:00
David Walter Seikel f72586c783 All the cool kids are doing it, er I mean make way for removing the m4 directory, just like all the other modules.
SVN revision: 30136
2007-05-29 12:21:09 +00:00
Christopher Michael 52ae6330dd Convert net module to new desktop file.
SVN revision: 29265
2007-03-30 21:20:34 +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