Commit Graph

740 Commits

Author SHA1 Message Date
Carsten Haitzler 7dbd1098b2 actually include images in tarball
SVN revision: 35338
2008-08-06 05:19:27 +00:00
Gustavo Sverzut Barbieri c28047e3a1 Add mixer module.
This is the mixer modules as in:

      git://staff.get-e.org/users/barbieri/e_module-mixer.git

it's being used with ALSA backend for some time without problems and
it's ready for inclusion. We still lack OSS4 engine.


SVN revision: 35282
2008-08-01 03:08:16 +00:00
Christopher Michael f6dc37a244 Theme patch from Toma. Remove unused glints.
SVN revision: 35072
2008-07-12 06:25:32 +00:00
Christopher Michael b249ede4f1 Patch from Toma to remove duplicate color: entries for some parts.
SVN revision: 35051
2008-07-10 15:19:50 +00:00
Christopher Michael 4ac01dbba6 Small patch from Toma to fix Logout dialog not having a fixed: 1 1; for
certain parts.


SVN revision: 35017
2008-07-07 09:53:09 +00:00
Carsten Haitzler 0a8ffffa5f add in gadman for desktop. happy dave! :)
SVN revision: 34610
2008-05-19 04:37:34 +00:00
Christopher Michael d9c072ea86 Add a very simple config dialog for deleting window remembers.
This is very very basic. Someone may want to redo the icon for this...I
didn't bring my crayons :)


SVN revision: 34477
2008-05-06 09:30:21 +00:00
Nicholas Hughart 6d14620446 Add alert popup to battery module. Was broken after batget changes. Popup is now themeable and also a bit less intrusive.
SVN revision: 34454
2008-05-03 19:51:49 +00:00
Christopher Michael 49f507fd4f Use correct font_class for desktop icons in default theme.
SVN revision: 34355
2008-04-23 20:06:49 +00:00
Eric Schuele 0f9c14c1a8 Toma's fix for the battery module's poor width calc.
SVN revision: 34352
2008-04-23 05:51:02 +00:00
Carsten Haitzler 1ae409e642 translatable configuration title patch
SVN revision: 33931
2008-03-05 05:39:55 +00:00
Carsten Haitzler 2df5c4159c gee.. um.. software-16 support in e17 - but beware! buggy buggy buggy. do not
use this unless you wish to have much pain :)

ummm... scrollframe thumb scroll has some heuristics on it to work better -
exec returns exec handles...


SVN revision: 33794
2008-02-20 04:12:59 +00:00
Carsten Haitzler 5c2641e5dd 1. fix abort in tiff loader
2. slidesel theme garbage trailing. nuke
3. icon obj can have pre-scale set not. default is as before.
4. printf-- in slidesel


SVN revision: 33677
2008-02-05 12:00:19 +00:00
Carsten Haitzler 05fc729bf8 new widgety stuff
SVN revision: 33662
2008-02-02 05:26:07 +00:00
Christopher Michael 407167eceb No need for 2 color statements.
SVN revision: 33661
2008-02-02 01:15:14 +00:00
Carsten Haitzler 5e8fe37119 entry disabled changes in.
SVN revision: 33529
2008-01-19 01:00:37 +00:00
Carsten Haitzler b70f5a0ecc e:
1. configure/build changes to allow cross-compiling painlessly
2. pager module namespace changes - this was still dirty afdter the namespace
cleanup, so clean it up
3. add a powersave subsystem - doesnt have an "automatic" way to turn on and
off right now, this i think is best provided by modules (that do things like
monitor acpi status's (eg close lid of laptop), AC power status etc. etc.
this allows e to nicely defer "power" expensive actions to avoid disk
spinups etc.
4. move to use the new ecore poller system  - discussed long ago as part of
power management/saving issues. now it exists
5. add a canvas idle flush call that helsp cope with the new shm greedy
software x11 engine stuff
6. use the new powersave subsystem where appropriate
7. fix non-zeroed/initted memory access in e_fm_main
8. fix mem leak for e menus
9. remove ipc handlers for changed/removed config values
10. use animaotr not timer for menu scrolls - then menu scrolls obey the fps
config
11. fix up timer/poll happienss of cursor idle stuff
12. remove avoid damage from popups for now - causing problems
13. change battery and temp readouts to b e shorter so they fit
14. pager can emit signals on focus change for mini-windows now
15. temperature module now uses a slave process and uses stdin/out to talk to
it and get output - this makes e smoother as in my expereicne i found getting
the temp on my laptop actually took like 200ms so e "hang" for 200ms while
reading the acpi files - so now the subprocess does it and just writesa back
to e when it gets it.

ecore:
1. add ecore_pollers. see the documentation on them in doxygen comments :)
2. fix timers to only go off when they have to - bug there that made e's
select time out a LOT more than it needed to. defensive coding hid the
problem. now fixed. e should be much more power friendly now.
3. formatting/niceness in ecore_exe stuff
4. some comments on comments with SIGIO ideas vs. select
5. add call to be able to add an idle enterer at the start of the list of
them, not just the end (as has been the default)
6. fix ecore_evas to support auto evas idler calls after 0.5 secs of idle in
all canvases - and to do it right
7. if argb destination - set the shape EVENT shape (to mask out events in
transparent regions much like shape does withotu translucency)
8. in ecore_x add support for the event shape

