Commit Graph

5951 Commits

Author SHA1 Message Date
Vincent Torri 64f80081aa define MAX for all OS, instead of plenty #include
SVN revision: 40012
2009-04-13 10:25:11 +00:00
Carsten Haitzler 098cd6dbcd shoudl just use regular win.
SVN revision: 39976
2009-04-11 08:42:24 +00:00
Vincent Torri 0e6ad24c60 remove useless subwindow code
SVN revision: 39975
2009-04-11 08:33:44 +00:00
Andreas Volz 3ef3df1e5d free EinaList at exit
SVN revision: 39971
2009-04-11 07:22:33 +00:00
Andreas Volz 9731c6abf6 unused variable
SVN revision: 39970
2009-04-11 07:22:05 +00:00
Andreas Volz 1231a05e4a change to Eina_List
SVN revision: 39969
2009-04-11 07:20:54 +00:00
Gustavo Sverzut Barbieri 886a0bca01 move batch directory creation to ecore_file.
as suggested by raster, this could be abstracted into ecore-file and
other applications could use it as well.



SVN revision: 39965
2009-04-11 07:10:12 +00:00
Carsten Haitzler 51eff88b13 allow for system startup .orders... not great - but simple.
SVN revision: 39963
2009-04-11 06:20:11 +00:00
Carsten Haitzler dae9cf2027 cedrice pathc to stop seg of eillume on unload,
SVN revision: 39962
2009-04-11 06:13:34 +00:00
Gustavo Sverzut Barbieri 689146ef39 Alternative version for those legacy systems without atfile-source
atfile source is posix 2008, but some legacy systems seems to not ship
with those, in that case use slower version.



SVN revision: 39958
2009-04-11 05:40:18 +00:00
Gustavo Sverzut Barbieri 44a5dff5f9 improve string copying.
SVN revision: 39956
2009-04-11 04:40:01 +00:00
Andreas Volz 04e9e183bd change only dpms options if enabled
-> for the first step this is ok, but needs more work. The enabling logic in this dialog is two levels depth.


SVN revision: 39954
2009-04-10 22:50:11 +00:00
Andreas Volz 095dcb2614 NULL
SVN revision: 39953
2009-04-10 22:37:36 +00:00
Andreas Volz dd2e62448b - possible configure the xscreensaver options only if activated
- now used Eina_List for storage (I hope I used it correct...)


SVN revision: 39952
2009-04-10 22:34:15 +00:00
Davide Andreoli 9b12de4e79 Patch by semernin to fix bug#272
thanks



SVN revision: 39951
2009-04-10 22:28:58 +00:00
Davide Andreoli d115dd1b4e * e_fwin.c : Make some cleaning here. Whitespaces + functions grouped better.
No changes to code made.  Still need to rename some functions in a more
standard way.



SVN revision: 39950
2009-04-10 22:02:32 +00:00
Andreas Volz 48c93ccbae allow editing of Custom Screenlock only if activated check
SVN revision: 39949
2009-04-10 21:17:58 +00:00
Andreas Volz 4f039155d0 GUI improvement by enable/disable radio group chained to checkbox state
SVN revision: 39946
2009-04-10 18:52:18 +00:00
Sergey Semernin 5c62d98898 From: Sergey Semernin <sergey.semernin@gmail.com>
In E_Dialog space key grabbed before than keydown event reach to entry widget
in E_Entry_Dialog.
Thus, I forced ungrab space key in e_entry_dialog_show constructor.
Moreover, I added escape key handling in _e_entry_cb_key_down callback.

I do not delete space key grub in E_Dialog, because, I think, it may be
usefull here, 
when we need selecting controls with space. Or not?




SVN revision: 39936
2009-04-10 14:21:36 +00:00
Vincent Torri 992597240a allow compilation of battery module on mac os x
SVN revision: 39935
2009-04-10 14:05:50 +00:00
Vincent Torri de2e6e5be1 ecore_x_window_del -> ecore_x_window_free
SVN revision: 39931
2009-04-10 12:18:36 +00:00
Andreas Volz dc515d9973 set minimum size for cards list
SVN revision: 39928
2009-04-10 11:11:49 +00:00
Vincent Torri 7506655ca9 ecore_x_window_del -> ecore_x_window_free
SVN revision: 39924
2009-04-10 09:57:57 +00:00
Gustavo Sverzut Barbieri 619ed37fed eina_stringshare_replace() gets in!
I was replicating this code in many places, it should go into eina itself.

It's the right way to change strings that you don't know are
stringshared before, since it will first add a reference and then
remove, making it impossible to have references to go 0 and string
being released before adding new references, fixing the following
possible problem:

   x = eina_stringshare_add("x");
   replace(x, x);

   then:
   incorrect_replace(const char **b, const char *a) {
      eina_stringshare_del(*b); /* reference gets to 0 */
      eina_stringshare_add(a); /* BUG!!! */
      *b = a;
   }




