server: Return real parent and owner in the create_window request.
[wine/multimedia.git] / programs / winecfg / winecfg.h
blob4966dcb08bb0ea55623d8336a0b6b41c03678d6f
1 /*
2 * WineCfg configuration management
4 * Copyright 2002 Jaco Greeff
5 * Copyright 2003 Dimitrie O. Paun
6 * Copyright 2004 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 #ifndef WINE_CFG_H
25 #define WINE_CFG_H
27 #include <stdarg.h>
29 #include "windef.h"
30 #include "winbase.h"
31 #include "wingdi.h"
32 #include "winuser.h"
33 #include "winnls.h"
34 #include "properties.h"
36 #define IS_OPTION_TRUE(ch) \
37 ((ch) == 'y' || (ch) == 'Y' || (ch) == 't' || (ch) == 'T' || (ch) == '1')
38 #define IS_OPTION_FALSE(ch) \
39 ((ch) == 'n' || (ch) == 'N' || (ch) == 'f' || (ch) == 'F' || (ch) == '0')
41 extern char *current_app; /* NULL means editing global settings */
43 /* Use get_reg_key and set_reg_key to alter registry settings. The changes made through
44 set_reg_key won't be committed to the registry until process_all_settings is called,
45 however get_reg_key will still return accurate information.
47 The root HKEY has to be non-ambiguous. So only the registry roots (HKCU, HKLM, ...) or
48 the global config_key are allowed here.
50 You are expected to HeapFree the result of get_reg_key. The parameters to set_reg_key will
51 be copied, so free them too when necessary.
54 void set_reg_key(HKEY root, const char *path, const char *name, const char *value);
55 void set_reg_key_dword(HKEY root, const char *path, const char *name, DWORD value);
56 char *get_reg_key(HKEY root, const char *path, const char *name, const char *def);
57 BOOL reg_key_exists(HKEY root, const char *path, const char *name);
58 void apply(void);
59 char **enumerate_values(HKEY root, char *path);
61 /* returns a string of the form "AppDefaults\\appname.exe\\section", or just "section" if
62 the user is editing the global settings.
64 no explicit free is needed of the string returned by this function
66 char *keypath(const char *section);
68 int initialize(HINSTANCE hInstance);
69 extern HKEY config_key;
71 /* hack for the property sheet control */
72 void set_window_title(HWND dialog);
74 /* Window procedures */
75 INT_PTR CALLBACK GraphDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
76 INT_PTR CALLBACK DriveDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
77 INT_PTR CALLBACK DriveEditDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
78 INT_PTR CALLBACK AppDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
79 INT_PTR CALLBACK LibrariesDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
80 INT_PTR CALLBACK AudioDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
81 INT_PTR CALLBACK ThemeDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
83 /* Drive management */
84 void load_drives(void);
85 int autodetect_drives(void);
87 struct drive
89 char letter;
90 char *unixpath;
91 char *label;
92 char *serial;
93 DWORD type; /* one of the DRIVE_ constants from winbase.h */
95 BOOL in_use;
98 #define DRIVE_MASK_BIT(B) 1 << (toupper(B) - 'A')
100 long drive_available_mask(char letter);
101 BOOL add_drive(const char letter, const char *targetpath, const char *label, const char *serial, unsigned int type);
102 void delete_drive(struct drive *pDrive);
103 void apply_drive_changes(void);
104 BOOL browse_for_unix_folder(HWND dialog, char *pszPath);
105 extern struct drive drives[26]; /* one for each drive letter */
107 BOOL gui_mode;
109 /* Some basic utilities to make win32 suck less */
110 #define disable(id) EnableWindow(GetDlgItem(dialog, id), 0);
111 #define enable(id) EnableWindow(GetDlgItem(dialog, id), 1);
112 void PRINTERROR(void); /* WINE_TRACE() the plaintext error message from GetLastError() */
114 /* returns a string in the win32 heap */
115 static inline char *strdupA(const char *s)
117 char *r = HeapAlloc(GetProcessHeap(), 0, strlen(s)+1);
118 return strcpy(r, s);
121 static inline char *get_text(HWND dialog, WORD id)
123 HWND item = GetDlgItem(dialog, id);
124 int len = GetWindowTextLength(item) + 1;
125 char *result = len ? HeapAlloc(GetProcessHeap(), 0, len) : NULL;
126 if (!result || GetWindowText(item, result, len) == 0) return NULL;
127 return result;
130 static inline void set_text(HWND dialog, WORD id, const char *text)
132 SetWindowText(GetDlgItem(dialog, id), text);
135 #define WINE_KEY_ROOT "Software\\Wine"
137 extern HMENU hPopupMenus;
139 #endif