evas:
1. fix cache to work properly and not just always fill up (as it seemed to
like to think cahce useage dropped below 0 when it didnt and thus just
over-fill)
2. software x11 engine now ONLY uses shm segments - no ximages over the
socket. this ximage hack was there to avoid the 2 round trips involved in
setting up an shm image - now i mitigated that wih an shm image cache pool.
it keeps shm images around and repurposes them for new update regions if
appropriate. this means many fewer shm creates (about 1/100th the number) and
since we recycle the memory less 0 memory page filling by the kernel - in the
end, i recorded about a 10-20% speedup over the old software x11 engine.
simple tests i have seen up to 120% speedups. idle flush now does something -
it frees all the cached shm segments. it has a hard-coded limit of 4mb worth
of shm segments (or 32 segments - whichever comes first) to keep around. once
can never complain much about speedups methinks :). also evas will defer sync
until the NEXT frame is written - this means evas can calculate the next
frame of data while x dma's/copies the images to the screen at the same time
(if you hve a dual core or multi-cpu machnike or your xserver is able to use
DMA to copy image data to the screen/video ram then this should see a decent
speedup).


SVN revision: 33448
2008-01-11 07:33:57 +00:00
Carsten Haitzler 4a2bc0e79c patches, caching fixes, zone dynamic creation/deletion handling, stuff.
SVN revision: 33127
2007-12-14 05:57:16 +00:00
Christopher Michael f0467da019 Allow more space for moving/placeing items in the toolbar. This removes the
large "gap" at the begining & end of the toolbar.
Also remove the "shaped" option as it's not needed in default theme.


SVN revision: 32982
2007-12-04 19:39:00 +00:00
Christopher Michael ad1add71a5 Add rar icon to Makefile.am
SVN revision: 32932
2007-12-02 09:08:25 +00:00
Christopher Michael 4cee74fcff Add icon for rar types.
SVN revision: 32931
2007-12-02 09:07:40 +00:00
Christopher Michael b8a1ead5c1 Add icon for Rar types also.
SVN revision: 32930
2007-12-02 09:07:17 +00:00
Christopher Michael b61867b266 Orientation support in the theme also.
SVN revision: 32524
2007-11-09 20:59:05 +00:00
Christopher Michael b28acd50ac Check in edc for upcoming toolbar.
SVN revision: 32228
2007-10-31 10:05:32 +00:00
Miculcy Brian 52ee7cd8e3 Removed, parted as desktop_files.tar.gz and desktop_order.tar.gz .
SVN revision: 32053
2007-10-13 11:31:38 +00:00
Miculcy Brian 4b5a3d2a6d Removed ~/.e/e/applications/all as it isn't used anymore. Correct dir is ~/.local/share/applications, so applications.tar.gz was parted into desktop_files.tar.gz which contains the .desktop files and is extracted to ~/.local/share/applications/ and desktop_order.tar.gz which contains the menu and bar files and is extracted to ~/.e/e/ .
SVN revision: 32052
2007-10-13 11:28:54 +00:00
Carsten Haitzler 43a5794c88 buttom patch from lok and seb's shelf bug fix.
SVN revision: 31974
2007-10-05 06:05:16 +00:00
Christopher Michael ee23572537 Added basic rubber band support to efm.
SVN revision: 31763
2007-09-19 19:38:25 +00:00
Carsten Haitzler 1ab387ad73 more work on wiz - fix up bold font text part refs so they stay bold. lang
list - but empty. need to fill.


