Commit Graph

7732 Commits

Author SHA1 Message Date
Christopher Michael e56d841f6a Remove need for extra variables. Use E_NEW & E_FREE.
Cleanup Formatting. Remove Whitespace.


SVN revision: 40682
2009-05-15 19:53:25 +00:00
Christopher Michael 898b6f3cae Fix typo, Thanks Viktor :)
SVN revision: 40681
2009-05-15 18:25:55 +00:00
Christopher Michael 6fd36aa8b4 use E_NEW & E_FREE macros
SVN revision: 40680
2009-05-15 18:11:41 +00:00
Christopher Michael 3f11b601c6 Remove some unneeded variables. Formatting & Whitespace removal.
SVN revision: 40679
2009-05-15 17:59:02 +00:00
Carsten Haitzler 87842cb5e7 several patches from sergey etc.
SVN revision: 40668
2009-05-15 11:47:28 +00:00
Vincent Torri a78ae94975 underquoted parameters
SVN revision: 40663
2009-05-15 08:58:54 +00:00
Cedric BAIL 1f059b500f * wallpaper2: Prevent the creation of the idler instead of forcing it's destruction.
SVN revision: 40645
2009-05-14 16:37:07 +00:00
Carsten Haitzler 8d8687beae some rabid idle enter checks
SVN revision: 40642
2009-05-14 14:28:44 +00:00
Gustavo Sverzut Barbieri 609964ff1a unbreak pager and mouse wheel.
pagers should not rely on events on the edje object as it might get
lots of event replicas if there is a chain of swallows/groups/smarts
and they repeat events.

the new theme exports an e.eventarea part that will get the events and
pager will try to use it, if not fallback to the old behavior.

I cannot test this now, please say if it does not work.



SVN revision: 40616
2009-05-13 11:38:12 +00:00
Massimo Maiurana 5c7dec69a6 updating french and italian translations
SVN revision: 40615
2009-05-13 10:59:23 +00:00
Gustavo Sverzut Barbieri 2a87d880da new glow image that scales better.
large buttons like those in syscon were very ugly with old glow since
it would scale the gradient. now the glow is just in the borders, the
middle is a plain color.



SVN revision: 40614
2009-05-13 02:05:44 +00:00
Gustavo Sverzut Barbieri 4b229ee6da integrate systray translation/gettext into e17.
SVN revision: 40613
2009-05-13 01:28:11 +00:00
Gustavo Sverzut Barbieri e7d14ee3ef remove useless defines.
SVN revision: 40612
2009-05-13 01:27:20 +00:00
Gustavo Sverzut Barbieri 2db93a335f pass make distcheck, set svn:ignore.
SVN revision: 40611
2009-05-13 01:11:32 +00:00
Gustavo Sverzut Barbieri bf3c0ad3a5 finish systray merge to e/src/modules.
systray is now officially supported (at least by me :-P) and is
included in standard e17 module set.



SVN revision: 40610
2009-05-13 00:45:21 +00:00
Gustavo Sverzut Barbieri 4a30e53e1d first step to move systray to e/src/modules.
SVN revision: 40609
2009-05-13 00:06:08 +00:00
Gustavo Sverzut Barbieri fcdd2678dd don't be so strict on debhelper/cdbs so it builds on ubuntu-hardy.
SVN revision: 40602
2009-05-12 14:44:07 +00:00
Gustavo Sverzut Barbieri 66efea30a0 remove unused/undefined variables, these are in their own dir now.
SVN revision: 40601
2009-05-12 14:43:32 +00:00
Gustavo Sverzut Barbieri 8dd6986eac unbreak drag of windows in pager.
SVN revision: 40600
2009-05-12 14:42:51 +00:00
Massimo Maiurana 461b560cde adding esperanto translation
SVN revision: 40595
2009-05-11 16:54:12 +00:00
Massimo Maiurana f912afc499 updating esperanto translation
SVN revision: 40585
2009-05-11 11:33:16 +00:00
Carsten Haitzler e59ed55f2f remove norender. bad move!
SVN revision: 40568
2009-05-09 11:58:52 +00:00
Carsten Haitzler 256d7e9b78 fix theme for syscon - was bad... mmkay
SVN revision: 40567
2009-05-09 11:03:11 +00:00
Carsten Haitzler 3036531147 mount by label first - more useful in real life
SVN revision: 40566
2009-05-09 10:26:12 +00:00
Rodrigo Cesar Lopes Belem f318289b2c Added cvs to Build-Depends on packages that use autopoint.
SVN revision: 40564
2009-05-09 02:24:06 +00:00
Massimo Maiurana 2b36b427b7 updating french translation
SVN revision: 40553
2009-05-08 16:18:15 +00:00
Massimo Maiurana 6179406192 updating french and italian translations
SVN revision: 40547
2009-05-08 10:58:41 +00:00
Daniel Kolesa 8ea331680f Updated Czech translation for E.
SVN revision: 40545
2009-05-08 07:15:57 +00:00
Viktor Kojouharov 648d75caab Larger backgrounds can now be set to scroll whenever a E changes between desks. Kind of like a transition, but uses only one (the first desk's), larger wallpaper instead of several wallpapers for all desks, and it overrides the transition settings if activated.
The option can currently be activated from Virtual Desktops Settings -> Advanced. A better home and preview would be better for these settings.

In more detail, this option can make a wallpaper, larger than the geometry of the zone, scroll appropriately with each desk change. Consider a nice panorama picture, which is as wide as the total desks' width. Then, at most, E will scroll the background by 1 / (number of desks) for each desk change. The direction of the scrolling is dependent on the desk change itself. Also, the user can specify a coefficient of maximum scrolling for each axis. If the coefficient is 0, the wallpaper will not move.

More advanced animations can be constructed with edje. The data item "directional_freedom" "(1|0) (1|0)" can toggle the actual wallpaper scrolling done by E for each axis. A message with the current x/y position, panning w|h, and zone w|h is sent to the background edje with each desk change animation tick. An example embryo script that handles the message, and changes a hypothetical "a1" part in the "e/desktop/background" group is shown below:

         public message(Msg_Type:type, id, ...) {
            if (type == MSG_INT_SET) {
               new x = getarg(2);
               new y = getarg(3);
  //	     new max_x = getarg(4);
  //	     new max_y = getarg(5);
  //	     new w = getarg(6);
  //	     new h = getarg(7);
               custom_state(PART:"a1", "default", 0.0);
               set_state_val(PART:"a1", STATE_FILL_POS, 0.0, 0.0, -x / 4, -y / 4);
               set_state(PART:"a1", "custom", 0.0);
            }
         }




SVN revision: 40543
2009-05-07 18:39:55 +00:00
Carsten Haitzler 9825672529 make bg's deletes when not visible - bettr if you have 1000+ bg's
:)



