Commit Graph

875 Commits

Author SHA1 Message Date
Eric Schuele d6dab499bc Icons compliments of Manowarror. (Hopefully I've put them in the correct location)
SVN revision: 39850
2009-04-04 02:52:07 +00:00
Carsten Haitzler 315df37115 some more shadows to wp dialog
SVN revision: 39825
2009-04-01 02:16:05 +00:00
Carsten Haitzler 6ed65911db matching theme changes too...
SVN revision: 39812
2009-03-31 07:42:25 +00:00
Davide Andreoli f71eea73b2 * Add a new menu api call :
EAPI void
e_menu_item_disabled_set(E_Menu_Item *mi, int disable)

Setting the menu item 'disabled' will gray it out and will make it unselectable.



SVN revision: 39802
2009-03-30 13:59:56 +00:00
Carsten Haitzler c6b5f985fe a new wallpaper config dialog. only partly done. try it anyway. it's fun.
SVN revision: 39801
2009-03-30 13:34:32 +00:00
Davide Andreoli f9b373fe0e * Fix mouse click on button widget (when using theme icon, not edje icon)
SVN revision: 39786
2009-03-28 22:26:23 +00:00
Davide Andreoli 7e1d04f5d0 * Fix e_util_dialog_internal() icon
* Scale better the efm progress



SVN revision: 39784
2009-03-28 22:16:12 +00:00
Davide Andreoli 9a28058961 Make the file manager progress look black and white
SVN revision: 39703
2009-03-25 00:14:58 +00:00
Davide Andreoli 6e235313ba place the progress rectangle on the bottom left and don't overlap with the scrollbars
SVN revision: 39688
2009-03-24 18:04:19 +00:00
Davide Andreoli fe7edcd4f8 EFM progress monitor:
* use edje_box instead of evas_box
 * remove entry_del_handler (use the free_cb instead)
 * sizeof(buf) instead of PATH_MAX in snprintf

Thanks gustavo for suggestions :)



SVN revision: 39687
2009-03-24 17:57:30 +00:00
Davide Andreoli 355be05673 Simple notification when a file operation needs attention
SVN revision: 39684
2009-03-24 15:29:02 +00:00
Viktor Kojouharov a1f957c0e5 stop the warnings
SVN revision: 39613
2009-03-21 20:50:48 +00:00
Davide Andreoli 684fbe122c Make syscon accept mouse click also on button icons.
SVN revision: 39503
2009-03-16 11:02:24 +00:00
Davide Andreoli eb2d1db1dc Icon rename finished. Now we have a fully compliant icon theme :)
now I'm going to fix E-MODULE-EXTRA...


SVN revision: 39495
2009-03-15 17:41:46 +00:00
Davide Andreoli 3d41cbb20d More icon works, this commit include changes to the icons on the desktop.
You will probably loose desktop icons until you get a fresh profile. Or you can edit the
.desktop files in .e/e/fileman/favorites (new icons name are: user-desktop, user-home, computer and user-temp)

Sorry for bothering... the next commit should be the last ;)



SVN revision: 39419
2009-03-08 23:09:48 +00:00
Davide Andreoli ea90154e61 Show progress from the slave process in every efm windows.
All the graphics need to be done! For now just a red rectangle, 5 labels and
a really simple progress bar. ... (toma: ping)

You can change the position of the info box from e_fwin.c line  329. A configuration will come soon....
The configuration will also let you choose on witch window you want to see the info box
(every window, just on the source of copy operation, just on the dest or both)



SVN revision: 39416
2009-03-08 14:11:24 +00:00
Davide Andreoli 49fecd25b7 More icons renamed
SVN revision: 39400
2009-03-06 22:18:15 +00:00
Davide Andreoli 283fdc3092 wops...remove debug code
SVN revision: 39397
2009-03-06 19:22:10 +00:00
Davide Andreoli 1101c58d9f more icons renamed
SVN revision: 39396
2009-03-06 19:17:12 +00:00
Davide Andreoli fc66fc7c73 More icon renamed, for more info look at default.edc (around line 22650). I'm keeping there a mapping between e old names and fdo ones.
SVN revision: 39374
2009-03-05 02:39:50 +00:00
Davide Andreoli 2904ca6d46 ICON: enlightenment/themes -> preferences-desktop-theme
SVN revision: 39373
2009-03-04 23:53:28 +00:00
Davide Andreoli f64a04ec46 Make a new function:
e_util_icon_theme_set(Evas_Object *obj, const char *icon)
to use in place of e_util_edje_icon_set.
The new function (as it works for menu) search the icon in E theme and FDO themes
according to the config option.

