FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Theme names under XP
Posts: 252
Joined: Tue Oct 25, 2005 02:48 PM
Theme names under XP
Posted: Tue Mar 14, 2006 10:20 PM

Is possible to detect XP theme names?
I think paint the background color of outlook class based on XP theme (blue, silver or green...).

Regards,
Maurilio

Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
Theme names under XP
Posted: Wed Mar 15, 2006 08:38 PM

Maurilio,

The answer is supposedly here:

http://www.codeproject.com/csharp/xptheme.asp

It shows how to read this information from the registry. However, the key, ColorName, that it says holds the theme color, doesn't exist in my registry (and I am using themes). So, I don't know the anwser.

James

FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Posts: 9022
Joined: Thu Oct 06, 2005 08:17 PM
Re: Theme names under XP
Posted: Wed Mar 15, 2006 09:40 PM

The API is GetCurrentThemeName() but I don't know how to use it as it requires wide chars strings.

EMG

Posts: 252
Joined: Tue Oct 25, 2005 02:48 PM
Theme names under XP
Posted: Thu Mar 16, 2006 02:06 PM

Thanks, James and Enrico.

I´ll try any about it.
If I have success I´ll publish here.

Regards!
Maurilio

Posts: 252
Joined: Tue Oct 25, 2005 02:48 PM
Theme names under XP
Posted: Fri Mar 17, 2006 11:21 PM
Here a single function to detect XP theme name

return:
"WindowsClassic" if no theme is used
"XPBlue" if theme is blue
"XPGreen" if theme is olive green
"XPSilver" if theme is silver

#define  HKEY_CURRENT_USER       2147483649

function CurrentTheme()
 local cTheme   := "WindowsClassic"
 local cKeyName := "Software\Microsoft\Windows\CurrentVersion\ThemeManager\"

 oReg := TReg32():New( HKEY_CURRENT_USER, cKeyName )
 if oReg:nError == 0
    cTheme := StrTran( oReg:Get("ColorName", ""), chr(0),"")
    do case
       case cTheme == "NormalColor" ; cTheme := "XPBlue"
       case cTheme == "HomeStead"   ; cTheme := "XPGreen"
       case cTheme == "Metallic"    ; cTheme := "XPSilver"
       otherwise                    ; cTheme := "WindowsClassic"
    endcase
 endif
 oReg:Close()
return( cTheme )

Continue the discussion