SVN revision: 40534
2009-05-07 13:27:11 +00:00
Hannes Janetzek 4d24d0eafb everything module: remove old files
SVN revision: 40528
2009-05-06 14:49:01 +00:00
Hannes Janetzek af1c362210 everything module: theme fixed
SVN revision: 40527
2009-05-06 14:39:21 +00:00
Hannes Janetzek cd647efc07 initial checkin of 'everything' module with sources for apps, windows and settings
SVN revision: 40526
2009-05-06 14:20:45 +00:00
Gustavo Sverzut Barbieri 080c0be517 minor improvements to dialogs asking to enter presentation mode.
SVN revision: 40521
2009-05-06 12:00:19 +00:00
Massimo Maiurana f278176eae updated with french translation
SVN revision: 40520
2009-05-06 10:30:37 +00:00
Carsten Haitzler 4fa7de4c9c 1. fm rename in-place patch. ok for now - probably should fix it up later
2. config module fix



SVN revision: 40508
2009-05-05 14:27:28 +00:00
Daniel Kolesa b182a76f59 Fixed debian stuff everywhere.
SVN revision: 40505
2009-05-04 17:36:48 +00:00
Rodrigo Cesar Lopes Belem b439212429 Added libtool as Build-Depends to everything that uses
DEB_CONFIGURE_SCRIPT := ./autogen.sh

SVN revision: 40500
2009-05-03 14:32:23 +00:00
Massimo Maiurana 39e330c0be updating greek translation
SVN revision: 40484
2009-05-02 13:18:11 +00:00
Daniel Kolesa 6205c83495 updated Czech translation of E.
SVN revision: 40476
2009-04-30 16:36:32 +00:00
Massimo Maiurana f0d6438d9e updating greek translations
SVN revision: 40475
2009-04-30 16:31:11 +00:00
Massimo Maiurana a4855a00c6 updating french and italian translations
SVN revision: 40473
2009-04-30 10:13:31 +00:00
Massimo Maiurana 586ef62d8d another little typo to fix
SVN revision: 40461
2009-04-29 15:39:00 +00:00
Massimo Maiurana 153904f98d fixed a little typo
SVN revision: 40460
2009-04-29 15:36:12 +00:00
Massimo Maiurana dff22a2f9e updating french translations
SVN revision: 40459
2009-04-29 15:23:55 +00:00
Aron Xu cd51cc6181 Updated Simplified Chinese translations by Luo Jie <lililjlj@gmail.com>, added hr to LINGUAS.
SVN revision: 40457
2009-04-29 13:49:32 +00:00
Massimo Maiurana 520f076582 updating portuguese translation
SVN revision: 40456
2009-04-29 10:45:28 +00:00
Viktor Kojouharov f0936b5b5b disable the slider if flip animations are off
SVN revision: 40455
2009-04-28 21:01:20 +00:00
Viktor Kojouharov d9f453e443 improvements to the tabbed e_fwin. changing tabs will not cause a reload, since each tab holds its own fm object.
ctrl+w will close the current tab. if there are no more tabs, the window will be closed


SVN revision: 40447
2009-04-28 17:38:09 +00:00
Massimiliano Calamelli 5f4f968653 Added #define _POSIX_HOST_NAME_MAX for OSes that don't know it (NetBSD in detail)
SVN revision: 40445
2009-04-28 15:50:32 +00:00