Remove some unused code.
[wine] / programs / winecfg / main.c
1 /*
2  * WineCfg main entry point
3  *
4  * Copyright 2002 Jaco Greeff
5  * Copyright 2003 Dimitrie O. Paun
6  * Copyright 2003 Mike Hearn
7  *
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.
12  *
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.
17  *
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
21  *
22  */
23
24 #define NONAMELESSUNION
25 #define NONAMELESSSTRUCT
26
27 #include <windows.h>
28 #include <commctrl.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <wine/debug.h>
32
33 #include "properties.h"
34 #include "resource.h"
35 #include "winecfg.h"
36
37 WINE_DEFAULT_DEBUG_CHANNEL(winecfg);
38
39
40 #define versionSection (appSettings == EDITING_GLOBAL ? "Version" : (getSectionForApp("Version")))
41 #define tweakSection (appSettings == EDITING_GLOBAL ? "Tweak.Layout" : (getSectionForApp("Tweak.Layout")))
42
43 void CALLBACK
44 PropSheetCallback (HWND hWnd, UINT uMsg, LPARAM lParam)
45 {
46     switch (uMsg)
47     {
48         /*
49          * hWnd = NULL, lParam == dialog resource
50          */
51     case PSCB_PRECREATE:
52         break;
53
54     case PSCB_INITIALIZED:
55         break;
56
57     default:
58         break;
59     }
60 }
61
62 void
63 initGeneralDlg (HWND hDlg)
64 {
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");
70
71     /* normalize the version strings */
72     if (!strcmp(curWinVer, "win2000") || !strcmp(curWinVer, "nt2k") || !strcmp(curWinVer, "nt2000")) {
73         free(curWinVer);
74         curWinVer = strdup("win2k");
75     }
76
77     if (!strcmp(curWinVer, "win2k3")) {
78         free(curWinVer);
79         curWinVer = strdup("win2003");
80     }
81     
82     if ((pVer = getWinVersions ()))
83     {
84         for (i = 0; *pVer->szVersion; i++, pVer++)
85         {
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);
91         }
92     }
93     if ((pVer = getDOSVersions ()))
94     {
95         for (i = 0; *pVer->szVersion; i++, pVer++)
96         {
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);
102         }
103     }
104     if ((pVer = getWinelook ()))
105     {
106         for (i = 0; *pVer->szVersion; i++, pVer++)
107         {
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);
113         }
114     }
115
116     free(curWinVer);
117     free(curDOSVer);
118     free(curWineLook);
119 }
120
121 INT_PTR CALLBACK
122 GeneralDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
123 {
124     switch (uMsg) {
125
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;
132
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();
139
140                     while (selection > 0) {
141                         desc++; selection--;
142                     }
143                     addTransaction(versionSection, "Windows", ACTION_SET, desc->szVersion);
144                 }
145                 break;
146
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();
151
152                     while (selection > 0) {
153                         desc++; selection--;
154                     }
155                     addTransaction(tweakSection, "WineLook", ACTION_SET, desc->szVersion);
156                 }
157                 break;
158
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();
163
164                     while (selection > 0) {
165                         desc++; selection--;
166                     }
167                     addTransaction(versionSection, "DOS", ACTION_SET, desc->szVersion);
168                     
169                 }
170             }
171             break;
172             
173         default:
174             break;
175             
176     }
177     return FALSE;
178 }
179
180
181 INT_PTR CALLBACK
182 DllDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
183 {
184     switch (uMsg)
185     {
186     case WM_COMMAND:
187         break;
188
189     default:
190         break;
191     }
192     return FALSE;
193 }
194
195
196 #define NUM_PROPERTY_PAGES 5
197 INT_PTR
198 doPropertySheet (HINSTANCE hInstance, HWND hOwner)
199 {
200     PROPSHEETPAGE psp[NUM_PROPERTY_PAGES];
201     PROPSHEETHEADER psh;
202
203     /*
204      * Fill out the (General) PROPSHEETPAGE data structure 
205      * for the property sheet
206      */
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;
215
216     /*
217      * Fill out the (Applications) PROPSHEETPAGE data structure 
218      * for the property sheet
219      */
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;
228
229     /*
230      * Fill out the (Libraries) PROPSHEETPAGE data structure 
231      * for the property sheet
232      */
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;
241     
242     /*
243      * Fill out the (X11Drv) PROPSHEETPAGE data structure 
244      * for the property sheet
245      */
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;
254
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;
263     
264     /*
265      * Fill out the PROPSHEETHEADER
266      */
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;
277
278     /*
279      * Display the modal property sheet
280      */
281     return PropertySheet (&psh);
282 }
283
284
285 /*****************************************************************************
286  * Name       : WinMain
287  * Description: Main windows entry point
288  * Parameters : hInstance
289  *              hPrev
290  *              szCmdLine
291  *              nShow
292  * Returns    : Program exit code
293  */
294 int WINAPI
295 WinMain (HINSTANCE hInstance, HINSTANCE hPrev, LPSTR szCmdLine, int nShow)
296 {
297
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");
301
302     if (initialize() != 0) {
303         WINE_ERR("initialization failed, aborting\n");
304         ExitProcess(1);
305     }
306     
307     /*
308      * The next 3 lines should be all that is needed
309      * for the Wine Configuration property sheet
310      */
311     InitCommonControls ();
312     if (doPropertySheet (hInstance, NULL) > 0) {
313         WINE_TRACE("OK\n");
314     } else {
315         WINE_TRACE("Cancel\n");
316     }
317     
318     ExitProcess (0);
319
320     return 0;
321 }