SVN revision: 39371
2009-03-04 22:29:23 +00:00
Gustavo Sverzut Barbieri 003a843d2a fileman bookmarks now respect icon theme overrides setting.
SVN revision: 39356
2009-03-04 03:02:01 +00:00
Gustavo Sverzut Barbieri cb629d5a56 More FDO icons work, now able to choose which one has precedence.
SVN revision: 39355
2009-03-04 02:56:27 +00:00
Carsten Haitzler 3554bd24f3 more glow fix.
SVN revision: 39324
2009-03-02 05:47:14 +00:00
Carsten Haitzler 889608cc5a make press glow easier to see
SVN revision: 39323
2009-03-02 05:46:37 +00:00
Miculcy Brian 9cee5ead3c Changed about dialog size and AUTHORS cleanup.
SVN revision: 39321
2009-03-02 02:41:53 +00:00
Gustavo Sverzut Barbieri 82a8ab89df Major refactor of e_fm2_icon_get() and minor optimizations.
* split e_fm2_icon_get() to make it reuse more code paths.

 * lots of new internal functions with _e_fm2_icon_ prefix are born,
   try to reuse them as much as possible so we have less places to
   change if we move to something else (hint: using FreeDesktop.Org
   icons)

 * optimize e_fm2_icons_update() and few others to do not copy
   sd->realpath all the time, it is loop invariant there.

 * comparison of mime icon "DESKTOP" and "THUMB" are now fast pointer
   comparison since they're all eina_stringshare'd.

 * themes can now differentiate between file types, like 'fifo',
   'socket' or even 'executable'.

 * common extension comparisons are bit faster, not using glob pattern
   matching but rather reusing code to find out last '.' and then
   comparing them in optimal way. I added E_FM2_SIMPLE_STRCASE_FILES
   to make it even faster if one wants, left disabled by now.




SVN revision: 39313
2009-03-01 18:15:44 +00:00
toma 71c8bbb7bb A couple of new EFM icons. More to follow. Would like some feedback on the size. They have a 2px pad so they really standout on the menu at the moment. Took away the shadow too as they tend to look bad at 16px.
SVN revision: 39244
2009-02-26 14:07:33 +00:00
Viktor Kojouharov 9bbc8158bd edge and corner binding infrastructure. If you have an old config, enable the conf_edgebindings module and hit 'Reset to defaults' to get edge desktop switching.
The edge/corner picker needs some love from someone who is not artistically challenged.  And a proper module icon as well.


SVN revision: 39220
2009-02-25 22:21:46 +00:00
toma e0cfef818f Dummy icons for now.
SVN revision: 39187
2009-02-25 02:26:29 +00:00
toma ecf3ae828b Remove unused icon.
SVN revision: 39037
2009-02-16 12:33:37 +00:00
toma 8402adb4b9 New for cursor and its module
SVN revision: 38959
2009-02-06 13:25:44 +00:00
toma b00b69c435 Module icons... most of them. Some still need some love, but Ill get around to that. Shout out to Sachiel!
SVN revision: 38953
2009-02-05 14:34:01 +00:00
toma 63c5d8c9d5 Toolbar and ibar icon.
SVN revision: 38942
2009-02-04 12:14:46 +00:00
toma 0a8df728c0 E gets a new engine. Its a Harley bike engine\!
SVN revision: 38940
2009-02-04 11:43:47 +00:00
toma 9d2b9cbb75 Settings and a warning icon for the profiles delete dialog.
SVN revision: 38922
2009-02-03 13:46:28 +00:00
Carsten Haitzler a03639d55f battery config.... better!
SVN revision: 38920
2009-02-03 12:45:38 +00:00
toma b5aa90e3c2 And heres the interaction icon. Also included, reset for profiles dialog.
SVN revision: 38918
2009-02-03 12:09:24 +00:00
toma 8ea62fba61 Gimme mah icons back
SVN revision: 38875
2009-02-01 03:35:43 +00:00
Carsten Haitzler ca0d7dfcfc profile config now offers reset and is spruiced up to be like the wizard one
supportign the profile.desktop descriptions and icons.



SVN revision: 38872
2009-02-01 01:32:09 +00:00
toma 05d1563e4e Open, Close.
SVN revision: 38870
2009-02-01 00:49:38 +00:00
toma 396e29e501 Place holder icons for now.
SVN revision: 38861
2009-01-31 03:57:03 +00:00
toma ed7896b34b Profiles icon.
SVN revision: 38843
2009-01-29 14:56:29 +00:00
Carsten Haitzler 4ca5b9578c fix complaints from edje min size calc.
SVN revision: 38838
2009-01-29 07:25:17 +00:00
Carsten Haitzler 7576e5a311 move ilist widget filling to a idler... defers a chunk of work to idle time
over a period of time keeping e interactive and usable.



SVN revision: 38836
2009-01-29 06:29:36 +00:00
Carsten Haitzler 691a489728 make arrow clicks on toolbar scroll 1 step.
SVN revision: 38829
2009-01-28 12:36:50 +00:00
toma 870fdd5796 Autoscoll. Figured the question mark would work well with dialogs so i bumped that in there till further notice. The big question about Interactions dialog, is if it is an appropriate name for it. Its just a couple thumbscroll settings.
SVN revision: 38733
2009-01-23 13:02:16 +00:00
toma b7b219ccfb Icon theme icon, Show/Hide windows icon is used, added an eject icon for efm, not that its being used yet but its now there.
SVN revision: 38696
2009-01-22 13:50:17 +00:00
Carsten Haitzler fd8cb46a11 syscon -> labels!
SVN revision: 38695
2009-01-22 05:41:33 +00:00