Re: uxtheme.dll

2003-10-03 Thread Kevin Koltzau
for GTK themes. When I first suggested this project to the list there was suggestions that doing it with uxtheme.dll was the way to go. I agreed, but didn't have winxp to play with, so I kept tinkering on this project with the intent of learning a bit more about how wine works (which meant learning

Re: uxtheme.dll

2003-10-03 Thread Ivan Leo Murray-Smith
Going along that path, one possible way to integrate theme support from your native window manager is to extend the .msstyles theme format to enable using exported functions for drawing some controls, which could then make direct GTK/etc calls. I don't think Alexandre will like the idea of wine

Re: uxtheme.dll

2003-10-03 Thread Vincent Béron
Le ven 03/10/2003 à 18:51, Ivan Leo Murray-Smith a écrit : Going along that path, one possible way to integrate theme support from your native window manager is to extend the .msstyles theme format to enable using exported functions for drawing some controls, which could then make direct

Re: uxtheme.dll

2003-10-01 Thread James Gregory
this project to the list there was suggestions that doing it with uxtheme.dll was the way to go. I agreed, but didn't have winxp to play with, so I kept tinkering on this project with the intent of learning a bit more about how wine works (which meant learning a lot about how GDI and X works, though I

Re: uxtheme.dll

2003-10-01 Thread Steven Edwards
its ready. Thanks Steven --- James Gregory [EMAIL PROTECTED] wrote: Some time ago I started hacking in support for GTK themes. When I first suggested this project to the list there was suggestions that doing it with uxtheme.dll was the way to go. I agreed, but didn't have winxp to play

Re: uxtheme.dll

2003-09-30 Thread Roderick Colenbrander
I hope you know what you will begin with. (For the ones that don't know uxtheme.dll is the dll that takes care of all theming on WinXP and it is the dll that dlls like comctl32 and all others use for theming) Some time ago I checked out uxtheme.dll a bit and it seems that it needs changes all

RE: uxtheme.dll

2003-09-30 Thread Mike Jackson
] On Behalf Of Shachar Shemesh Sent: Tuesday, 30 September 2003 6:26 PM To: Roderick Colenbrander Cc: Kevin; [EMAIL PROTECTED] Subject: Re: uxtheme.dll Roderick Colenbrander wrote: I hope you know what you will begin with. (For the ones that don't know uxtheme.dll is the dll that takes care of all theming

Re: uxtheme.dll

2003-09-30 Thread Mike Hearn
On Tue, 2003-09-30 at 04:43, Sylvain Petreolle wrote: This isnt a windows system dll. Isnt that another attempt like cards.dll ? Sure it is. Apps attempt to LoadLibrary it if they detect it to enhance their drawing capabilities. It's conceivable that one day apps will not have this backwards

Re: uxtheme.dll

2003-09-30 Thread Roderick Colenbrander
Ofcourse I want uxtheme.dll implemented since it is a very cool new dll but I think a problem will be that it needs changes in various parts of Wine. Mainly in the user and common control area. Microsoft releases two sets of comctl32 dlls. One of them is meant for backwards compatibility

Re: uxtheme.dll

2003-09-30 Thread Dimitrie O. Paun
On September 30, 2003 10:57 am, Roderick Colenbrander wrote: Microsoft releases two sets of comctl32 dlls. One of them is meant for backwards compatibility. Do you have any idea why would that be needed? -- Dimi.

Re: uxtheme.dll

2003-09-30 Thread Roderick Colenbrander
The old dll that MS ships with WindowsXP is comctl32.dll version 5.x which is the same as on other Windows versions. Version 6 is the new version. One of the biggest changes is that this updated dll handles both the user and common controls. Further all controls now include some area in which

Re: uxtheme.dll

2003-09-30 Thread Kevin Koltzau
will begin with. (For the ones that don't know uxtheme.dll is the dll that takes care of all theming on WinXP and it is the dll that dlls like comctl32 and all others use for theming) Some time ago I checked out uxtheme.dll a bit and it seems that it needs changes all over Wine. As I understand

uxtheme.dll

2003-09-29 Thread Kevin
I started work porting a windows app using winelib, and hit an issue relating to the fact that there is currently no implementation of uxtheme.dll (and more importantly, no headers, of which would be enough to compile the app as it dynamically loads all the uxtheme dlls as needed, and falls

Re: uxtheme.dll

2003-09-29 Thread Sylvain Petreolle
This isnt a windows system dll. Isnt that another attempt like cards.dll ? --- Dimitrie O. Paun [EMAIL PROTECTED] a écrit : On Mon, 29 Sep 2003, Kevin wrote: Because of this, I've been thinking about beginning an implementation of uxtheme.dll. I am curious if someone has already taken