SVN revision: 31749
2007-09-17 12:03:47 +00:00
Carsten Haitzler 745c95731d keep style - a first test.
SVN revision: 31745
2007-09-17 05:07:50 +00:00
Carsten Haitzler e7de4981f9 enable/disable back/next as needed. allow pages to do it too.
SVN revision: 31743
2007-09-16 18:32:32 +00:00
Carsten Haitzler b2efad1ba9 workin on da wiz - working on page infrastructure - just test pages right now.
SVN revision: 31693
2007-09-13 13:56:36 +00:00
Carsten Haitzler 670d147845 bah. until i have a better idea - i'm going "boring".
SVN revision: 31666
2007-09-09 22:46:58 +00:00
Christopher Michael 18aabd0126 Add a "noresize" border style (not the same as noresize_dialog). This fixes
bug #179.


SVN revision: 31644
2007-09-07 17:24:31 +00:00
Carsten Haitzler 7b8ae9704c asparagus!
SVN revision: 31524
2007-08-26 14:33:41 +00:00
Eric Schuele 3f3043c31f Add a bold tag to the default theme. ( <b> ... </b> )
SVN revision: 31509
2007-08-26 05:05:36 +00:00
Carsten Haitzler 5f6fa14f73 add.
SVN revision: 31503
2007-08-26 02:31:19 +00:00
Carsten Haitzler 5080050d30 be able to pass distcheck!
SVN revision: 31497
2007-08-25 13:49:47 +00:00
Viktor Kojouharov b0d4ef2ea9 info popup for gadcon clients
SVN revision: 31432
2007-08-20 18:50:20 +00:00
Carsten Haitzler 33e5c2d4b2 workin' on my wiz.
SVN revision: 31384
2007-08-18 15:55:48 +00:00
Carsten Haitzler 8128302bd5 lok's xdnd work
SVN revision: 31378
2007-08-18 10:37:16 +00:00
manowarrior 80d85dea05 i'm sick of the old crap..
SVN revision: 31279
2007-08-12 23:45:03 +00:00
Carsten Haitzler dd9a509678 working on wizard - nothing yet. dont use it! you'll regret it!
SVN revision: 31268
2007-08-12 14:34:53 +00:00
Christopher Michael fd3197d74e Fix alternate shelf w/ inset style for recent swallow color changes.
SVN revision: 30924
2007-07-21 03:39:14 +00:00
Carsten Haitzler 024a4dc7a2 and add image to Makefile.am!!!!! remember!
SVN revision: 30707
2007-07-10 15:19:22 +00:00
manowarrior f92eeb63b6 New Desktop icon
SVN revision: 30702
2007-07-10 13:06:35 +00:00
Carsten Haitzler ee2298b2db 1. fix a lot of things so they pass make distcheck - so many things have
broken. guys - need to be more careful!
2. asparagus
3. some extra docs/comments for evas


SVN revision: 30696
2007-07-10 00:13:26 +00:00
manowarrior fa2c1d6552 New icon for "Root" (~/.e/e/fileman/favorites/root.desktop). If you already havea copy of this .desktop on your desktop update it (cp ~/.e/e/fileman/favorites/root.desktop ~/Desktop)
SVN revision: 30679
2007-07-09 14:12:30 +00:00
manowarrior 9ed5ec4a33 Update the Home icon a bit for more contrast. Rename it to much the FDO spec.
SVN revision: 30658
2007-07-08 14:32:34 +00:00
manowarrior 62a46239e1 commit new mime type icons and new folder icons with new names to much the FDO icon naming spec: http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
now make efm to work with those :-)
stay tuned for more


SVN revision: 30654
2007-07-08 10:41:20 +00:00