]>
Commit | Line | Data |
---|---|---|
fc2171bd | 1 | Microsoft Windows XP Support from wxWidgets |
86c529a9 | 2 | ------------------------------------------- |
68c7f44c VZ |
3 | |
4 | Windows XP introduces the themes (called "visual styles" in the Microsoft | |
fc2171bd | 5 | documentation) in Windows world. As wxWidgets uses the standard Windows |
68c7f44c VZ |
6 | controls for most of its classes, it can take advantage of it without |
7 | (almost) any effort from your part. The only thing you need to do if you | |
8 | want your program to honour the visual style setting of Windows XP is to | |
9 | add the manifest file to your program (this is not at all specific to | |
fc2171bd | 10 | wxWidgets programs but is required for all Windows applications). |
68c7f44c | 11 | |
fc2171bd | 12 | wxWidgets now includes manifest resources in wx.rc, so it should be enough to |
86c529a9 VS |
13 | include "wx/msw/wx.rc" in your application's resource file and you get |
14 | XP look automatically. If it doesn't work, follow the instructions below: | |
68c7f44c | 15 | |
2edb0bde | 16 | For your convenience, below is an example manifest. It should be put in a |
68c7f44c VZ |
17 | file called "yourapp.exe.manifest" and put in the same directory where |
18 | "yourapp.exe" resides. Alternatively, you can include the manifest in your | |
19 | applications resource section. Please see the MSDN documentation at | |
20 | ||
21 | http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwxp/html/xptheming.asp | |
22 | ||
23 | for more details. | |
24 | ||
68c7f44c VZ |
25 | Here is the example manifest which you can put into controls.exe.manifest |
26 | file to test theme support using the controls sample: | |
27 | ||
28 | --- cut here --- | |
29 | <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
30 | <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | |
31 | <assemblyIdentity | |
32 | version="0.64.1.0" | |
33 | processorArchitecture="x86" | |
34 | name="Controls" | |
35 | type="win32" | |
36 | /> | |
fc2171bd | 37 | <description>Controls: wxWidgets sample application</description> |
68c7f44c VZ |
38 | <dependency> |
39 | <dependentAssembly> | |
40 | <assemblyIdentity | |
41 | type="win32" | |
42 | name="Microsoft.Windows.Common-Controls" | |
43 | version="6.0.0.0" | |
44 | processorArchitecture="X86" | |
45 | publicKeyToken="6595b64144ccf1df" | |
46 | language="*" | |
47 | /> | |
48 | </dependentAssembly> | |
49 | </dependency> | |
50 | </assembly> | |
51 | --- cut here --- | |
52 | ||
53 | ||
fc2171bd | 54 | There are a few minor problems with theme support in wxWidgets currently |
68c7f44c VZ |
55 | which will be fixed in the next releases: |
56 | ||
57 | - the buttons with non-default colours are owner-drawn and thus don't | |
58 | follow the visual style look but always have the default 3D look of | |
59 | the previous Windows versions - don't change the buttons colours if | |
60 | you want them to look nicely under Windows XP | |
61 | ||
62 | - wxCheckListBox control doesn't have the same appearance as the native | |
63 | checkboxes in Windows XP | |
64 |