Re: [E-devel] [marc_soft@merlins.org: Bug#253247: E gets confused about window layering]
Mike Frysinger wrote: On Thursday 10 June 2004 03:42 pm, Kim Woelders wrote: OK, there is a problem with stacking when a window has WM_TRANSIENT_FOR set to something that is not another client window, e.g. root or client group. Will fix. this related to the bug where sometimes you cant focus anything until you focus another window and then focus back with the mouse ? seems to happen mostly with changing desktops ... Hardly. I wish I had a reliable way to reproduce this one. or the bug (which seems to have started with pre3) where child windows freak out unless the parent window is around ? for example, with xmms, if the man player window isnt sticky, but the playlist one is, switching virtual desktops will cause the playlist to end up seemingly random places off the screen ... i also noticed that when moving the main xine window, the dependent player window moves in relation to it ? Yes, that may very well be related. Could you please report those in the bug tracker :) /Kim --- This SF.Net email is sponsored by the new InstallShield X. From Windows to Linux, servers to mobile, InstallShield X is the one installation-authoring solution that does it all. Learn more and evaluate today! http://www.installshield.com/Dev2Dev/0504 ___ enlightenment-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
[E-devel] Selective Transparency Update
Hi, Here's a patch to todays pull. Biggest change is how to manage the settings. There is a 'Advanced Settings' button that spawns a new dialog for picking and choosing. Jaron Omega [EMAIL PROTECTED] ---CUT HERE diff -ur e16/e/src/E.h e16.st/e/src/E.h --- e16/e/src/E.h 2004-06-07 09:46:07.0 -0700 +++ e16.st/e/src/E.h2004-06-12 13:49:45.0 -0700 @@ -78,6 +78,10 @@ #define ST_PAGER 9 #define ST_WARPLIST10 +#define ICLASS_ATTR_OPAQUE 0 /* No transparency */ +#define ICLASS_ATTR_BG 1 /* Background transparency*/ +#define ICLASS_ATTR_GLASS 2 /* Glass transparency */ + #else #include @@ -1229,6 +1233,21 @@ charwarpiconified; charwarpfocused; } warplist; +#if USE_IMLIB2 + struct + { + int border; + intwidget; + inticonbox; + intmenu; + intmenu_item; + inttooltip; + intdialog; + inthilight; + intpager; + intwarplist; + } st_trans; +#endif int deskmode; int movemode; int resizemode; @@ -2538,6 +2557,7 @@ voidSettingsAudio(void); voidSettingsSpecialFX(void); voidSettingsBackground(Background * bg); +voidSettingsSelectiveTransparency(void); voidSettingsIconbox(char *name); voidSettingsGroups(EWin * ewin); voidSettingsDefaultGroupControl(void); diff -ur e16/e/src/conf.h e16.st/e/src/conf.h --- e16/e/src/conf.h2004-02-11 07:39:12.0 -0800 +++ e16.st/e/src/conf.h 2004-06-09 23:42:48.0 -0700 @@ -143,6 +143,17 @@ #define CONTROL_GROUP_SWAPMOVE 1372 #define CONTROL_THEME_TRANSPARENCY 1373 +#define CONTROL_ST_BORDER 1375 +#define CONTROL_ST_WIDGET 1376 +#define CONTROL_ST_ICONBOX 1377 +#define CONTROL_ST_MENU 1378 +#define CONTROL_ST_MENU_ITEM 1379 +#define CONTROL_ST_TOOLTIP 1380 +#define CONTROL_ST_DIALOG 1381 +#define CONTROL_ST_HILIGHT 1382 +#define CONTROL_ST_PAGER 1383 +#define CONTROL_ST_WARPLIST 1384 + #define ICLASS_NAME 350 #define ICLASS_NORMAL 351 #define ICLASS_CLICKED 352 diff -ur e16/e/src/config.c e16.st/e/src/config.c --- e16/e/src/config.c 2004-05-07 15:29:30.0 -0700 +++ e16.st/e/src/config.c 2004-06-09 23:46:54.0 -0700 @@ -902,9 +902,41 @@ case CONTROL_USER_BG: Conf.backgrounds.user = i2; break; +#ifdef USE_IMLIB2 case CONTROL_THEME_TRANSPARENCY: Conf.theme.transparency = i2; break; + case CONTROL_ST_BORDER: +Conf.st_trans.border = i2; +break; + case CONTROL_ST_WIDGET: +Conf.st_trans.widget = i2; +break; + case CONTROL_ST_ICONBOX: +Conf.st_trans.iconbox = i2; +break; + case CONTROL_ST_MENU: +Conf.st_trans.menu = i2; +break; + case CONTROL_ST_MENU_ITEM: +Conf.st_trans.menu_item = i2; +break; + case CONTROL_ST_TOOLTIP: +Conf.st_trans.tooltip = i2; +break; + case CONTROL_ST_DIALOG: +Conf.st_trans.dialog = i2; +break; + case CONTROL_ST_HILIGHT: +Conf.st_trans.hilight = i2; +break; + case CONTROL_ST_PAGER: +Conf.st_trans.pager = i2; +break; + case CONTROL_ST_WARPLIST: +Conf.st_trans.warplist = i2; +break; +#endif case CONTROL_DOCKSTARTPOS: sscanf(s, "%*s %d %d ", &Conf.dock.startx, &Conf.dock.starty); break; @@ -3898,7 +3930,19 @@ fprintf(autosavefile, "1368 %i\n", (int)Conf.tooltips.showroottooltip); fprintf(autosavefile, "1369 %i %i %i\n", (int)Conf.pagers.sel_button, (int)Conf.pagers.win_button, (int)Conf.pagers.menu_button); +#ifdef USE_IMLIB2 fprintf(autosavefile, "1373 %i\n", (int)Conf.theme.transparency); + fprintf(autosavefile, "1375 %i\n", (int)Conf.st_trans.border); + fprintf(autosavefile, "1376 %i\n", (int)Conf.st_trans.widget); + fprintf(autosavefile, "1377 %i\n", (int)Conf.st_trans.iconbox); + fprintf(autosavefile, "1378 %i\n", (int)Conf.st_trans.menu); + fprintf(autosavefile, "1379 %i\n", (int)Conf.st_trans.menu_item); + fprintf(autosavefile, "1380 %i\n", (int)Conf.st_trans.tooltip); + fprintf(autosavefile, "1381 %i\n", (int)Conf.st_trans.dialog); + fprintf(autosavefile, "1382 %i\n", (int)Conf.st_trans.hilight); + fprintf(autosavefile, "1383 %i\n", (int)Conf.st_trans.pager); + fprintf(autosavefile, "1384 %i\n", (int)Conf.st_trans.warplist); +#endif #ifdef HAS_XINERAMA fprintf(autosavefile, "2013 %i\n", (int)Conf.extra_head); #endif diff -ur e16/e/src
Re: [E-devel] X.org
On Fri, 11 Jun 2004 15:28:50 -0400 [EMAIL PROTECTED] babbled: (B (B> On Thu, 10 Jun 2004 13:12:11 +0900, Carsten Haitzler said: (B> (B> > hey! dont rule out XVideo... u havent seen emotion yet have you? (B> > (B> > ./emotion dvd:// (B> > (B> > woop dvd in a canvas! :) (and divx, avi, wmv, mpeg, .mov) :) (B> (B> Yes, but why would the *WINDOW MANAGER* be doing that? ;) (B (Bit wouldn't... but a filemanager... desktop background manager (to play a movie (Bas your desktop bg)... might :) (B (B (B-- (B- Codito, ergo sum - "I code, therefore I am" -- (BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED] $B7'<*(B - $BFrom Windows to Linux, servers to mobile, InstallShield X is the (Bone installation-authoring solution that does it all. Learn more and (Bevaluate today! http://www.installshield.com/Dev2Dev/0504 (B___ (Benlightenment-devel mailing list (B[EMAIL PROTECTED] (Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] [e17] ecore collect2 error
On Sat, 24 Apr 2004 12:58:31 +0200 Antonio Palladini <[EMAIL PROTECTED]> babbled: (B (B> Hello list, (B (Bsame reason as ecore_config. c++ de-mangling avoidance was not in the header. (Bits there now in cvs. :) (B (B> i have created the following test app for ecore : (B> (B> - snipp --- (B> #include (B> (B> int main(int argc,const char** argv) (B> { (B> Ecore_DList *list; (B> (B> ecore_init(); (B> ecore_app_args_set(argc,argv); (B> (B> list = ecore_dlist_new(); (B> ecore_dlist_init(list); (B> (B> ecore_shutdown(); (B> (B> return 0; (B> } (B> (B> snap (B> and compiled with : (B> (B> g++ -L/usr/local/lib -lecore -I/usr/local/include ecore-test.cpp -o (B> ecore_test (B> (B> i got the following errors : (B> (B> /tmp/ccbxr0mw.o(.text+0x28): In function 'main' : (B> :undefined reference to 'ecore_dlist_new()' (B> (B> the same for ecore_dlist_init() and ld returns exit status 1. (B> (B> The libs are installed in /usr/locale/lib and both functions are (B> listet in ecore.a. (B> A rebuild of ecore or the full EFL do not help. (B> (B> I have added the ls output from my lib directory. (B> (B> maybe a missing ecore.pc in pkgconfig ? (B> Or my fault, any help is needed. (B> (B> (B> -- (B> Regards (B> (B> Antonio (B> (B (B (B-- (B- Codito, ergo sum - "I code, therefore I am" -- (BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED] $B7'<*(B - $BFrom Windows to Linux, servers to mobile, InstallShield X is the (Bone installation-authoring solution that does it all. Learn more and (Bevaluate today! http://www.installshield.com/Dev2Dev/0504 (B___ (Benlightenment-devel mailing list (B[EMAIL PROTECTED] (Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] ecore_config with g++
On Sun, 25 Apr 2004 01:23:19 +0200 Antonio Palladini <[EMAIL PROTECTED]> babbled: (B (B> (B> Am 24.04.2004 23:39:15 schrieb(en) dan sinclair: (B> (B> > gcc main.c `ecore-config --cflags` `ecore-config --libs` (B> > without problem, but if I try to use g++ I get the following: (B> (B> the same with : (B> (B> g++ main.c -L/usr/local/lib -lecore -I/usr/local/include (B> (B> Not a ecore-config issue i think. (B (Bfixed in cvs. don't use g++ if u are just doing a c program anyway - but the (Bheaders didn't protect against c++ use... fixed in cvs now. (B:) (B (B-- (B- Codito, ergo sum - "I code, therefore I am" -- (BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED] $B7'<*(B - $BFrom Windows to Linux, servers to mobile, InstallShield X is the (Bone installation-authoring solution that does it all. Learn more and (Bevaluate today! http://www.installshield.com/Dev2Dev/0504 (B___ (Benlightenment-devel mailing list (B[EMAIL PROTECTED] (Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] issue with evas cvs on k6-2 + 2.6.3
On Mon, 19 Apr 2004 11:39:35 +1200 Dale Anderson <[EMAIL PROTECTED]> (Bbabbled: (B (B> Hi All (B> (B> Just wondering if anyone else is having issues with evas built with (B> --enable-mmx on a k6-2 box. (B> I got an illegal instruction running evas_software tests and run it (B> through gdb , it appears for some reason the SIGILL isnt being (B> recognised/caught when testing for mmx2 on launch. (B (Bit's been fixed in cvs. :) (B (B-- (B- Codito, ergo sum - "I code, therefore I am" -- (BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED] $B7'<*(B - $BFrom Windows to Linux, servers to mobile, InstallShield X is the (Bone installation-authoring solution that does it all. Learn more and (Bevaluate today! http://www.installshield.com/Dev2Dev/0504 (B___ (Benlightenment-devel mailing list (B[EMAIL PROTECTED] (Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] images in CVS are marked as text
On Sun, 9 May 2004 05:02:50 -0700 (PDT) Shish <[EMAIL PROTECTED]> (Bbabbled: (B (B> It seems that the images in CVS were checked in as plain unix text, so anyone (B> checking them out with the native windows client will have them corrupted by (B> being changed to windows' line endings. I got round this by checking out CVS (B> with -kb (force binary), but they should really be marked as binary in the (B> repositry rather than leaving it to the client. (B> (B> Also, why are images being put in a text-centric version control system (B> anyway? IMHO, it'd be better to have source code in CVS and extra data in (B> tarballs. (B (Bthen tarballs need to be checked in with -kb too eh? :) it's easier to include (Bindividual images - u change or add 1 image u only cvs in/upload that much data. (Byou have a tarball of images and add/change/delete 1 - you upload a whole new (Btarball - which may be many Mb. (B (Bthe images u found are probably mistakenly untagged with -kb (B (B (Bthis can be fixed with a (B (Bcvs admin -kb file.png (B (Bpretty easy :) (B (B (B-- (B- Codito, ergo sum - "I code, therefore I am" -- (BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED] $B7'<*(B - $BFrom Windows to Linux, servers to mobile, InstallShield X is the (Bone installation-authoring solution that does it all. Learn more and (Bevaluate today! http://www.installshield.com/Dev2Dev/0504 (B___ (Benlightenment-devel mailing list (B[EMAIL PROTECTED] (Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] Imlib2 New Release for DR16.7
On Sun, 16 May 2004 00:53:04 -0700 Ben Rockwood <[EMAIL PROTECTED]> babbled: (B (B> When DR16.7 is released, distros and sites will likely start (B> distributing it and they'll likely upgrade (if they don't use it (B> already) Imlib2 to the latest version which is currently 1.1.0 (Sept (B> 03). Should we cut a new Imlib2 prior to the release of DR16.7? (B (Bmy plans was: (B (B1. get evoak's edje objects done then put it in cvs. (B2. do a round of releases of EFL with a "teaser" of evoak. (B (B (B-- (B- Codito, ergo sum - "I code, therefore I am" -- (BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED] $B7'<*(B - $BFrom Windows to Linux, servers to mobile, InstallShield X is the (Bone installation-authoring solution that does it all. Learn more and (Bevaluate today! http://www.installshield.com/Dev2Dev/0504 (B___ (Benlightenment-devel mailing list (B[EMAIL PROTECTED] (Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] evas_fb palette
On Sat, 12 Jun 2004 12:23:20 +0800 Stafford Horne <[EMAIL PROTECTED]> babbled: (B (B> Hello, (B> (B> The order of getting the palette pointer and setting the data was (B> screwed up for the linear palette. Here is my patch. (B> (B> Also the comments didn't make too much sense. (B> (B> On a side note, playing DVDs with emotion on the FB is pretty cool. (B (Byou are using it in an 8bpp fb? it works? (B (B-- (B- Codito, ergo sum - "I code, therefore I am" -- (BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED] $B7'<*(B - $BFrom Windows to Linux, servers to mobile, InstallShield X is the (Bone installation-authoring solution that does it all. Learn more and (Bevaluate today! http://www.installshield.com/Dev2Dev/0504 (B___ (Benlightenment-devel mailing list (B[EMAIL PROTECTED] (Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel
[E-devel] Linuxworld, August 2004
Good news guys... (B (BWe have managed to score an .ORG booth at Linuxworld, San Francisco in August. (BShow details here: (B (Bhttp://www.linuxworldexpo.com/live/12/events/12SFO04A (B (BThe show goes from August 2-5 (the actual trade show from August 3-5). Now (Banyone living in the area or going there - do you want to help out at the e.org (Bbooth? do you have any code demos you want to show off? any t-shirts, brochures (Betc. to give out? an themes to show off? do you just want to hang out and be (Bpart of the fun? want to talk people into changing wm's or just say good things? (B (Bwell... here's a good chance. come along. let us know you are - we will have (Bexhibition passes etc. (B (B-- (B- Codito, ergo sum - "I code, therefore I am" -- (BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED] $B7'<*(B - $BFrom Windows to Linux, servers to mobile, InstallShield X is the (Bone installation-authoring solution that does it all. Learn more and (Bevaluate today! http://www.installshield.com/Dev2Dev/0504 (B___ (Benlightenment-devel mailing list (B[EMAIL PROTECTED] (Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] Evas GL engine w/ DRI
On Fri, 23 Apr 2004 17:26:02 +0200 Tilman Sauerbeck <[EMAIL PROTECTED]> (Bbabbled: (B (B> Hi, (B> I just did a debug build of x.org to find out why Evas' GL engine (B> doesn't work with DRI drivers (e.g., mga), however, it works just fine (B> with x.org :) (B> (B> Can someone confirm that x.org (resp. XFree86 4.4) fixes the problem? (B (Bi don't know about x.org - but the xfree86 4.3 DRI drivers for mga (matrox (Bg200,400,450 etc.) just corrupt memory as best i can tell. nvidia, radeon and (Bi810 driver do work though. my guess is the mga drivers are a little broken :) (Bmaybe x.org fixed them. :) (B (B-- (B- Codito, ergo sum - "I code, therefore I am" -- (BThe Rasterman (Carsten Haitzler)[EMAIL PROTECTED] $B7'<*(B - $BFrom Windows to Linux, servers to mobile, InstallShield X is the (Bone installation-authoring solution that does it all. Learn more and (Bevaluate today! http://www.installshield.com/Dev2Dev/0504 (B___ (Benlightenment-devel mailing list (B[EMAIL PROTECTED] (Bhttps://lists.sourceforge.net/lists/listinfo/enlightenment-devel
Re: [E-devel] Linuxworld, August 2004
FYI, here's the current attendance list from what I know: atmos: tentative benr: yes digitalfallout: tentative Evolution: tentative KainX: yes (but with another booth) raster: yes RbdPngn: tentative shadoi: yes vac: yes Xenith: yes I'll try to keep an updated list at http://ningerso.atmos.org/files/linuxworld_2004.txt On Sat, Jun 12, 2004 at 12:20:46PM +0900, Carsten Haitzler wrote: > Good news guys... > > We have managed to score an .ORG booth at Linuxworld, San Francisco in August. > Show details here: > > http://www.linuxworldexpo.com/live/12/events/12SFO04A > > The show goes from August 2-5 (the actual trade show from August 3-5). Now > anyone living in the area or going there - do you want to help out at the e.org > booth? do you have any code demos you want to show off? any t-shirts, brochures > etc. to give out? an themes to show off? do you just want to hang out and be > part of the fun? want to talk people into changing wm's or just say good things? > > well... here's a good chance. come along. let us know you are - we will have > exhibition passes etc. > > -- > - Codito, ergo sum - "I code, therefore I am" -- > The Rasterman (Carsten Haitzler)[EMAIL PROTECTED] > ?$B7'<* - ?$B Tokyo, Japan (?$BEl5~ ?$BF|K\) > > > --- > This SF.Net email is sponsored by the new InstallShield X. > >From Windows to Linux, servers to mobile, InstallShield X is the > one installation-authoring solution that does it all. Learn more and > evaluate today! http://www.installshield.com/Dev2Dev/0504 > ___ > enlightenment-devel mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel -- | Nathan Ingersoll \\ Computer Systems & Network Coordinator | | [EMAIL PROTECTED] \\ http://www.ruralcenter.org| | http://ningerso.atmos.org/ \\ Rural Health Resource Center | signature.asc Description: Digital signature