SVN revision: 39903
2009-04-08 18:25:02 +00:00
Christopher Michael 3836c7ba2b Remove erroneous widget_data_get call
SVN revision: 39902
2009-04-08 18:02:27 +00:00
Carsten Haitzler 9b244804e9 add a cmd-line opt to skip format test...
SVN revision: 39891
2009-04-08 08:30:13 +00:00
Daniel Kolesa d2975ac947 Make profiles working again. Thanks to Sachiel for the fix :)
SVN revision: 39889
2009-04-07 18:29:13 +00:00
Viktor Kojouharov 9a303630ae shorten some strings
SVN revision: 39886
2009-04-06 21:22:12 +00:00
Viktor Kojouharov 170993d5bd convert the fm config dialog into a toolbook.
gui for 2 new options -> windows_modifiers (this should really be the default) and case insensitivity


SVN revision: 39883
2009-04-06 20:39:09 +00:00
Gustavo Sverzut Barbieri d68e3158cf minor speedups.
the e_main.c change might prove useful as it will minimize path
resolution a lot, something that is not that cheap, even more durin e
startup where disc is still spinning due other tasks
starting. HOWEVER, it might bring problems to those using pre
GLibC-2.4 (we're at 2.9 these days) and maybe people using Solaris or
BSD, let's see if they have any trouble.



SVN revision: 39880
2009-04-06 12:59:58 +00:00
Christopher Michael 9533dd4543 Formatting, Whitespace Removal, Remove useless return in one function,
Initialize variables to NULL.


SVN revision: 39872
2009-04-05 17:07:18 +00:00
Christopher Michael 794ef7748f Formatting
SVN revision: 39870
2009-04-05 16:58:49 +00:00
Carsten Haitzler b443014888 default theme is now the grey wp at the start... should have a better frame
for it - need to improve the thum frames anyway. also the all desktops/this
desk/this screen now works. need to next add add pic/add exhcange/add
gradient buttons



SVN revision: 39867
2009-04-05 16:10:50 +00:00
Carsten Haitzler cbe9342be3 for e_thumb.. use preload!
SVN revision: 39866
2009-04-05 03:49:16 +00:00
Davide Andreoli ffd353ac39 * E_Fwin:
Ctrl+w -> close the window
Ctrl+a -> select all



SVN revision: 39865
2009-04-05 00:26:31 +00:00
Davide Andreoli 431f044b2e Fix 'Open' command of EFM. was broken since last commit...
Done a quick fix, that code need a refactor


SVN revision: 39864
2009-04-04 23:28:37 +00:00
Christopher Michael 6d1cdc0e47 Remove silly return at end of function.
SVN revision: 39861
2009-04-04 19:40:00 +00:00
Carsten Haitzler f913e6a018 comments for todo...
SVN revision: 39856
2009-04-04 14:37:07 +00:00
Carsten Haitzler debd837c0b add a slide out panel/tab to put options and stuff in.
SVN revision: 39855
2009-04-04 14:15:08 +00:00
Carsten Haitzler 634485d2bc and properly hide windows that ask to be iconified on start!
SVN revision: 39853
2009-04-04 07:18:55 +00:00
Davide Andreoli 7d4e6b8413 * Add a submenu to the efm open-with menu, to show suggested applications.
So you don't have to load the whole applications list to choose between 2 or 3 options :)

Hope you like it
Dave
 

SVN revision: 39852
2009-04-04 04:14:01 +00:00
Davide Andreoli 9a4621d5f5 * Patch from Sergey to merge the 2 list in the open with dialog.
With a very little fix in table colspans.

Thanks
Dave


SVN revision: 39849
2009-04-04 01:20:32 +00:00
Davide Andreoli 101b2f7cf3 * Fix wallpaper import on language with floating point separator different that ','
The edc was generated as 

   align: 1,3333 1,333;

and thus edje_cc refused to build.

I have done a quick HACK. simply set locale to "C" and the reset to previous locale.
If someone know a cleaner way to solve this issue please let me know.

POSSIBLE ALTERNATIVE SOLUTION:
Why we don't make E able to directly load image files?
I think it's just a matter of 2 lines of code...or am I wrong?
Doing this we can remove all this hackish code to generate edc.

Thanks
Dave



SVN revision: 39848
2009-04-04 00:37:57 +00:00
Davide Andreoli 7beda31923 Patch by Sergey to apply efm window geometry if found in the custom file.
Thanks :)

SVN revision: 39847
2009-04-03 22:41:31 +00:00
Davide Andreoli 3553055573 Scale dialogs icons with e_scale
SVN revision: 39846
2009-04-03 22:05:18 +00:00
Gustavo Sverzut Barbieri 1532f064cb use scaled icon size.
SVN revision: 39843
2009-04-03 21:45:33 +00:00
Rafael Antognolli b7234a0020 Changing e_conf_wallpaper_import dialog.
It has been split into two other dialogs, one for wallpaper file selection
and another one for import settings.
Also the "Set As Background" efm action just calls the latter because the file
was already selected.



SVN revision: 39831
2009-04-02 03:46:22 +00:00
Viktor Kojouharov 3805af7fcc files can now be dragged over destination files (not just subdirs). In that case, the source file will be sent to the directory that houses the dest file. No more seggies
SVN revision: 39829
2009-04-01 17:03:09 +00:00
Cedric BAIL 782923ada6 * illumine: Cleanup handler destruction.
SVN revision: 39828
2009-04-01 16:57:29 +00:00
Viktor Kojouharov e33ba2d5f0 ctrl+n duplicates the current fwin
SVN revision: 39826
2009-04-01 08:28:21 +00:00