French localization.
[wine] / programs / winecfg / appdefaults.c
1 /*
2  * WineCfg app settings tabsheet
3  *
4  * Copyright 2004 Robert van Herk
5  * Copyright 2004 Chris Morgan
6  * Copyright 2004 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 #include <windows.h>
26 #include <commdlg.h>
27 #include <wine/debug.h>
28 #include <stdio.h>
29 #include <assert.h>
30 #include "winecfg.h"
31 #include "resource.h"
32
33 WINE_DEFAULT_DEBUG_CHANNEL(winecfg);
34
35 static void update_comboboxes(HWND dialog)
36 {
37   int i;
38   const VERSION_DESC *pVer = NULL;
39
40   char *winver, *dosver;
41   
42   /* retrieve the registry values */
43   winver = get(keypath("Version"), "Windows", "");
44   dosver = get(keypath("Version"), "DOS", "");
45
46   /* empty winver/dosver means use automatic mode (ie the builtin dll linkage heuristics)  */
47   
48   WINE_TRACE("winver is %s\n", *winver != '\0' ? winver : "null (automatic mode)");
49   WINE_TRACE("dosver is %s\n", *dosver != '\0' ? dosver : "null (automatic mode)");
50
51   /* normalize the version strings */
52   if (*winver != '\0')
53   {
54     if ((pVer = getWinVersions ()))
55     {
56       for (i = 0; *pVer->szVersion || *pVer->szDescription; i++, pVer++)
57       {
58         if (!strcasecmp (pVer->szVersion, winver))
59         {
60           SendDlgItemMessage (dialog, IDC_WINVER, CB_SETCURSEL, (WPARAM) (i + 1), 0);
61           WINE_TRACE("match with %s\n", pVer->szVersion);
62         }
63       }
64     }
65   }
66   else /* no explicit setting */
67   {
68     WINE_TRACE("setting winver combobox to automatic/default\n");
69     SendDlgItemMessage (dialog, IDC_WINVER, CB_SETCURSEL, 0, 0);
70   }
71
72   if (*dosver != '\0')
73   {
74     if ((pVer = getDOSVersions ()))
75     {
76       for (i = 0; *pVer->szVersion || *pVer->szDescription; i++, pVer++)
77       {
78         if (!strcasecmp (pVer->szVersion, dosver))
79         {
80           SendDlgItemMessage (dialog, IDC_DOSVER, CB_SETCURSEL,
81                               (WPARAM) (i + 1), 0);
82           WINE_TRACE("match with %s\n", pVer->szVersion);
83         }
84       }
85     }
86   }
87   else
88   {
89     WINE_TRACE("setting dosver combobox to automatic/default\n");
90     SendDlgItemMessage (dialog, IDC_DOSVER, CB_SETCURSEL, 0, 0);
91   }
92   
93   HeapFree(GetProcessHeap(), 0, winver);
94   HeapFree(GetProcessHeap(), 0, dosver);
95 }
96
97 void
98 init_comboboxes (HWND dialog)
99 {
100   int i;
101   const VERSION_DESC *ver = NULL;
102
103   
104   SendDlgItemMessage(dialog, IDC_WINVER, CB_RESETCONTENT, 0, 0);
105   SendDlgItemMessage(dialog, IDC_DOSVER, CB_RESETCONTENT, 0, 0);  
106   
107   /* add the default entries (automatic) which correspond to no setting  */
108   if (current_app)
109   {
110       SendDlgItemMessage(dialog, IDC_WINVER, CB_ADDSTRING, 0, (LPARAM) "Use global settings");
111       SendDlgItemMessage(dialog, IDC_DOSVER, CB_ADDSTRING, 0, (LPARAM) "Use global settings");      
112   }
113   else
114   {
115       SendDlgItemMessage(dialog, IDC_WINVER, CB_ADDSTRING, 0, (LPARAM) "Automatically detect required version");
116       SendDlgItemMessage(dialog, IDC_DOSVER, CB_ADDSTRING, 0, (LPARAM) "Automatically detect required version");
117   }
118
119   if ((ver = getWinVersions ()))
120   {
121     for (i = 0; *ver->szVersion || *ver->szDescription; i++, ver++)
122     {
123       SendDlgItemMessage (dialog, IDC_WINVER, CB_ADDSTRING,
124                           0, (LPARAM) ver->szDescription);
125     }
126   }
127   if ((ver = getDOSVersions ()))
128   {
129     for (i = 0; *ver->szVersion || *ver->szDescription ; i++, ver++)
130     {
131       SendDlgItemMessage (dialog, IDC_DOSVER, CB_ADDSTRING,
132                           0, (LPARAM) ver->szDescription);
133     }
134   }
135 }
136
137 static void add_listview_item(HWND listview, char *text, void *association)
138 {
139   LVITEM item;
140
141   ZeroMemory(&item, sizeof(LVITEM));
142
143   item.mask = LVIF_TEXT | LVIF_PARAM;
144   item.pszText = text;
145   item.cchTextMax = strlen(text);
146   item.lParam = (LPARAM) association;
147   item.iItem = ListView_GetItemCount(listview);
148
149   ListView_InsertItem(listview, &item);
150 }
151
152 /* Called when the application is initialized (cannot reinit!)  */
153 static void init_appsheet(HWND dialog)
154 {
155   HWND listview;
156   HKEY key;
157   int i;
158   DWORD size;
159   char appname[1024];
160
161   WINE_TRACE("()\n");
162
163   listview = GetDlgItem(dialog, IDC_APP_LISTVIEW);
164
165   /* we use the lparam field of the item so we can alter the presentation later and not change code
166    * for instance, to use the tile view or to display the EXEs embedded 'display name' */
167   add_listview_item(listview, "Default Settings", NULL);
168
169   /* because this list is only populated once, it's safe to bypass the settings list here  */
170   if (RegOpenKey(config_key, "AppDefaults", &key) == ERROR_SUCCESS)
171   {
172       i = 0;
173       size = sizeof(appname);
174       while (RegEnumKeyEx(key, i, appname, &size, NULL, NULL, NULL, NULL) == ERROR_SUCCESS)
175       {
176           add_listview_item(listview, appname, strdupA(appname));
177
178           i++;
179           size = sizeof(appname);
180       }
181
182       RegCloseKey(key);
183   }
184
185   init_comboboxes(dialog);
186   
187   /* Select the default settings listview item  */
188   {
189       LVITEM item;
190       
191       ZeroMemory(&item, sizeof(item));
192       
193       item.mask = LVIF_STATE;
194       item.iItem = 0;
195       item.state = LVIS_SELECTED | LVIS_FOCUSED;
196       item.stateMask = LVIS_SELECTED | LVIS_FOCUSED;
197
198       ListView_SetItem(listview, &item);
199   }
200   
201 }
202
203 /* there has to be an easier way than this  */
204 static int get_listview_selection(HWND listview)
205 {
206   int count = ListView_GetItemCount(listview);
207   int i;
208   
209   for (i = 0; i < count; i++)
210   {
211     if (ListView_GetItemState(listview, i, LVIS_SELECTED)) return i;
212   }
213
214   return -1;
215 }
216
217
218 /* called when the user selects a different application */
219 static void on_selection_change(HWND dialog, HWND listview)
220 {
221   LVITEM item;
222   char *oldapp = current_app;
223
224   WINE_TRACE("()\n");
225
226   item.iItem = get_listview_selection(listview);
227   item.mask = LVIF_PARAM;
228
229   WINE_TRACE("item.iItem=%d\n", item.iItem);
230   
231   if (item.iItem == -1) return;
232   
233   ListView_GetItem(listview, &item);
234
235   current_app = (char *) item.lParam;
236
237   if (current_app)
238   {
239       WINE_TRACE("current_app is now %s\n", current_app);
240       enable(IDC_APP_REMOVEAPP);
241   }
242   else
243   {
244       WINE_TRACE("current_app=NULL, editing global settings\n");
245       /* focus will never be on the button in this callback so it's safe  */
246       disable(IDC_APP_REMOVEAPP);
247   }
248
249   /* reset the combo boxes if we changed from/to global/app-specific  */
250
251   if ((oldapp && !current_app) || (!oldapp && current_app))
252       init_comboboxes(dialog);
253   
254   update_comboboxes(dialog);
255
256   set_window_title(dialog);
257 }
258
259 static void on_add_app_click(HWND dialog)
260 {
261   char filetitle[MAX_PATH];
262   char file[MAX_PATH];
263
264   OPENFILENAME ofn = { sizeof(OPENFILENAME),
265                        0, /*hInst*/0, "Wine Programs (*.exe,*.exe.so)\0*.exe;*.exe.so\0", NULL, 0, 0, NULL,
266                        0, NULL, 0, "c:\\", "Select a Windows executable file",
267                        OFN_SHOWHELP | OFN_HIDEREADONLY, 0, 0, NULL, 0, NULL };
268
269   ofn.lpstrFileTitle = filetitle;
270   ofn.lpstrFileTitle[0] = '\0';
271   ofn.nMaxFileTitle = sizeof(filetitle);
272   ofn.lpstrFile = file;
273   ofn.lpstrFile[0] = '\0';
274   ofn.nMaxFile = sizeof(file);
275
276   if (GetOpenFileName(&ofn))
277   {
278       HWND listview = GetDlgItem(dialog, IDC_APP_LISTVIEW);
279       int count = ListView_GetItemCount(listview);
280       char* new_app;
281       
282       new_app = strdupA(filetitle);
283       WINE_TRACE("adding %s\n", new_app);
284       
285       add_listview_item(listview, new_app, new_app);
286
287       ListView_SetItemState(listview, count, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED);
288
289       SetFocus(listview);
290   }
291   else WINE_TRACE("user cancelled\n");
292 }
293
294 static void on_remove_app_click(HWND dialog)
295 {
296     HWND listview = GetDlgItem(dialog, IDC_APP_LISTVIEW);
297     int selection = get_listview_selection(listview);
298     char *section = keypath(""); /* AppDefaults\\whatever.exe\\ */
299
300     WINE_TRACE("selection=%d, section=%s\n", selection, section);
301     
302     assert( selection != 0 ); /* user cannot click this button when "default settings" is selected  */
303
304     section[strlen(section)] = '\0'; /* remove last backslash  */
305     set(section, NULL, NULL); /* delete the section  */
306     ListView_DeleteItem(listview, selection);
307     ListView_SetItemState(listview, selection - 1, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED);
308
309     SetFocus(listview);
310     
311     SendMessage(GetParent(dialog), PSM_CHANGED, (WPARAM) dialog, 0);        
312 }
313
314 static void on_winver_change(HWND dialog)
315 {
316     int selection = SendDlgItemMessage(dialog, IDC_WINVER, CB_GETCURSEL, 0, 0);
317     VERSION_DESC *ver = getWinVersions();
318
319     if (selection == 0)
320     {
321         WINE_TRACE("automatic/default selected so removing current setting\n");
322         set(keypath("Version"), "Windows", NULL);
323     }
324     else
325     {
326         WINE_TRACE("setting Version\\Windows key to value '%s'\n", ver[selection - 1].szVersion);
327         set(keypath("Version"), "Windows", ver[selection - 1].szVersion);
328     }
329
330     /* enable the apply button  */
331     SendMessage(GetParent(dialog), PSM_CHANGED, (WPARAM) dialog, 0);
332 }
333
334 static void on_dosver_change(HWND dialog)
335 {
336     int selection = SendDlgItemMessage(dialog, IDC_DOSVER, CB_GETCURSEL, 0, 0);
337     VERSION_DESC *ver = getDOSVersions();
338
339     if (selection == 0)
340     {
341         WINE_TRACE("automatic/default selected so removing current setting\n");
342         set(keypath("Version"), "DOS", NULL);
343     }
344     else
345     {
346         WINE_TRACE("setting Version\\DOS key to value '%s'\n", ver[selection - 1].szVersion);
347         set(keypath("Version"), "DOS", ver[selection - 1].szVersion);
348     }
349
350     /* enable the apply button  */
351     SendMessage(GetParent(dialog), PSM_CHANGED, (WPARAM) dialog, 0);
352 }
353
354 INT_PTR CALLBACK
355 AppDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
356 {
357   switch (uMsg)
358   {
359     case WM_INITDIALOG:
360         init_appsheet(hDlg);
361         break;
362
363     case WM_SHOWWINDOW:
364         set_window_title(hDlg);
365         break;
366
367     case WM_NOTIFY:
368       switch (((LPNMHDR)lParam)->code)
369       {
370         case LVN_ITEMCHANGED:
371             on_selection_change(hDlg, GetDlgItem(hDlg, IDC_APP_LISTVIEW));
372             break;
373         case PSN_APPLY:
374             apply();
375             SetWindowLongPtr(hDlg, DWLP_MSGRESULT, PSNRET_NOERROR);
376             break;
377       }
378       
379       break;
380     
381     case WM_COMMAND:
382       switch(HIWORD(wParam))
383       {
384         case CBN_SELCHANGE:
385           switch(LOWORD(wParam))
386           {
387             case IDC_WINVER:
388               on_winver_change(hDlg);
389               break;
390             case IDC_DOSVER:
391               on_dosver_change(hDlg);
392               break;
393           }
394         case BN_CLICKED:
395           switch(LOWORD(wParam))
396           {
397             case IDC_APP_ADDAPP:
398               on_add_app_click(hDlg);
399               break;
400             case IDC_APP_REMOVEAPP:
401               on_remove_app_click(hDlg);
402               break;
403           }
404           break;
405       }
406
407       break;
408   }
409   
410   return 0;
411 }