HeapReAlloc doesn't allocate memory.
[wine.git] / programs / winecfg / main.c
blob2f0afe3e23813c7178859590050830dc9f5485fe
1 /*
2 * WineCfg main entry point
4 * Copyright 2002 Jaco Greeff
5 * Copyright 2003 Dimitrie O. Paun
6 * Copyright 2003 Mike Hearn
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #define NONAMELESSUNION
25 #define NONAMELESSSTRUCT
27 #include <windows.h>
28 #include <commctrl.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <wine/debug.h>
33 #include "properties.h"
34 #include "resource.h"
35 #include "winecfg.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(winecfg);
40 #define versionSection (appSettings == EDITING_GLOBAL ? "Version" : (getSectionForApp("Version")))
41 #define tweakSection (appSettings == EDITING_GLOBAL ? "Tweak.Layout" : (getSectionForApp("Tweak.Layout")))
43 void CALLBACK
44 PropSheetCallback (HWND hWnd, UINT uMsg, LPARAM lParam)
46 switch (uMsg)
49 * hWnd = NULL, lParam == dialog resource
51 case PSCB_PRECREATE:
52 break;
54 case PSCB_INITIALIZED:
55 break;
57 default:
58 break;
62 void
63 initGeneralDlg (HWND hDlg)
65 int i;
66 const VERSION_DESC *pVer = NULL;
67 char *curWinVer = getConfigValue(versionSection, "Windows", "win98");
68 char *curDOSVer = getConfigValue(versionSection, "DOS", "6.22");
69 char *curWineLook = getConfigValue(tweakSection, "WineLook", "win95");
71 /* normalize the version strings */
72 if (!strcmp(curWinVer, "win2000") || !strcmp(curWinVer, "nt2k") || !strcmp(curWinVer, "nt2000")) {
73 free(curWinVer);
74 curWinVer = strdup("win2k");
77 if (!strcmp(curWinVer, "win2k3")) {
78 free(curWinVer);
79 curWinVer = strdup("win2003");
82 if ((pVer = getWinVersions ()))
84 for (i = 0; *pVer->szVersion; i++, pVer++)
86 SendDlgItemMessage (hDlg, IDC_WINVER, CB_ADDSTRING,
87 0, (LPARAM) pVer->szDescription);
88 if (!strcmp (pVer->szVersion, curWinVer))
89 SendDlgItemMessage (hDlg, IDC_WINVER, CB_SETCURSEL,
90 (WPARAM) i, 0);
93 if ((pVer = getDOSVersions ()))
95 for (i = 0; *pVer->szVersion; i++, pVer++)
97 SendDlgItemMessage (hDlg, IDC_DOSVER, CB_ADDSTRING,
98 0, (LPARAM) pVer->szDescription);
99 if (!strcmp (pVer->szVersion, curDOSVer))
100 SendDlgItemMessage (hDlg, IDC_DOSVER, CB_SETCURSEL,
101 (WPARAM) i, 0);
104 if ((pVer = getWinelook ()))
106 for (i = 0; *pVer->szVersion; i++, pVer++)
108 SendDlgItemMessage (hDlg, IDC_WINELOOK, CB_ADDSTRING,
109 0, (LPARAM) pVer->szDescription);
110 if (!strcmp (pVer->szVersion, curWineLook))
111 SendDlgItemMessage (hDlg, IDC_WINELOOK, CB_SETCURSEL,
112 (WPARAM) i, 0);
116 free(curWinVer);
117 free(curDOSVer);
118 free(curWineLook);
121 INT_PTR CALLBACK
122 GeneralDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
124 switch (uMsg) {
126 case WM_NOTIFY:
127 if (((LPNMHDR)lParam)->code != PSN_SETACTIVE) break;
128 /* otherwise fall through, we want to refresh the page as well */
129 case WM_INITDIALOG:
130 initGeneralDlg (hDlg);
131 break;
133 case WM_COMMAND:
134 switch (LOWORD(wParam)) {
135 case IDC_WINVER: if (HIWORD(wParam) == CBN_SELCHANGE) {
136 /* user changed the wine version combobox */
137 int selection = SendDlgItemMessage( hDlg, IDC_WINVER, CB_GETCURSEL, 0, 0);
138 VERSION_DESC *desc = getWinVersions();
140 while (selection > 0) {
141 desc++; selection--;
143 addTransaction(versionSection, "Windows", ACTION_SET, desc->szVersion);
145 break;
147 case IDC_WINELOOK: if (HIWORD(wParam) == CBN_SELCHANGE) {
148 /* user changed the wine look combo box */
149 int selection = SendDlgItemMessage( hDlg, IDC_WINELOOK, CB_GETCURSEL, 0, 0);
150 VERSION_DESC *desc = getWinelook();
152 while (selection > 0) {
153 desc++; selection--;
155 addTransaction(tweakSection, "WineLook", ACTION_SET, desc->szVersion);
157 break;
159 case IDC_DOSVER: if (HIWORD(wParam) == CBN_SELCHANGE) {
160 /* user changed the dos version combo box */
161 int selection = SendDlgItemMessage( hDlg, IDC_WINELOOK, CB_GETCURSEL, 0, 0);
162 VERSION_DESC *desc = getDOSVersions();
164 while (selection > 0) {
165 desc++; selection--;
167 addTransaction(versionSection, "DOS", ACTION_SET, desc->szVersion);
171 break;
173 default:
174 break;
177 return FALSE;
181 INT_PTR CALLBACK
182 DllDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
184 switch (uMsg)
186 case WM_COMMAND:
187 break;
189 default:
190 break;
192 return FALSE;
196 #define NUM_PROPERTY_PAGES 5
197 INT_PTR
198 doPropertySheet (HINSTANCE hInstance, HWND hOwner)
200 PROPSHEETPAGE psp[NUM_PROPERTY_PAGES];
201 PROPSHEETHEADER psh;
204 * Fill out the (General) PROPSHEETPAGE data structure
205 * for the property sheet
207 psp[0].dwSize = sizeof (PROPSHEETPAGE);
208 psp[0].dwFlags = PSP_USETITLE;
209 psp[0].hInstance = hInstance;
210 psp[0].u.pszTemplate = MAKEINTRESOURCE (IDD_GENERALCFG);
211 psp[0].u2.pszIcon = NULL;
212 psp[0].pfnDlgProc = GeneralDlgProc;
213 psp[0].pszTitle = "General";
214 psp[0].lParam = 0;
217 * Fill out the (Applications) PROPSHEETPAGE data structure
218 * for the property sheet
220 psp[1].dwSize = sizeof (PROPSHEETPAGE);
221 psp[1].dwFlags = PSP_USETITLE;
222 psp[1].hInstance = hInstance;
223 psp[1].u.pszTemplate = MAKEINTRESOURCE (IDD_APPCFG);
224 psp[1].u2.pszIcon = NULL;
225 psp[1].pfnDlgProc = AppDlgProc;
226 psp[1].pszTitle = "Applications";
227 psp[1].lParam = 0;
230 * Fill out the (Libraries) PROPSHEETPAGE data structure
231 * for the property sheet
233 psp[2].dwSize = sizeof (PROPSHEETPAGE);
234 psp[2].dwFlags = PSP_USETITLE;
235 psp[2].hInstance = hInstance;
236 psp[2].u.pszTemplate = MAKEINTRESOURCE (IDD_DLLCFG);
237 psp[2].u2.pszIcon = NULL;
238 psp[2].pfnDlgProc = DllDlgProc;
239 psp[2].pszTitle = "Libraries";
240 psp[2].lParam = 0;
243 * Fill out the (X11Drv) PROPSHEETPAGE data structure
244 * for the property sheet
246 psp[3].dwSize = sizeof (PROPSHEETPAGE);
247 psp[3].dwFlags = PSP_USETITLE;
248 psp[3].hInstance = hInstance;
249 psp[3].u.pszTemplate = MAKEINTRESOURCE (IDD_X11DRVCFG);
250 psp[3].u2.pszIcon = NULL;
251 psp[3].pfnDlgProc = X11DrvDlgProc;
252 psp[3].pszTitle = "X11 Driver";
253 psp[3].lParam = 0;
255 psp[4].dwSize = sizeof (PROPSHEETPAGE);
256 psp[4].dwFlags = PSP_USETITLE;
257 psp[4].hInstance = hInstance;
258 psp[4].u.pszTemplate = MAKEINTRESOURCE (IDD_DRIVECFG);
259 psp[4].u2.pszIcon = NULL;
260 psp[4].pfnDlgProc = DriveDlgProc;
261 psp[4].pszTitle = "Drives";
262 psp[4].lParam = 0;
265 * Fill out the PROPSHEETHEADER
267 psh.dwSize = sizeof (PROPSHEETHEADER);
268 psh.dwFlags = PSH_PROPSHEETPAGE | PSH_USEICONID | PSH_USECALLBACK;
269 psh.hwndParent = hOwner;
270 psh.hInstance = hInstance;
271 psh.u.pszIcon = NULL;
272 psh.pszCaption = "Wine Configuration";
273 psh.nPages = NUM_PROPERTY_PAGES;
274 psh.u3.ppsp = (LPCPROPSHEETPAGE) & psp;
275 psh.pfnCallback = (PFNPROPSHEETCALLBACK) PropSheetCallback;
276 psh.u2.nStartPage = 0;
279 * Display the modal property sheet
281 return PropertySheet (&psh);
285 /*****************************************************************************
286 * Name : WinMain
287 * Description: Main windows entry point
288 * Parameters : hInstance
289 * hPrev
290 * szCmdLine
291 * nShow
292 * Returns : Program exit code
294 int WINAPI
295 WinMain (HINSTANCE hInstance, HINSTANCE hPrev, LPSTR szCmdLine, int nShow)
298 /* Until winecfg is fully functional, warn users that it is incomplete and doesn't do anything */
299 WINE_FIXME("The winecfg tool is not yet complete, and does not actually alter your configuration.\n");
300 WINE_FIXME("If you want to alter the way Wine works, look in the ~/.wine/config file for more information.\n");
302 if (initialize() != 0) {
303 WINE_ERR("initialization failed, aborting\n");
304 ExitProcess(1);
308 * The next 3 lines should be all that is needed
309 * for the Wine Configuration property sheet
311 InitCommonControls ();
312 if (doPropertySheet (hInstance, NULL) > 0) {
313 WINE_TRACE("OK\n");
314 } else {
315 WINE_TRACE("Cancel\n");
318 ExitProcess (0);
320 return 0;