ChangeSet ID: 19507
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/08/12 10:52:56
Modified files:
dlls/comctl32 : theming.c
Log message:
Frank Richter <frank.richter(a)gmail.com>
Determining the superclass for a window subclassed for theming doesn't
work - e.g. Delphi buttons have the classname "TButton" for which no
superclass will be found. Instead, use initial subclass window procs
that have the subclass hardcoded and store it for the "real" subclass
window proc.
Patch: http://cvs.winehq.org/patch.py?id=19507
Old revision New revision Changes Path
1.1 1.2 +27 -29 wine/dlls/comctl32/theming.c
ChangeSet ID: 19505
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/08/12 10:52:25
Modified files:
programs/winecfg: En.rc
Log message:
Richard Cohen <richard(a)daijobu.co.uk>
Update English neutral version of winecfg graphics tab, and make the
groupboxes not overlap.
Patch: http://cvs.winehq.org/patch.py?id=19505
Old revision New revision Changes Path
1.47 1.48 +10 -3 wine/programs/winecfg/En.rc
ChangeSet ID: 19500
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2005/08/12 10:51:13
Modified files:
dlls/uxtheme : system.c msstyles.h msstyles.c
Log message:
Frank Richter <frank.richter(a)gmail.com>
Enhance uxtheme to store the themed system metrics in the registry and
also backup the old metrics. That way, themed system colors are set
even uxtheme was not loaded and initialized yet, and when a theme is
deactivated, the colors prior to the activation are restored as well.
Also, not having to set the system colors in uxtheme startup works
around weird problems where SetSystemColors() ended up being called
from inside window creation and this seemingly led to some creation
message being sent twice.
Patch: http://cvs.winehq.org/patch.py?id=19500
Old revision New revision Changes Path
1.21 1.22 +206 -3 wine/dlls/uxtheme/system.c
1.8 1.9 +1 -1 wine/dlls/uxtheme/msstyles.h
1.16 1.17 +6 -6 wine/dlls/uxtheme/msstyles.c