server: Don't round up the header size for image mappings.
[wine] / dlls / msi / dialog.c
1 /*
2  * Implementation of the Microsoft Installer (msi.dll)
3  *
4  * Copyright 2005 Mike McCormack for CodeWeavers
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #define COBJMACROS
22 #define NONAMELESSUNION
23 #define NONAMELESSSTRUCT
24
25 #include <stdarg.h>
26
27 #include "windef.h"
28 #include "winbase.h"
29 #include "winuser.h"
30 #include "winnls.h"
31 #include "wingdi.h"
32 #include "msi.h"
33 #include "msipriv.h"
34 #include "msidefs.h"
35 #include "ocidl.h"
36 #include "olectl.h"
37 #include "richedit.h"
38 #include "commctrl.h"
39
40 #include "wine/debug.h"
41 #include "wine/unicode.h"
42
43 #include "action.h"
44
45 WINE_DEFAULT_DEBUG_CHANNEL(msi);
46
47
48 struct msi_control_tag;
49 typedef struct msi_control_tag msi_control;
50 typedef UINT (*msi_handler)( msi_dialog *, msi_control *, WPARAM );
51
52 struct msi_control_tag
53 {
54     struct list entry;
55     HWND hwnd;
56     msi_handler handler;
57     LPWSTR property;
58     LPWSTR value;
59     HBITMAP hBitmap;
60     HICON hIcon;
61     LPWSTR tabnext;
62     HMODULE hDll;
63     WCHAR name[1];
64 };
65
66 typedef struct msi_font_tag
67 {
68     struct msi_font_tag *next;
69     HFONT hfont;
70     WCHAR name[1];
71 } msi_font;
72
73 struct msi_dialog_tag
74 {
75     MSIPACKAGE *package;
76     msi_dialog_event_handler event_handler;
77     BOOL finished;
78     INT scale;
79     DWORD attributes;
80     HWND hwnd;
81     LPWSTR default_font;
82     msi_font *font_list;
83     struct list controls;
84     HWND hWndFocus;
85     LPWSTR control_default;
86     LPWSTR control_cancel;
87     WCHAR name[1];
88 };
89
90 typedef UINT (*msi_dialog_control_func)( msi_dialog *dialog, MSIRECORD *rec );
91 struct control_handler 
92 {
93     LPCWSTR control_type;
94     msi_dialog_control_func func;
95 };
96
97 typedef struct
98 {
99     msi_dialog* dialog;
100     msi_control *parent;
101     DWORD       attributes;
102 } radio_button_group_descr;
103
104 const WCHAR szMsiDialogClass[] = {
105     'M','s','i','D','i','a','l','o','g','C','l','o','s','e','C','l','a','s','s',0
106 };
107 const WCHAR szMsiHiddenWindow[] = {
108     'M','s','i','H','i','d','d','e','n','W','i','n','d','o','w',0 };
109 static const WCHAR szStatic[] = { 'S','t','a','t','i','c',0 };
110 static const WCHAR szButton[] = { 'B','U','T','T','O','N', 0 };
111 static const WCHAR szButtonData[] = { 'M','S','I','D','A','T','A',0 };
112 static const WCHAR szText[] = { 'T','e','x','t',0 };
113 static const WCHAR szPushButton[] = { 'P','u','s','h','B','u','t','t','o','n',0 };
114 static const WCHAR szLine[] = { 'L','i','n','e',0 };
115 static const WCHAR szBitmap[] = { 'B','i','t','m','a','p',0 };
116 static const WCHAR szCheckBox[] = { 'C','h','e','c','k','B','o','x',0 };
117 static const WCHAR szScrollableText[] = {
118     'S','c','r','o','l','l','a','b','l','e','T','e','x','t',0 };
119 static const WCHAR szComboBox[] = { 'C','o','m','b','o','B','o','x',0 };
120 static const WCHAR szEdit[] = { 'E','d','i','t',0 };
121 static const WCHAR szMaskedEdit[] = { 'M','a','s','k','e','d','E','d','i','t',0 };
122 static const WCHAR szPathEdit[] = { 'P','a','t','h','E','d','i','t',0 };
123 static const WCHAR szProgressBar[] = {
124      'P','r','o','g','r','e','s','s','B','a','r',0 };
125 static const WCHAR szRadioButtonGroup[] = { 
126     'R','a','d','i','o','B','u','t','t','o','n','G','r','o','u','p',0 };
127 static const WCHAR szIcon[] = { 'I','c','o','n',0 };
128 static const WCHAR szSelectionTree[] = {
129     'S','e','l','e','c','t','i','o','n','T','r','e','e',0 };
130
131 static UINT msi_dialog_checkbox_handler( msi_dialog *, msi_control *, WPARAM );
132 static void msi_dialog_checkbox_sync_state( msi_dialog *, msi_control * );
133 static UINT msi_dialog_button_handler( msi_dialog *, msi_control *, WPARAM );
134 static UINT msi_dialog_edit_handler( msi_dialog *, msi_control *, WPARAM );
135 static UINT msi_dialog_radiogroup_handler( msi_dialog *, msi_control *, WPARAM param );
136 static UINT msi_dialog_evaluate_control_conditions( msi_dialog *dialog );
137 static LRESULT WINAPI MSIRadioGroup_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
138
139
140 /* dialog sequencing */
141
142 #define WM_MSI_DIALOG_CREATE  (WM_USER+0x100)
143 #define WM_MSI_DIALOG_DESTROY (WM_USER+0x101)
144
145 static DWORD uiThreadId;
146 static HWND hMsiHiddenWindow;
147
148 static INT msi_dialog_scale_unit( msi_dialog *dialog, INT val )
149 {
150     return (dialog->scale * val + 5) / 10;
151 }
152
153 static msi_control *msi_dialog_find_control( msi_dialog *dialog, LPCWSTR name )
154 {
155     msi_control *control;
156
157     if( !name )
158         return NULL;
159     LIST_FOR_EACH_ENTRY( control, &dialog->controls, msi_control, entry )
160         if( !strcmpW( control->name, name ) ) /* FIXME: case sensitive? */
161             return control;
162     return NULL;
163 }
164
165 static msi_control *msi_dialog_find_control_by_hwnd( msi_dialog *dialog, HWND hwnd )
166 {
167     msi_control *control;
168
169     LIST_FOR_EACH_ENTRY( control, &dialog->controls, msi_control, entry )
170         if( hwnd == control->hwnd )
171             return control;
172     return NULL;
173 }
174
175 static LPWSTR msi_get_deformatted_field( MSIPACKAGE *package, MSIRECORD *rec, int field )
176 {
177     LPCWSTR str = MSI_RecordGetString( rec, field );
178     LPWSTR ret = NULL;
179
180     if (str)
181         deformat_string( package, str, &ret );
182     return ret;
183 }
184
185 /*
186  * msi_dialog_get_style
187  *
188  * Extract the {\style} string from the front of the text to display and
189  *  update the pointer.
190  */
191 static LPWSTR msi_dialog_get_style( LPCWSTR p, LPCWSTR *rest )
192 {
193     LPWSTR ret = NULL;
194     LPCWSTR q, i;
195     DWORD len;
196
197     *rest = p;
198     if( !p )
199         return ret;
200     if( *p++ != '{' )
201         return ret;
202     q = strchrW( p, '}' );
203     if( !q )
204         return ret;
205     if( *p == '\\' || *p == '&' )
206         p++;
207
208     /* little bit of sanity checking to stop us getting confused with RTF */
209     for( i=p; i<q; i++ )
210         if( *i == '}' || *i == '\\' )
211             return ret;
212     
213     *rest = ++q;
214     len = q - p;
215
216     ret = msi_alloc( len*sizeof(WCHAR) );
217     if( !ret )
218         return ret;
219     memcpy( ret, p, len*sizeof(WCHAR) );
220     ret[len-1] = 0;
221     return ret;
222 }
223
224 static UINT msi_dialog_add_font( MSIRECORD *rec, LPVOID param )
225 {
226     msi_dialog *dialog = param;
227     msi_font *font;
228     LPCWSTR face, name;
229     LOGFONTW lf;
230     INT style;
231     HDC hdc;
232
233     /* create a font and add it to the list */
234     name = MSI_RecordGetString( rec, 1 );
235     font = msi_alloc( sizeof *font + strlenW( name )*sizeof (WCHAR) );
236     strcpyW( font->name, name );
237     font->next = dialog->font_list;
238     dialog->font_list = font;
239
240     memset( &lf, 0, sizeof lf );
241     face = MSI_RecordGetString( rec, 2 );
242     lf.lfHeight = MSI_RecordGetInteger( rec, 3 );
243     style = MSI_RecordGetInteger( rec, 5 );
244     if( style & msidbTextStyleStyleBitsBold )
245         lf.lfWeight = FW_BOLD;
246     if( style & msidbTextStyleStyleBitsItalic )
247         lf.lfItalic = TRUE;
248     if( style & msidbTextStyleStyleBitsUnderline )
249         lf.lfUnderline = TRUE;
250     if( style & msidbTextStyleStyleBitsStrike )
251         lf.lfStrikeOut = TRUE;
252     lstrcpynW( lf.lfFaceName, face, LF_FACESIZE );
253
254     /* adjust the height */
255     hdc = GetDC( dialog->hwnd );
256     if (hdc)
257     {
258         lf.lfHeight = -MulDiv(lf.lfHeight, GetDeviceCaps(hdc, LOGPIXELSY), 72);
259         ReleaseDC( dialog->hwnd, hdc );
260     }
261
262     font->hfont = CreateFontIndirectW( &lf );
263
264     TRACE("Adding font style %s\n", debugstr_w(font->name) );
265
266     return ERROR_SUCCESS;
267 }
268
269 static msi_font *msi_dialog_find_font( msi_dialog *dialog, LPCWSTR name )
270 {
271     msi_font *font;
272
273     for( font = dialog->font_list; font; font = font->next )
274         if( !strcmpW( font->name, name ) )  /* FIXME: case sensitive? */
275             break;
276
277     return font;
278 }
279
280 static UINT msi_dialog_set_font( msi_dialog *dialog, HWND hwnd, LPCWSTR name )
281 {
282     msi_font *font;
283
284     font = msi_dialog_find_font( dialog, name );
285     if( font )
286         SendMessageW( hwnd, WM_SETFONT, (WPARAM) font->hfont, TRUE );
287     else
288         ERR("No font entry for %s\n", debugstr_w(name));
289     return ERROR_SUCCESS;
290 }
291
292 static UINT msi_dialog_build_font_list( msi_dialog *dialog )
293 {
294     static const WCHAR query[] = {
295       'S','E','L','E','C','T',' ','*',' ',
296       'F','R','O','M',' ','`','T','e','x','t','S','t','y','l','e','`',' ',0
297     };
298     UINT r;
299     MSIQUERY *view = NULL;
300
301     TRACE("dialog %p\n", dialog );
302
303     r = MSI_OpenQuery( dialog->package->db, &view, query );
304     if( r != ERROR_SUCCESS )
305         return r;
306
307     r = MSI_IterateRecords( view, NULL, msi_dialog_add_font, dialog );
308     msiobj_release( &view->hdr );
309
310     return r;
311 }
312
313 static msi_control *msi_dialog_create_window( msi_dialog *dialog,
314                 MSIRECORD *rec, LPCWSTR szCls, LPCWSTR name, LPCWSTR text,
315                 DWORD style, HWND parent )
316 {
317     DWORD x, y, width, height;
318     LPWSTR font = NULL, title_font = NULL;
319     LPCWSTR title = NULL;
320     msi_control *control;
321
322     style |= WS_CHILD;
323
324     control = msi_alloc( sizeof *control + strlenW(name)*sizeof(WCHAR) );
325     strcpyW( control->name, name );
326     list_add_head( &dialog->controls, &control->entry );
327     control->handler = NULL;
328     control->property = NULL;
329     control->value = NULL;
330     control->hBitmap = NULL;
331     control->hIcon = NULL;
332     control->hDll = NULL;
333     control->tabnext = strdupW( MSI_RecordGetString( rec, 11) );
334
335     x = MSI_RecordGetInteger( rec, 4 );
336     y = MSI_RecordGetInteger( rec, 5 );
337     width = MSI_RecordGetInteger( rec, 6 );
338     height = MSI_RecordGetInteger( rec, 7 );
339
340     x = msi_dialog_scale_unit( dialog, x );
341     y = msi_dialog_scale_unit( dialog, y );
342     width = msi_dialog_scale_unit( dialog, width );
343     height = msi_dialog_scale_unit( dialog, height );
344
345     if( text )
346     {
347         deformat_string( dialog->package, text, &title_font );
348         font = msi_dialog_get_style( title_font, &title );
349     }
350
351     control->hwnd = CreateWindowW( szCls, title, style,
352                           x, y, width, height, parent, NULL, NULL, NULL );
353
354     TRACE("Dialog %s control %s hwnd %p\n",
355            debugstr_w(dialog->name), debugstr_w(text), control->hwnd );
356
357     msi_dialog_set_font( dialog, control->hwnd,
358                          font ? font : dialog->default_font );
359
360     msi_free( title_font );
361     msi_free( font );
362
363     return control;
364 }
365
366 static MSIRECORD *msi_get_binary_record( MSIDATABASE *db, LPCWSTR name )
367 {
368     static const WCHAR query[] = {
369         's','e','l','e','c','t',' ','*',' ',
370         'f','r','o','m',' ','B','i','n','a','r','y',' ',
371         'w','h','e','r','e',' ',
372             '`','N','a','m','e','`',' ','=',' ','\'','%','s','\'',0
373     };
374
375     return MSI_QueryGetRecord( db, query, name );
376 }
377
378 static LPWSTR msi_create_tmp_path(void)
379 {
380     WCHAR tmp[MAX_PATH];
381     LPWSTR path = NULL;
382     static const WCHAR prefix[] = { 'm','s','i',0 };
383     DWORD len, r;
384
385     r = GetTempPathW( MAX_PATH, tmp );
386     if( !r )
387         return path;
388     len = lstrlenW( tmp ) + 20;
389     path = msi_alloc( len * sizeof (WCHAR) );
390     if( path )
391     {
392         r = GetTempFileNameW( tmp, prefix, 0, path );
393         if (!r)
394         {
395             msi_free( path );
396             path = NULL;
397         }
398     }
399     return path;
400 }
401
402
403 static HANDLE msi_load_image( MSIDATABASE *db, LPCWSTR name, UINT type,
404                               UINT cx, UINT cy, UINT flags )
405 {
406     MSIRECORD *rec = NULL;
407     HANDLE himage = NULL;
408     LPWSTR tmp;
409     UINT r;
410
411     TRACE("%p %s %u %u %08x\n", db, debugstr_w(name), cx, cy, flags);
412
413     tmp = msi_create_tmp_path();
414     if( !tmp )
415         return himage;
416
417     rec = msi_get_binary_record( db, name );
418     if( rec )
419     {
420         r = MSI_RecordStreamToFile( rec, 2, tmp );
421         if( r == ERROR_SUCCESS )
422         {
423             himage = LoadImageW( 0, tmp, type, cx, cy, flags );
424             DeleteFileW( tmp );
425         }
426         msiobj_release( &rec->hdr );
427     }
428
429     msi_free( tmp );
430     return himage;
431 }
432
433 static HICON msi_load_icon( MSIDATABASE *db, LPCWSTR text, UINT attributes )
434 {
435     DWORD cx = 0, cy = 0, flags;
436
437     flags = LR_LOADFROMFILE | LR_DEFAULTSIZE;
438     if( attributes & msidbControlAttributesFixedSize )
439     {
440         flags &= ~LR_DEFAULTSIZE;
441         if( attributes & msidbControlAttributesIconSize16 )
442         {
443             cx += 16;
444             cy += 16;
445         }
446         if( attributes & msidbControlAttributesIconSize32 )
447         {
448             cx += 32;
449             cy += 32;
450         }
451         /* msidbControlAttributesIconSize48 handled by above logic */
452     }
453     return msi_load_image( db, text, IMAGE_ICON, cx, cy, flags );
454 }
455
456
457 /* called from the Control Event subscription code */
458 void msi_dialog_handle_event( msi_dialog* dialog, LPCWSTR control, 
459                               LPCWSTR attribute, MSIRECORD *rec )
460 {
461     msi_control* ctrl;
462     LPCWSTR font_text, text = NULL;
463     LPWSTR font;
464
465     ctrl = msi_dialog_find_control( dialog, control );
466     if (!ctrl)
467         return;
468     if( lstrcmpW(attribute, szText) )
469     {
470         ERR("Attribute %s\n", debugstr_w(attribute));
471         return;
472     }
473     font_text = MSI_RecordGetString( rec , 1 );
474     font = msi_dialog_get_style( font_text, &text );
475     SetWindowTextW( ctrl->hwnd, text );
476     msi_free( font );
477     msi_dialog_check_messages( NULL );
478 }
479
480 static void msi_dialog_map_events(msi_dialog* dialog, LPCWSTR control)
481 {
482     static WCHAR Query[] = {
483         'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
484          '`','E','v','e','n','t','M','a','p','p','i','n','g','`',' ',
485         'W','H','E','R','E',' ',
486          '`','D','i','a','l','o','g','_','`',' ','=',' ','\'','%','s','\'',' ',
487         'A','N','D',' ',
488          '`','C','o','n','t','r','o','l','_','`',' ','=',' ','\'','%','s','\'',0
489     };
490     MSIRECORD *row;
491     LPCWSTR event, attribute;
492
493     row = MSI_QueryGetRecord( dialog->package->db, Query, dialog->name, control );
494     if (!row)
495         return;
496
497     event = MSI_RecordGetString( row, 3 );
498     attribute = MSI_RecordGetString( row, 4 );
499     ControlEvent_SubscribeToEvent( dialog->package, event, control, attribute );
500     msiobj_release( &row->hdr );
501 }
502
503 /* everything except radio buttons */
504 static msi_control *msi_dialog_add_control( msi_dialog *dialog,
505                 MSIRECORD *rec, LPCWSTR szCls, DWORD style )
506 {
507     DWORD attributes;
508     LPCWSTR text, name;
509
510     name = MSI_RecordGetString( rec, 2 );
511     attributes = MSI_RecordGetInteger( rec, 8 );
512     text = MSI_RecordGetString( rec, 10 );
513     if( attributes & msidbControlAttributesVisible )
514         style |= WS_VISIBLE;
515     if( ~attributes & msidbControlAttributesEnabled )
516         style |= WS_DISABLED;
517
518     msi_dialog_map_events(dialog, name);
519
520     return msi_dialog_create_window( dialog, rec, szCls, name, text,
521                                      style, dialog->hwnd );
522 }
523
524 struct msi_text_info
525 {
526     WNDPROC oldproc;
527     DWORD attributes;
528 };
529
530 /*
531  * we don't erase our own background,
532  * so we have to make sure that the parent window redraws first
533  */
534 static void msi_text_on_settext( HWND hWnd )
535 {
536     HWND hParent;
537     RECT rc;
538
539     hParent = GetParent( hWnd );
540     GetWindowRect( hWnd, &rc );
541     MapWindowPoints( NULL, hParent, (LPPOINT) &rc, 2 );
542     InvalidateRect( hParent, &rc, TRUE );
543 }
544
545 static LRESULT WINAPI
546 MSIText_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
547 {
548     struct msi_text_info *info;
549     LRESULT r = 0;
550
551     TRACE("%p %04x %08x %08lx\n", hWnd, msg, wParam, lParam);
552
553     info = GetPropW(hWnd, szButtonData);
554
555     if( msg == WM_CTLCOLORSTATIC &&
556        ( info->attributes & msidbControlAttributesTransparent ) )
557     {
558         SetBkMode( (HDC)wParam, TRANSPARENT );
559         return (LRESULT) GetStockObject(NULL_BRUSH);
560     }
561
562     r = CallWindowProcW(info->oldproc, hWnd, msg, wParam, lParam);
563
564     switch( msg )
565     {
566     case WM_SETTEXT:
567         msi_text_on_settext( hWnd );
568         break;
569     case WM_NCDESTROY:
570         msi_free( info );
571         RemovePropW( hWnd, szButtonData );
572         break;
573     }
574
575     return r;
576 }
577
578 static UINT msi_dialog_text_control( msi_dialog *dialog, MSIRECORD *rec )
579 {
580     msi_control *control;
581     struct msi_text_info *info;
582
583     TRACE("%p %p\n", dialog, rec);
584
585     control = msi_dialog_add_control( dialog, rec, szStatic, SS_LEFT | WS_GROUP );
586     if( !control )
587         return ERROR_FUNCTION_FAILED;
588
589     info = msi_alloc( sizeof *info );
590     if( !info )
591         return ERROR_SUCCESS;
592
593     info->attributes = MSI_RecordGetInteger( rec, 8 );
594     if( info->attributes & msidbControlAttributesTransparent )
595         SetWindowLongPtrW( control->hwnd, GWL_EXSTYLE, WS_EX_TRANSPARENT );
596
597     info->oldproc = (WNDPROC) SetWindowLongPtrW( control->hwnd, GWLP_WNDPROC,
598                                           (LONG_PTR)MSIText_WndProc );
599     SetPropW( control->hwnd, szButtonData, info );
600
601     return ERROR_SUCCESS;
602 }
603
604 static UINT msi_dialog_button_control( msi_dialog *dialog, MSIRECORD *rec )
605 {
606     msi_control *control;
607     UINT attributes, style;
608     LPWSTR text;
609
610     TRACE("%p %p\n", dialog, rec);
611
612     style = WS_TABSTOP;
613     attributes = MSI_RecordGetInteger( rec, 8 );
614     if( attributes & msidbControlAttributesIcon )
615         style |= BS_ICON;
616
617     control = msi_dialog_add_control( dialog, rec, szButton, style );
618     if( !control )
619         return ERROR_FUNCTION_FAILED;
620
621     control->handler = msi_dialog_button_handler;
622
623     /* set the icon */
624     text = msi_get_deformatted_field( dialog->package, rec, 10 );
625     control->hIcon = msi_load_icon( dialog->package->db, text, attributes );
626     if( attributes & msidbControlAttributesIcon )
627         SendMessageW( control->hwnd, BM_SETIMAGE, IMAGE_ICON, (LPARAM) control->hIcon );
628     msi_free( text );
629
630     return ERROR_SUCCESS;
631 }
632
633 static LPWSTR msi_get_checkbox_value( msi_dialog *dialog, LPCWSTR prop )
634 {
635     static const WCHAR query[] = {
636         'S','E','L','E','C','T',' ','*',' ',
637         'F','R','O','M',' ','`','C','h','e','c','k','B','o','x',' ','`',
638         'W','H','E','R','E',' ',
639         '`','P','r','o','p','e','r','t','y','`',' ','=',' ',
640         '\'','%','s','\'',0
641     };
642     MSIRECORD *rec = NULL;
643     LPWSTR ret = NULL;
644
645     /* find if there is a value associated with the checkbox */
646     rec = MSI_QueryGetRecord( dialog->package->db, query, prop );
647     if (!rec)
648         return ret;
649
650     ret = msi_get_deformatted_field( dialog->package, rec, 2 );
651     if( ret && !ret[0] )
652     {
653         msi_free( ret );
654         ret = NULL;
655     }
656     msiobj_release( &rec->hdr );
657     if (ret)
658         return ret;
659
660     ret = msi_dup_property( dialog->package, prop );
661     if( ret && !ret[0] )
662     {
663         msi_free( ret );
664         ret = NULL;
665     }
666
667     return ret;
668 }
669
670 static UINT msi_dialog_checkbox_control( msi_dialog *dialog, MSIRECORD *rec )
671 {
672     msi_control *control;
673     LPCWSTR prop;
674
675     TRACE("%p %p\n", dialog, rec);
676
677     control = msi_dialog_add_control( dialog, rec, szButton,
678                                 BS_CHECKBOX | BS_MULTILINE | WS_TABSTOP );
679     control->handler = msi_dialog_checkbox_handler;
680     prop = MSI_RecordGetString( rec, 9 );
681     if( prop )
682     {
683         control->property = strdupW( prop );
684         control->value = msi_get_checkbox_value( dialog, prop );
685         TRACE("control %s value %s\n", debugstr_w(control->property),
686               debugstr_w(control->value));
687     }
688     msi_dialog_checkbox_sync_state( dialog, control );
689
690     return ERROR_SUCCESS;
691 }
692
693 static UINT msi_dialog_line_control( msi_dialog *dialog, MSIRECORD *rec )
694 {
695     TRACE("%p %p\n", dialog, rec);
696
697     msi_dialog_add_control( dialog, rec, szStatic, SS_ETCHEDHORZ | SS_SUNKEN );
698     return ERROR_SUCCESS;
699 }
700
701 /******************** Scroll Text ********************************************/
702
703 struct msi_scrolltext_info
704 {
705     msi_dialog *dialog;
706     msi_control *control;
707     WNDPROC oldproc;
708 };
709
710 static LRESULT WINAPI
711 MSIScrollText_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
712 {
713     struct msi_scrolltext_info *info;
714     HRESULT r;
715
716     TRACE("%p %04x %08x %08lx\n", hWnd, msg, wParam, lParam);
717
718     info = GetPropW( hWnd, szButtonData );
719
720     r = CallWindowProcW( info->oldproc, hWnd, msg, wParam, lParam );
721
722     switch( msg )
723     {
724     case WM_NCDESTROY:
725         msi_free( info );
726         RemovePropW( hWnd, szButtonData );
727         break;
728     case WM_PAINT:
729         /* native MSI sets a wait cursor here */
730         msi_dialog_button_handler( info->dialog, info->control, BN_CLICKED );
731         break;
732     }
733     return r;
734 }
735
736 struct msi_streamin_info
737 {
738     LPSTR string;
739     DWORD offset;
740     DWORD length;
741 };
742
743 static DWORD CALLBACK
744 msi_richedit_stream_in( DWORD_PTR arg, LPBYTE buffer, LONG count, LONG *pcb )
745 {
746     struct msi_streamin_info *info = (struct msi_streamin_info*) arg;
747
748     if( (count + info->offset) > info->length )
749         count = info->length - info->offset;
750     memcpy( buffer, &info->string[ info->offset ], count );
751     *pcb = count;
752     info->offset += count;
753
754     TRACE("%ld/%ld\n", info->offset, info->length);
755
756     return 0;
757 }
758
759 static void msi_scrolltext_add_text( msi_control *control, LPCWSTR text )
760 {
761     struct msi_streamin_info info;
762     EDITSTREAM es;
763
764     info.string = strdupWtoA( text );
765     info.offset = 0;
766     info.length = lstrlenA( info.string ) + 1;
767
768     es.dwCookie = (DWORD_PTR) &info;
769     es.dwError = 0;
770     es.pfnCallback = msi_richedit_stream_in;
771
772     SendMessageW( control->hwnd, EM_STREAMIN, SF_RTF, (LPARAM) &es );
773
774     msi_free( info.string );
775 }
776
777 static UINT msi_dialog_scrolltext_control( msi_dialog *dialog, MSIRECORD *rec )
778 {
779     static const WCHAR szRichEdit20W[] = {
780         'R','i','c','h','E','d','i','t','2','0','W',0
781     };
782     struct msi_scrolltext_info *info;
783     msi_control *control;
784     HMODULE hRichedit;
785     DWORD style;
786
787     info = msi_alloc( sizeof *info );
788     if (!info)
789         return ERROR_FUNCTION_FAILED;
790
791     hRichedit = LoadLibraryA("riched20");
792
793     style = WS_BORDER | ES_MULTILINE | WS_VSCROLL |
794             ES_READONLY | ES_AUTOVSCROLL | WS_TABSTOP;
795     control = msi_dialog_add_control( dialog, rec, szRichEdit20W, style );
796     if (!control)
797     {
798         FreeLibrary( hRichedit );
799         msi_free( info );
800         return ERROR_FUNCTION_FAILED;
801     }
802
803     control->hDll = hRichedit;
804
805     info->dialog = dialog;
806     info->control = control;
807
808     /* subclass the static control */
809     info->oldproc = (WNDPROC) SetWindowLongPtrW( control->hwnd, GWLP_WNDPROC,
810                                           (LONG_PTR)MSIScrollText_WndProc );
811     SetPropW( control->hwnd, szButtonData, info );
812
813     /* add the text into the richedit */
814     msi_scrolltext_add_text( control, MSI_RecordGetString( rec, 10 ) );
815
816     return ERROR_SUCCESS;
817 }
818
819 static HBITMAP msi_load_picture( MSIDATABASE *db, LPCWSTR name,
820                                  INT cx, INT cy, DWORD flags )
821 {
822     HBITMAP hOleBitmap = 0, hBitmap = 0, hOldSrcBitmap, hOldDestBitmap;
823     MSIRECORD *rec = NULL;
824     IStream *stm = NULL;
825     IPicture *pic = NULL;
826     HDC srcdc, destdc;
827     BITMAP bm;
828     UINT r;
829
830     rec = msi_get_binary_record( db, name );
831     if( !rec )
832         goto end;
833
834     r = MSI_RecordGetIStream( rec, 2, &stm );
835     msiobj_release( &rec->hdr );
836     if( r != ERROR_SUCCESS )
837         goto end;
838
839     r = OleLoadPicture( stm, 0, TRUE, &IID_IPicture, (LPVOID*) &pic );
840     IStream_Release( stm );
841     if( FAILED( r ) )
842     {
843         ERR("failed to load picture\n");
844         goto end;
845     }
846
847     r = IPicture_get_Handle( pic, (OLE_HANDLE*) &hOleBitmap );
848     if( FAILED( r ) )
849     {
850         ERR("failed to get bitmap handle\n");
851         goto end;
852     }
853  
854     /* make the bitmap the desired size */
855     r = GetObjectW( hOleBitmap, sizeof bm, &bm );
856     if (r != sizeof bm )
857     {
858         ERR("failed to get bitmap size\n");
859         goto end;
860     }
861
862     if (flags & LR_DEFAULTSIZE)
863     {
864         cx = bm.bmWidth;
865         cy = bm.bmHeight;
866     }
867
868     srcdc = CreateCompatibleDC( NULL );
869     hOldSrcBitmap = SelectObject( srcdc, hOleBitmap );
870     destdc = CreateCompatibleDC( NULL );
871     hBitmap = CreateCompatibleBitmap( srcdc, cx, cy );
872     hOldDestBitmap = SelectObject( destdc, hBitmap );
873     StretchBlt( destdc, 0, 0, cx, cy,
874                 srcdc, 0, 0, bm.bmWidth, bm.bmHeight, SRCCOPY);
875     SelectObject( srcdc, hOldSrcBitmap );
876     SelectObject( destdc, hOldDestBitmap );
877     DeleteDC( srcdc );
878     DeleteDC( destdc );
879
880 end:
881     if ( pic )
882         IPicture_Release( pic );
883     return hBitmap;
884 }
885
886 static UINT msi_dialog_bitmap_control( msi_dialog *dialog, MSIRECORD *rec )
887 {
888     UINT cx, cy, flags, style, attributes;
889     msi_control *control;
890     LPWSTR text;
891
892     flags = LR_LOADFROMFILE;
893     style = SS_BITMAP | SS_LEFT | WS_GROUP;
894
895     attributes = MSI_RecordGetInteger( rec, 8 );
896     if( attributes & msidbControlAttributesFixedSize )
897     {
898         flags |= LR_DEFAULTSIZE;
899         style |= SS_CENTERIMAGE;
900     }
901
902     control = msi_dialog_add_control( dialog, rec, szStatic, style );
903     cx = MSI_RecordGetInteger( rec, 6 );
904     cy = MSI_RecordGetInteger( rec, 7 );
905     cx = msi_dialog_scale_unit( dialog, cx );
906     cy = msi_dialog_scale_unit( dialog, cy );
907
908     text = msi_get_deformatted_field( dialog->package, rec, 10 );
909     control->hBitmap = msi_load_picture( dialog->package->db, text, cx, cy, flags );
910     if( control->hBitmap )
911         SendMessageW( control->hwnd, STM_SETIMAGE,
912                       IMAGE_BITMAP, (LPARAM) control->hBitmap );
913     else
914         ERR("Failed to load bitmap %s\n", debugstr_w(text));
915
916     msi_free( text );
917     
918     return ERROR_SUCCESS;
919 }
920
921 static UINT msi_dialog_icon_control( msi_dialog *dialog, MSIRECORD *rec )
922 {
923     msi_control *control;
924     DWORD attributes;
925     LPWSTR text;
926
927     TRACE("\n");
928
929     control = msi_dialog_add_control( dialog, rec, szStatic,
930                             SS_ICON | SS_CENTERIMAGE | WS_GROUP );
931             
932     attributes = MSI_RecordGetInteger( rec, 8 );
933     text = msi_get_deformatted_field( dialog->package, rec, 10 );
934     control->hIcon = msi_load_icon( dialog->package->db, text, attributes );
935     if( control->hIcon )
936         SendMessageW( control->hwnd, STM_SETICON, (WPARAM) control->hIcon, 0 );
937     else
938         ERR("Failed to load bitmap %s\n", debugstr_w(text));
939     msi_free( text );
940     return ERROR_SUCCESS;
941 }
942
943 static UINT msi_dialog_combo_control( msi_dialog *dialog, MSIRECORD *rec )
944 {
945     static const WCHAR szCombo[] = { 'C','O','M','B','O','B','O','X',0 };
946
947     msi_dialog_add_control( dialog, rec, szCombo,
948                             SS_BITMAP | SS_LEFT | SS_CENTERIMAGE );
949     return ERROR_SUCCESS;
950 }
951
952 static UINT msi_dialog_edit_control( msi_dialog *dialog, MSIRECORD *rec )
953 {
954     msi_control *control;
955     LPCWSTR prop;
956     LPWSTR val;
957
958     control = msi_dialog_add_control( dialog, rec, szEdit,
959                                       WS_BORDER | WS_TABSTOP );
960     control->handler = msi_dialog_edit_handler;
961     prop = MSI_RecordGetString( rec, 9 );
962     if( prop )
963         control->property = strdupW( prop );
964     val = msi_dup_property( dialog->package, control->property );
965     SetWindowTextW( control->hwnd, val );
966     msi_free( val );
967     return ERROR_SUCCESS;
968 }
969
970 /******************** Masked Edit ********************************************/
971
972 #define MASK_MAX_GROUPS 10
973
974 struct msi_mask_group
975 {
976     UINT len;
977     UINT ofs;
978     WCHAR type;
979     HWND hwnd;
980 };
981
982 struct msi_maskedit_info
983 {
984     msi_dialog *dialog;
985     WNDPROC oldproc;
986     HWND hwnd;
987     LPWSTR prop;
988     UINT num_chars;
989     UINT num_groups;
990     struct msi_mask_group group[MASK_MAX_GROUPS];
991 };
992
993 static BOOL msi_mask_editable( WCHAR type )
994 {
995     switch (type)
996     {
997     case '%':
998     case '#':
999     case '&':
1000     case '`':
1001     case '?':
1002     case '^':
1003         return TRUE;
1004     }
1005     return FALSE;
1006 }
1007
1008 static void msi_mask_control_change( struct msi_maskedit_info *info )
1009 {
1010     LPWSTR val;
1011     UINT i, n, r;
1012
1013     val = msi_alloc( (info->num_chars+1)*sizeof(WCHAR) );
1014     for( i=0, n=0; i<info->num_groups; i++ )
1015     {
1016         if( (info->group[i].len + n) > info->num_chars )
1017         {
1018             ERR("can't fit control %d text into template\n",i);
1019             break;
1020         }
1021         if (!msi_mask_editable(info->group[i].type))
1022         {
1023             for(r=0; r<info->group[i].len; r++)
1024                 val[n+r] = info->group[i].type;
1025             val[n+r] = 0;
1026         }
1027         else
1028         {
1029             r = GetWindowTextW( info->group[i].hwnd, &val[n], info->group[i].len+1 );
1030             if( r != info->group[i].len )
1031                 break;
1032         }
1033         n += r;
1034     }
1035
1036     TRACE("%d/%d controls were good\n", i, info->num_groups);
1037
1038     if( i == info->num_groups )
1039     {
1040         TRACE("Set property %s to %s\n",
1041               debugstr_w(info->prop), debugstr_w(val) );
1042         CharUpperBuffW( val, info->num_chars );
1043         MSI_SetPropertyW( info->dialog->package, info->prop, val );
1044         msi_dialog_evaluate_control_conditions( info->dialog );
1045     }
1046     msi_free( val );
1047 }
1048
1049 /* now move to the next control if necessary */
1050 static VOID msi_mask_next_control( struct msi_maskedit_info *info, HWND hWnd )
1051 {
1052     HWND hWndNext;
1053     UINT len, i;
1054
1055     for( i=0; i<info->num_groups; i++ )
1056         if( info->group[i].hwnd == hWnd )
1057             break;
1058
1059     /* don't move from the last control */
1060     if( i >= (info->num_groups-1) )
1061         return;
1062
1063     len = SendMessageW( hWnd, WM_GETTEXTLENGTH, 0, 0 );
1064     if( len < info->group[i].len )
1065         return;
1066
1067     hWndNext = GetNextDlgTabItem( GetParent( hWnd ), hWnd, FALSE );
1068     SetFocus( hWndNext );
1069 }
1070
1071 static LRESULT WINAPI
1072 MSIMaskedEdit_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
1073 {
1074     struct msi_maskedit_info *info;
1075     HRESULT r;
1076
1077     TRACE("%p %04x %08x %08lx\n", hWnd, msg, wParam, lParam);
1078
1079     info = GetPropW(hWnd, szButtonData);
1080
1081     r = CallWindowProcW(info->oldproc, hWnd, msg, wParam, lParam);
1082
1083     switch( msg )
1084     {
1085     case WM_COMMAND:
1086         if (HIWORD(wParam) == EN_CHANGE)
1087         {
1088             msi_mask_control_change( info );
1089             msi_mask_next_control( info, (HWND) lParam );
1090         }
1091         break;
1092     case WM_NCDESTROY:
1093         msi_free( info->prop );
1094         msi_free( info );
1095         RemovePropW( hWnd, szButtonData );
1096         break;
1097     }
1098
1099     return r;
1100 }
1101
1102 /* fish the various bits of the property out and put them in the control */
1103 static void
1104 msi_maskedit_set_text( struct msi_maskedit_info *info, LPCWSTR text )
1105 {
1106     LPCWSTR p;
1107     UINT i;
1108
1109     p = text;
1110     for( i = 0; i < info->num_groups; i++ )
1111     {
1112         if( info->group[i].len < lstrlenW( p ) )
1113         {
1114             LPWSTR chunk = strdupW( p );
1115             chunk[ info->group[i].len ] = 0;
1116             SetWindowTextW( info->group[i].hwnd, chunk );
1117             msi_free( chunk );
1118         }
1119         else
1120         {
1121             SetWindowTextW( info->group[i].hwnd, p );
1122             break;
1123         }
1124         p += info->group[i].len;
1125     }
1126 }
1127
1128 static struct msi_maskedit_info * msi_dialog_parse_groups( LPCWSTR mask )
1129 {
1130     struct msi_maskedit_info * info = NULL;
1131     int i = 0, n = 0, total = 0;
1132     LPCWSTR p;
1133
1134     TRACE("masked control, template %s\n", debugstr_w(mask));
1135
1136     if( !mask )
1137         return info;
1138
1139     info = msi_alloc_zero( sizeof *info );
1140     if( !info )
1141         return info;
1142
1143     p = strchrW(mask, '<');
1144     if( p )
1145         p++;
1146     else
1147         p = mask;
1148
1149     for( i=0; i<MASK_MAX_GROUPS; i++ )
1150     {
1151         /* stop at the end of the string */
1152         if( p[0] == 0 || p[0] == '>' )
1153             break;
1154
1155         /* count the number of the same identifier */
1156         for( n=0; p[n] == p[0]; n++ )
1157             ;
1158         info->group[i].ofs = total;
1159         info->group[i].type = p[0];
1160         if( p[n] == '=' )
1161         {
1162             n++;
1163             total++; /* an extra not part of the group */
1164         }
1165         info->group[i].len = n;
1166         total += n;
1167         p += n;
1168     }
1169
1170     TRACE("%d characters in %d groups\n", total, i );
1171     if( i == MASK_MAX_GROUPS )
1172         ERR("too many groups in PIDTemplate %s\n", debugstr_w(mask));
1173
1174     info->num_chars = total;
1175     info->num_groups = i;
1176
1177     return info;
1178 }
1179
1180 static void
1181 msi_maskedit_create_children( struct msi_maskedit_info *info, LPCWSTR font )
1182 {
1183     DWORD width, height, style, wx, ww;
1184     RECT rect;
1185     HWND hwnd;
1186     UINT i;
1187
1188     style = WS_CHILD | WS_BORDER | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL;
1189
1190     GetClientRect( info->hwnd, &rect );
1191
1192     width = rect.right - rect.left;
1193     height = rect.bottom - rect.top;
1194
1195     for( i = 0; i < info->num_groups; i++ )
1196     {
1197         if (!msi_mask_editable( info->group[i].type ))
1198             continue;
1199         wx = (info->group[i].ofs * width) / info->num_chars;
1200         ww = (info->group[i].len * width) / info->num_chars;
1201
1202         hwnd = CreateWindowW( szEdit, NULL, style, wx, 0, ww, height,
1203                               info->hwnd, NULL, NULL, NULL );
1204         if( !hwnd )
1205         {
1206             ERR("failed to create mask edit sub window\n");
1207             break;
1208         }
1209
1210         SendMessageW( hwnd, EM_LIMITTEXT, info->group[i].len, 0 );
1211
1212         msi_dialog_set_font( info->dialog, hwnd,
1213                              font?font:info->dialog->default_font );
1214         info->group[i].hwnd = hwnd;
1215     }
1216 }
1217
1218 /*
1219  * office 2003 uses "73931<````=````=````=````=`````>@@@@@"
1220  * delphi 7 uses "<????-??????-??????-????>" and "<???-???>"
1221  * filemaker pro 7 uses "<^^^^=^^^^=^^^^=^^^^=^^^^=^^^^=^^^^^>"
1222  */
1223 static UINT msi_dialog_maskedit_control( msi_dialog *dialog, MSIRECORD *rec )
1224 {
1225     LPWSTR font_mask, val = NULL, font;
1226     struct msi_maskedit_info *info = NULL;
1227     UINT ret = ERROR_SUCCESS;
1228     msi_control *control;
1229     LPCWSTR prop, mask;
1230
1231     TRACE("\n");
1232
1233     font_mask = msi_get_deformatted_field( dialog->package, rec, 10 );
1234     font = msi_dialog_get_style( font_mask, &mask );
1235     if( !mask )
1236     {
1237         ERR("mask template is empty\n");
1238         goto end;
1239     }
1240
1241     info = msi_dialog_parse_groups( mask );
1242     if( !info )
1243     {
1244         ERR("template %s is invalid\n", debugstr_w(mask));
1245         goto end;
1246     }
1247
1248     info->dialog = dialog;
1249
1250     control = msi_dialog_add_control( dialog, rec, szStatic,
1251                    SS_OWNERDRAW | WS_GROUP | WS_VISIBLE );
1252     if( !control )
1253     {
1254         ERR("Failed to create maskedit container\n");
1255         ret = ERROR_FUNCTION_FAILED;
1256         goto end;
1257     }
1258     SetWindowLongPtrW( control->hwnd, GWL_EXSTYLE, WS_EX_CONTROLPARENT );
1259
1260     info->hwnd = control->hwnd;
1261
1262     /* subclass the static control */
1263     info->oldproc = (WNDPROC) SetWindowLongPtrW( info->hwnd, GWLP_WNDPROC,
1264                                           (LONG_PTR)MSIMaskedEdit_WndProc );
1265     SetPropW( control->hwnd, szButtonData, info );
1266
1267     prop = MSI_RecordGetString( rec, 9 );
1268     if( prop )
1269         info->prop = strdupW( prop );
1270
1271     msi_maskedit_create_children( info, font );
1272
1273     if( prop )
1274     {
1275         val = msi_dup_property( dialog->package, prop );
1276         if( val )
1277         {
1278             msi_maskedit_set_text( info, val );
1279             msi_free( val );
1280         }
1281     }
1282
1283 end:
1284     if( ret != ERROR_SUCCESS )
1285         msi_free( info );
1286     msi_free( font_mask );
1287     msi_free( font );
1288     return ret;
1289 }
1290
1291 /******************** Progress Bar *****************************************/
1292
1293 static UINT msi_dialog_progress_bar( msi_dialog *dialog, MSIRECORD *rec )
1294 {
1295     msi_dialog_add_control( dialog, rec, PROGRESS_CLASSW, WS_VISIBLE );
1296     return ERROR_SUCCESS;
1297 }
1298
1299 /******************** Path Edit ********************************************/
1300
1301 static UINT msi_dialog_pathedit_control( msi_dialog *dialog, MSIRECORD *rec )
1302 {
1303     FIXME("not implemented properly\n");
1304     return msi_dialog_edit_control( dialog, rec );
1305 }
1306
1307 /* radio buttons are a bit different from normal controls */
1308 static UINT msi_dialog_create_radiobutton( MSIRECORD *rec, LPVOID param )
1309 {
1310     radio_button_group_descr *group = (radio_button_group_descr *)param;
1311     msi_dialog *dialog = group->dialog;
1312     msi_control *control;
1313     LPCWSTR prop, text, name;
1314     DWORD style, attributes = group->attributes;
1315
1316     style = WS_CHILD | BS_AUTORADIOBUTTON | BS_MULTILINE | WS_TABSTOP;
1317     name = MSI_RecordGetString( rec, 3 );
1318     text = MSI_RecordGetString( rec, 8 );
1319     if( attributes & 1 )
1320         style |= WS_VISIBLE;
1321     if( ~attributes & 2 )
1322         style |= WS_DISABLED;
1323
1324     control = msi_dialog_create_window( dialog, rec, szButton, name, text,
1325                                         style, group->parent->hwnd );
1326     if (!control)
1327         return ERROR_FUNCTION_FAILED;
1328     control->handler = msi_dialog_radiogroup_handler;
1329
1330     prop = MSI_RecordGetString( rec, 1 );
1331     if( prop )
1332         control->property = strdupW( prop );
1333
1334     return ERROR_SUCCESS;
1335 }
1336
1337 static UINT msi_dialog_radiogroup_control( msi_dialog *dialog, MSIRECORD *rec )
1338 {
1339     static const WCHAR query[] = {
1340         'S','E','L','E','C','T',' ','*',' ',
1341         'F','R','O','M',' ','R','a','d','i','o','B','u','t','t','o','n',' ',
1342         'W','H','E','R','E',' ',
1343            '`','P','r','o','p','e','r','t','y','`',' ','=',' ','\'','%','s','\'',0};
1344     UINT r;
1345     LPCWSTR prop;
1346     msi_control *control;
1347     MSIQUERY *view = NULL;
1348     radio_button_group_descr group;
1349     MSIPACKAGE *package = dialog->package;
1350     WNDPROC oldproc;
1351
1352     prop = MSI_RecordGetString( rec, 9 );
1353
1354     TRACE("%p %p %s\n", dialog, rec, debugstr_w( prop ));
1355
1356     /* Create parent group box to hold radio buttons */
1357     control = msi_dialog_add_control( dialog, rec, szButton, BS_OWNERDRAW|WS_GROUP );
1358     if( !control )
1359         return ERROR_FUNCTION_FAILED;
1360
1361     oldproc = (WNDPROC) SetWindowLongPtrW( control->hwnd, GWLP_WNDPROC,
1362                                            (LONG_PTR)MSIRadioGroup_WndProc );
1363     SetPropW(control->hwnd, szButtonData, oldproc);
1364     SetWindowLongPtrW( control->hwnd, GWL_EXSTYLE, WS_EX_CONTROLPARENT );
1365
1366     if( prop )
1367         control->property = strdupW( prop );
1368
1369     /* query the Radio Button table for all control in this group */
1370     r = MSI_OpenQuery( package->db, &view, query, prop );
1371     if( r != ERROR_SUCCESS )
1372     {
1373         ERR("query failed for dialog %s radio group %s\n", 
1374             debugstr_w(dialog->name), debugstr_w(prop));
1375         return ERROR_INVALID_PARAMETER;
1376     }
1377
1378     group.dialog = dialog;
1379     group.parent = control;
1380     group.attributes = MSI_RecordGetInteger( rec, 8 );
1381
1382     r = MSI_IterateRecords( view, 0, msi_dialog_create_radiobutton, &group );
1383     msiobj_release( &view->hdr );
1384
1385     return r;
1386 }
1387
1388 /******************** Selection Tree ***************************************/
1389
1390 static void
1391 msi_dialog_tv_add_child_features( MSIPACKAGE *package, HWND hwnd,
1392                                   LPCWSTR parent, HTREEITEM hParent )
1393 {
1394     MSIFEATURE *feature;
1395     TVINSERTSTRUCTW tvis;
1396     HTREEITEM hitem;
1397
1398     LIST_FOR_EACH_ENTRY( feature, &package->features, MSIFEATURE, entry )
1399     {
1400         if ( lstrcmpW( parent, feature->Feature_Parent ) )
1401             continue;
1402
1403         if ( !feature->Title )
1404             continue;
1405
1406         memset( &tvis, 0, sizeof tvis );
1407         tvis.hParent = hParent;
1408         tvis.hInsertAfter = TVI_SORT;
1409         if (feature->Title)
1410         {
1411             tvis.u.item.mask = TVIF_TEXT;
1412             tvis.u.item.pszText = feature->Title;
1413         }
1414         tvis.u.item.lParam = (LPARAM) feature;
1415         hitem = (HTREEITEM) SendMessageW( hwnd, TVM_INSERTITEMW, 0, (LPARAM) &tvis );
1416         if (!hitem)
1417             continue;
1418
1419         msi_dialog_tv_add_child_features( package, hwnd,
1420                                           feature->Feature, hitem );
1421     }
1422 }
1423
1424 static UINT msi_dialog_selection_tree( msi_dialog *dialog, MSIRECORD *rec )
1425 {
1426     msi_control *control;
1427     LPCWSTR prop;
1428     LPWSTR val;
1429     MSIPACKAGE *package = dialog->package;
1430
1431     prop = MSI_RecordGetString( rec, 9 );
1432     val = msi_dup_property( package, prop );
1433     control = msi_dialog_add_control( dialog, rec, WC_TREEVIEWW,
1434                                       TVS_HASBUTTONS | WS_GROUP | WS_VSCROLL );
1435     if (!control)
1436         return ERROR_FUNCTION_FAILED;
1437
1438     msi_dialog_tv_add_child_features( package, control->hwnd, NULL, NULL );
1439
1440     msi_free( val );
1441
1442     return ERROR_SUCCESS;
1443 }
1444
1445 struct control_handler msi_dialog_handler[] =
1446 {
1447     { szText, msi_dialog_text_control },
1448     { szPushButton, msi_dialog_button_control },
1449     { szLine, msi_dialog_line_control },
1450     { szBitmap, msi_dialog_bitmap_control },
1451     { szCheckBox, msi_dialog_checkbox_control },
1452     { szScrollableText, msi_dialog_scrolltext_control },
1453     { szComboBox, msi_dialog_combo_control },
1454     { szEdit, msi_dialog_edit_control },
1455     { szMaskedEdit, msi_dialog_maskedit_control },
1456     { szPathEdit, msi_dialog_pathedit_control },
1457     { szProgressBar, msi_dialog_progress_bar },
1458     { szRadioButtonGroup, msi_dialog_radiogroup_control },
1459     { szIcon, msi_dialog_icon_control },
1460     { szSelectionTree, msi_dialog_selection_tree },
1461 };
1462
1463 #define NUM_CONTROL_TYPES (sizeof msi_dialog_handler/sizeof msi_dialog_handler[0])
1464
1465 static UINT msi_dialog_create_controls( MSIRECORD *rec, LPVOID param )
1466 {
1467     msi_dialog *dialog = param;
1468     LPCWSTR control_type;
1469     UINT i;
1470
1471     /* find and call the function that can create this type of control */
1472     control_type = MSI_RecordGetString( rec, 3 );
1473     for( i=0; i<NUM_CONTROL_TYPES; i++ )
1474         if (!strcmpiW( msi_dialog_handler[i].control_type, control_type ))
1475             break;
1476     if( i != NUM_CONTROL_TYPES )
1477         msi_dialog_handler[i].func( dialog, rec );
1478     else
1479         ERR("no handler for element type %s\n", debugstr_w(control_type));
1480
1481     return ERROR_SUCCESS;
1482 }
1483
1484 static UINT msi_dialog_fill_controls( msi_dialog *dialog )
1485 {
1486     static const WCHAR query[] = {
1487         'S','E','L','E','C','T',' ','*',' ',
1488         'F','R','O','M',' ','C','o','n','t','r','o','l',' ',
1489         'W','H','E','R','E',' ',
1490            '`','D','i','a','l','o','g','_','`',' ','=',' ','\'','%','s','\'',0};
1491     UINT r;
1492     MSIQUERY *view = NULL;
1493     MSIPACKAGE *package = dialog->package;
1494
1495     TRACE("%p %s\n", dialog, debugstr_w(dialog->name) );
1496
1497     /* query the Control table for all the elements of the control */
1498     r = MSI_OpenQuery( package->db, &view, query, dialog->name );
1499     if( r != ERROR_SUCCESS )
1500     {
1501         ERR("query failed for dialog %s\n", debugstr_w(dialog->name));
1502         return ERROR_INVALID_PARAMETER;
1503     }
1504
1505     r = MSI_IterateRecords( view, 0, msi_dialog_create_controls, dialog );
1506     msiobj_release( &view->hdr );
1507
1508     return r;
1509 }
1510
1511 static UINT msi_dialog_set_control_condition( MSIRECORD *rec, LPVOID param )
1512 {
1513     static const WCHAR szHide[] = { 'H','i','d','e',0 };
1514     static const WCHAR szShow[] = { 'S','h','o','w',0 };
1515     static const WCHAR szDisable[] = { 'D','i','s','a','b','l','e',0 };
1516     static const WCHAR szEnable[] = { 'E','n','a','b','l','e',0 };
1517     msi_dialog *dialog = param;
1518     msi_control *control;
1519     LPCWSTR name, action, condition;
1520     UINT r;
1521
1522     name = MSI_RecordGetString( rec, 2 );
1523     action = MSI_RecordGetString( rec, 3 );
1524     condition = MSI_RecordGetString( rec, 4 );
1525     r = MSI_EvaluateConditionW( dialog->package, condition );
1526     control = msi_dialog_find_control( dialog, name );
1527     if( r == MSICONDITION_TRUE && control )
1528     {
1529         TRACE("%s control %s\n", debugstr_w(action), debugstr_w(name));
1530
1531         /* FIXME: case sensitive? */
1532         if(!lstrcmpW(action, szHide))
1533             ShowWindow(control->hwnd, SW_HIDE);
1534         else if(!strcmpW(action, szShow))
1535             ShowWindow(control->hwnd, SW_SHOW);
1536         else if(!strcmpW(action, szDisable))
1537             EnableWindow(control->hwnd, FALSE);
1538         else if(!strcmpW(action, szEnable))
1539             EnableWindow(control->hwnd, TRUE);
1540         else
1541             FIXME("Unhandled action %s\n", debugstr_w(action));
1542     }
1543
1544     return ERROR_SUCCESS;
1545 }
1546
1547 static UINT msi_dialog_evaluate_control_conditions( msi_dialog *dialog )
1548 {
1549     static const WCHAR query[] = {
1550       'S','E','L','E','C','T',' ','*',' ',
1551       'F','R','O','M',' ',
1552         'C','o','n','t','r','o','l','C','o','n','d','i','t','i','o','n',' ',
1553       'W','H','E','R','E',' ',
1554         '`','D','i','a','l','o','g','_','`',' ','=',' ','\'','%','s','\'',0
1555     };
1556     UINT r;
1557     MSIQUERY *view = NULL;
1558     MSIPACKAGE *package = dialog->package;
1559
1560     TRACE("%p %s\n", dialog, debugstr_w(dialog->name) );
1561
1562     /* query the Control table for all the elements of the control */
1563     r = MSI_OpenQuery( package->db, &view, query, dialog->name );
1564     if( r != ERROR_SUCCESS )
1565     {
1566         ERR("query failed for dialog %s\n", debugstr_w(dialog->name));
1567         return ERROR_INVALID_PARAMETER;
1568     }
1569
1570     r = MSI_IterateRecords( view, 0, msi_dialog_set_control_condition, dialog );
1571     msiobj_release( &view->hdr );
1572
1573     return r;
1574 }
1575
1576 UINT msi_dialog_reset( msi_dialog *dialog )
1577 {
1578     /* FIXME: should restore the original values of any properties we changed */
1579     return msi_dialog_evaluate_control_conditions( dialog );
1580 }
1581
1582 /* figure out the height of 10 point MS Sans Serif */
1583 static INT msi_dialog_get_sans_serif_height( HWND hwnd )
1584 {
1585     static const WCHAR szSansSerif[] = {
1586         'M','S',' ','S','a','n','s',' ','S','e','r','i','f',0 };
1587     LOGFONTW lf;
1588     TEXTMETRICW tm;
1589     BOOL r;
1590     LONG height = 0;
1591     HFONT hFont, hOldFont;
1592     HDC hdc;
1593
1594     hdc = GetDC( hwnd );
1595     if (hdc)
1596     {
1597         memset( &lf, 0, sizeof lf );
1598         lf.lfHeight = MulDiv(10, GetDeviceCaps(hdc, LOGPIXELSY), 72);
1599         strcpyW( lf.lfFaceName, szSansSerif );
1600         hFont = CreateFontIndirectW(&lf);
1601         if (hFont)
1602         {
1603             hOldFont = SelectObject( hdc, hFont );
1604             r = GetTextMetricsW( hdc, &tm );
1605             if (r)
1606                 height = tm.tmHeight;
1607             SelectObject( hdc, hOldFont );
1608             DeleteObject( hFont );
1609         }
1610         ReleaseDC( hwnd, hdc );
1611     }
1612     return height;
1613 }
1614
1615 /* fetch the associated record from the Dialog table */
1616 static MSIRECORD *msi_get_dialog_record( msi_dialog *dialog )
1617 {
1618     static const WCHAR query[] = {
1619         'S','E','L','E','C','T',' ','*',' ',
1620         'F','R','O','M',' ','D','i','a','l','o','g',' ',
1621         'W','H','E','R','E',' ',
1622            '`','D','i','a','l','o','g','`',' ','=',' ','\'','%','s','\'',0};
1623     MSIPACKAGE *package = dialog->package;
1624     MSIRECORD *rec = NULL;
1625
1626     TRACE("%p %s\n", dialog, debugstr_w(dialog->name) );
1627
1628     rec = MSI_QueryGetRecord( package->db, query, dialog->name );
1629     if( !rec )
1630         ERR("query failed for dialog %s\n", debugstr_w(dialog->name));
1631
1632     return rec;
1633 }
1634
1635 static void msi_dialog_adjust_dialog_size( msi_dialog *dialog, LPSIZE sz )
1636 {
1637     RECT rect;
1638     LONG style;
1639
1640     /* turn the client size into the window rectangle */
1641     rect.left = 0;
1642     rect.top = 0;
1643     rect.right = msi_dialog_scale_unit( dialog, sz->cx );
1644     rect.bottom = msi_dialog_scale_unit( dialog, sz->cy );
1645     style = GetWindowLongPtrW( dialog->hwnd, GWL_STYLE );
1646     AdjustWindowRect( &rect, style, FALSE );
1647     sz->cx = rect.right - rect.left;
1648     sz->cy = rect.bottom - rect.top;
1649 }
1650
1651 static BOOL msi_control_set_next( msi_control *control, msi_control *next )
1652 {
1653     return SetWindowPos( next->hwnd, control->hwnd, 0, 0, 0, 0,
1654                          SWP_NOMOVE | SWP_NOOWNERZORDER | SWP_NOREDRAW |
1655                          SWP_NOREPOSITION | SWP_NOSENDCHANGING | SWP_NOSIZE );
1656 }
1657
1658 static UINT msi_dialog_set_tab_order( msi_dialog *dialog )
1659 {
1660     msi_control *control, *tab_next;
1661
1662     LIST_FOR_EACH_ENTRY( control, &dialog->controls, msi_control, entry )
1663     {
1664         tab_next = msi_dialog_find_control( dialog, control->tabnext );
1665         if( !tab_next )
1666             continue;
1667         msi_control_set_next( control, tab_next );
1668     }
1669
1670     return ERROR_SUCCESS;
1671 }
1672
1673 static void msi_dialog_set_first_control( msi_dialog* dialog, LPCWSTR name )
1674 {
1675     msi_control *control;
1676
1677     control = msi_dialog_find_control( dialog, name );
1678     if( control )
1679         dialog->hWndFocus = control->hwnd;
1680     else
1681         dialog->hWndFocus = NULL;
1682 }
1683
1684 static LRESULT msi_dialog_oncreate( HWND hwnd, LPCREATESTRUCTW cs )
1685 {
1686     static const WCHAR df[] = {
1687         'D','e','f','a','u','l','t','U','I','F','o','n','t',0 };
1688     static const WCHAR dfv[] = {
1689         'M','S',' ','S','h','e','l','l',' ','D','l','g',0 };
1690     msi_dialog *dialog = (msi_dialog*) cs->lpCreateParams;
1691     MSIRECORD *rec = NULL;
1692     LPWSTR title = NULL;
1693     SIZE size;
1694
1695     TRACE("%p %p\n", dialog, dialog->package);
1696
1697     dialog->hwnd = hwnd;
1698     SetWindowLongPtrW( hwnd, GWLP_USERDATA, (LONG_PTR) dialog );
1699
1700     rec = msi_get_dialog_record( dialog );
1701     if( !rec )
1702     {
1703         TRACE("No record found for dialog %s\n", debugstr_w(dialog->name));
1704         return -1;
1705     }
1706
1707     dialog->scale = msi_dialog_get_sans_serif_height(dialog->hwnd);
1708
1709     size.cx = MSI_RecordGetInteger( rec, 4 );
1710     size.cy = MSI_RecordGetInteger( rec, 5 );
1711     msi_dialog_adjust_dialog_size( dialog, &size );
1712
1713     dialog->attributes = MSI_RecordGetInteger( rec, 6 );
1714
1715     dialog->default_font = msi_dup_property( dialog->package, df );
1716     if (!dialog->default_font)
1717     {
1718         dialog->default_font = strdupW(dfv);
1719         if (!dialog->default_font) return -1;
1720     }
1721
1722     title = msi_get_deformatted_field( dialog->package, rec, 7 );
1723     SetWindowTextW( hwnd, title );
1724     msi_free( title );
1725
1726     SetWindowPos( hwnd, 0, 0, 0, size.cx, size.cy,
1727                   SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOREDRAW );
1728
1729
1730     msi_dialog_build_font_list( dialog );
1731     msi_dialog_fill_controls( dialog );
1732     msi_dialog_evaluate_control_conditions( dialog );
1733     msi_dialog_set_tab_order( dialog );
1734     msi_dialog_set_first_control( dialog, MSI_RecordGetString( rec, 8 ) );
1735     msiobj_release( &rec->hdr );
1736
1737     return 0;
1738 }
1739
1740 static UINT msi_dialog_send_event( msi_dialog *dialog, LPCWSTR event, LPCWSTR arg )
1741 {
1742     LPWSTR event_fmt = NULL, arg_fmt = NULL;
1743
1744     TRACE("Sending control event %s %s\n", debugstr_w(event), debugstr_w(arg));
1745
1746     deformat_string( dialog->package, event, &event_fmt );
1747     deformat_string( dialog->package, arg, &arg_fmt );
1748
1749     dialog->event_handler( dialog->package, event_fmt, arg_fmt, dialog );
1750
1751     msi_free( event_fmt );
1752     msi_free( arg_fmt );
1753
1754     return ERROR_SUCCESS;
1755 }
1756
1757 static UINT msi_dialog_set_property( msi_dialog *dialog, LPCWSTR event, LPCWSTR arg )
1758 {
1759     static const WCHAR szNullArg[] = { '{','}',0 };
1760     LPWSTR p, prop, arg_fmt = NULL;
1761     UINT len;
1762
1763     len = strlenW(event);
1764     prop = msi_alloc( len*sizeof(WCHAR));
1765     strcpyW( prop, &event[1] );
1766     p = strchrW( prop, ']' );
1767     if( p && p[1] == 0 )
1768     {
1769         *p = 0;
1770         if( strcmpW( szNullArg, arg ) )
1771             deformat_string( dialog->package, arg, &arg_fmt );
1772         MSI_SetPropertyW( dialog->package, prop, arg_fmt );
1773         msi_free( arg_fmt );
1774     }
1775     else
1776         ERR("Badly formatted property string - what happens?\n");
1777     msi_free( prop );
1778     return ERROR_SUCCESS;
1779 }
1780
1781 static UINT msi_dialog_control_event( MSIRECORD *rec, LPVOID param )
1782 {
1783     msi_dialog *dialog = param;
1784     LPCWSTR condition, event, arg;
1785     UINT r;
1786
1787     condition = MSI_RecordGetString( rec, 5 );
1788     r = MSI_EvaluateConditionW( dialog->package, condition );
1789     if( r == MSICONDITION_TRUE )
1790     {
1791         event = MSI_RecordGetString( rec, 3 );
1792         arg = MSI_RecordGetString( rec, 4 );
1793         if( event[0] == '[' )
1794             msi_dialog_set_property( dialog, event, arg );
1795         else
1796             msi_dialog_send_event( dialog, event, arg );
1797     }
1798
1799     return ERROR_SUCCESS;
1800 }
1801
1802 static UINT msi_dialog_button_handler( msi_dialog *dialog,
1803                                        msi_control *control, WPARAM param )
1804 {
1805     static const WCHAR query[] = {
1806       'S','E','L','E','C','T',' ','*',' ',
1807       'F','R','O','M',' ','C','o','n','t','r','o','l','E','v','e','n','t',' ',
1808       'W','H','E','R','E',' ',
1809          '`','D','i','a','l','o','g','_','`',' ','=',' ','\'','%','s','\'',' ',
1810       'A','N','D',' ',
1811          '`','C','o','n','t','r','o','l','_','`',' ','=',' ','\'','%','s','\'',' ',
1812       'O','R','D','E','R',' ','B','Y',' ','`','O','r','d','e','r','i','n','g','`',0
1813     };
1814     MSIQUERY *view = NULL;
1815     UINT r;
1816
1817     if( HIWORD(param) != BN_CLICKED )
1818         return ERROR_SUCCESS;
1819
1820     r = MSI_OpenQuery( dialog->package->db, &view, query,
1821                        dialog->name, control->name );
1822     if( r != ERROR_SUCCESS )
1823     {
1824         ERR("query failed\n");
1825         return 0;
1826     }
1827
1828     r = MSI_IterateRecords( view, 0, msi_dialog_control_event, dialog );
1829     msiobj_release( &view->hdr );
1830
1831     return r;
1832 }
1833
1834 static UINT msi_dialog_get_checkbox_state( msi_dialog *dialog,
1835                 msi_control *control )
1836 {
1837     WCHAR state[2] = { 0 };
1838     DWORD sz = 2;
1839
1840     MSI_GetPropertyW( dialog->package, control->property, state, &sz );
1841     return state[0] ? 1 : 0;
1842 }
1843
1844 static void msi_dialog_set_checkbox_state( msi_dialog *dialog,
1845                 msi_control *control, UINT state )
1846 {
1847     static const WCHAR szState[] = { '1', 0 };
1848     LPCWSTR val;
1849
1850     /* if uncheck then the property is set to NULL */
1851     if (!state)
1852     {
1853         MSI_SetPropertyW( dialog->package, control->property, NULL );
1854         return;
1855     }
1856
1857     /* check for a custom state */
1858     if (control->value && control->value[0])
1859         val = control->value;
1860     else
1861         val = szState;
1862
1863     MSI_SetPropertyW( dialog->package, control->property, val );
1864 }
1865
1866 static void msi_dialog_checkbox_sync_state( msi_dialog *dialog,
1867                 msi_control *control )
1868 {
1869     UINT state;
1870
1871     state = msi_dialog_get_checkbox_state( dialog, control );
1872     SendMessageW( control->hwnd, BM_SETCHECK,
1873                   state ? BST_CHECKED : BST_UNCHECKED, 0 );
1874 }
1875
1876 static UINT msi_dialog_checkbox_handler( msi_dialog *dialog,
1877                 msi_control *control, WPARAM param )
1878 {
1879     UINT state;
1880
1881     if( HIWORD(param) != BN_CLICKED )
1882         return ERROR_SUCCESS;
1883
1884     TRACE("clicked checkbox %s, set %s\n", debugstr_w(control->name),
1885           debugstr_w(control->property));
1886
1887     state = msi_dialog_get_checkbox_state( dialog, control );
1888     state = state ? 0 : 1;
1889     msi_dialog_set_checkbox_state( dialog, control, state );
1890     msi_dialog_checkbox_sync_state( dialog, control );
1891
1892     return msi_dialog_button_handler( dialog, control, param );
1893 }
1894
1895 static UINT msi_dialog_edit_handler( msi_dialog *dialog,
1896                 msi_control *control, WPARAM param )
1897 {
1898     UINT sz, r;
1899     LPWSTR buf;
1900
1901     if( HIWORD(param) != EN_CHANGE )
1902         return ERROR_SUCCESS;
1903
1904     TRACE("edit %s contents changed, set %s\n", debugstr_w(control->name),
1905           debugstr_w(control->property));
1906
1907     sz = 0x20;
1908     buf = msi_alloc( sz*sizeof(WCHAR) );
1909     while( buf )
1910     {
1911         r = GetWindowTextW( control->hwnd, buf, sz );
1912         if( r < (sz-1) )
1913             break;
1914         sz *= 2;
1915         buf = msi_realloc( buf, sz*sizeof(WCHAR) );
1916     }
1917
1918     MSI_SetPropertyW( dialog->package, control->property, buf );
1919
1920     msi_free( buf );
1921
1922     return ERROR_SUCCESS;
1923 }
1924
1925 static UINT msi_dialog_radiogroup_handler( msi_dialog *dialog,
1926                 msi_control *control, WPARAM param )
1927 {
1928     if( HIWORD(param) != BN_CLICKED )
1929         return ERROR_SUCCESS;
1930
1931     TRACE("clicked radio button %s, set %s\n", debugstr_w(control->name),
1932           debugstr_w(control->property));
1933
1934     MSI_SetPropertyW( dialog->package, control->property, control->name );
1935
1936     return msi_dialog_button_handler( dialog, control, param );
1937 }
1938
1939 static LRESULT msi_dialog_oncommand( msi_dialog *dialog, WPARAM param, HWND hwnd )
1940 {
1941     msi_control *control = NULL;
1942
1943     TRACE("%p %p %08x\n", dialog, hwnd, param);
1944
1945     switch (param)
1946     {
1947     case 1: /* enter */
1948         control = msi_dialog_find_control( dialog, dialog->control_default );
1949         break;
1950     case 2: /* escape */
1951         control = msi_dialog_find_control( dialog, dialog->control_cancel );
1952         break;
1953     default: 
1954         control = msi_dialog_find_control_by_hwnd( dialog, hwnd );
1955     }
1956
1957     if( control )
1958     {
1959         if( control->handler )
1960         {
1961             control->handler( dialog, control, param );
1962             msi_dialog_evaluate_control_conditions( dialog );
1963         }
1964     }
1965     else
1966         ERR("button click from nowhere %p %d %p\n", dialog, param, hwnd);
1967     return 0;
1968 }
1969
1970 static void msi_dialog_setfocus( msi_dialog *dialog )
1971 {
1972     HWND hwnd = dialog->hWndFocus;
1973
1974     hwnd = GetNextDlgTabItem( dialog->hwnd, hwnd, TRUE);
1975     hwnd = GetNextDlgTabItem( dialog->hwnd, hwnd, FALSE);
1976     SetFocus( hwnd );
1977     dialog->hWndFocus = hwnd;
1978 }
1979
1980 static LRESULT WINAPI MSIDialog_WndProc( HWND hwnd, UINT msg,
1981                 WPARAM wParam, LPARAM lParam )
1982 {
1983     msi_dialog *dialog = (LPVOID) GetWindowLongPtrW( hwnd, GWLP_USERDATA );
1984
1985     TRACE("0x%04x\n", msg);
1986
1987     switch (msg)
1988     {
1989     case WM_CREATE:
1990         return msi_dialog_oncreate( hwnd, (LPCREATESTRUCTW)lParam );
1991
1992     case WM_COMMAND:
1993         return msi_dialog_oncommand( dialog, wParam, (HWND)lParam );
1994
1995     case WM_ACTIVATE:
1996         if( LOWORD(wParam) == WA_INACTIVE )
1997             dialog->hWndFocus = GetFocus();
1998         else
1999             msi_dialog_setfocus( dialog );
2000         return 0;
2001
2002     case WM_SETFOCUS:
2003         msi_dialog_setfocus( dialog );
2004         return 0;
2005
2006     /* bounce back to our subclassed static control */
2007     case WM_CTLCOLORSTATIC:
2008         return SendMessageW( (HWND) lParam, WM_CTLCOLORSTATIC, wParam, lParam );
2009
2010     case WM_DESTROY:
2011         dialog->hwnd = NULL;
2012         return 0;
2013     }
2014     return DefWindowProcW(hwnd, msg, wParam, lParam);
2015 }
2016
2017 static BOOL CALLBACK msi_radioground_child_enum( HWND hWnd, LPARAM lParam )
2018 {
2019     EnableWindow( hWnd, lParam );
2020     return TRUE;
2021 }
2022
2023 static LRESULT WINAPI MSIRadioGroup_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
2024 {
2025     WNDPROC oldproc = (WNDPROC) GetPropW(hWnd, szButtonData);
2026     LRESULT r;
2027
2028     TRACE("hWnd %p msg %04x wParam 0x%08x lParam 0x%08lx\n", hWnd, msg, wParam, lParam);
2029
2030     if (msg == WM_COMMAND) /* Forward notifications to dialog */
2031         SendMessageW(GetParent(hWnd), msg, wParam, lParam);
2032
2033     r = CallWindowProcW(oldproc, hWnd, msg, wParam, lParam);
2034
2035     /* make sure the radio buttons show as disabled if the parent is disabled */
2036     if (msg == WM_ENABLE)
2037         EnumChildWindows( hWnd, msi_radioground_child_enum, wParam );
2038
2039     return r;
2040 }
2041
2042 static LRESULT WINAPI MSIHiddenWindowProc( HWND hwnd, UINT msg,
2043                 WPARAM wParam, LPARAM lParam )
2044 {
2045     msi_dialog *dialog = (msi_dialog*) lParam;
2046
2047     TRACE("%d %p\n", msg, dialog);
2048
2049     switch (msg)
2050     {
2051     case WM_MSI_DIALOG_CREATE:
2052         return msi_dialog_run_message_loop( dialog );
2053     case WM_MSI_DIALOG_DESTROY:
2054         msi_dialog_destroy( dialog );
2055         return 0;
2056     }
2057     return DefWindowProcW( hwnd, msg, wParam, lParam );
2058 }
2059
2060 /* functions that interface to other modules within MSI */
2061
2062 msi_dialog *msi_dialog_create( MSIPACKAGE* package, LPCWSTR szDialogName,
2063                                 msi_dialog_event_handler event_handler )
2064 {
2065     MSIRECORD *rec = NULL;
2066     msi_dialog *dialog;
2067
2068     TRACE("%p %s\n", package, debugstr_w(szDialogName));
2069
2070     /* allocate the structure for the dialog to use */
2071     dialog = msi_alloc_zero( sizeof *dialog + sizeof(WCHAR)*strlenW(szDialogName) );
2072     if( !dialog )
2073         return NULL;
2074     strcpyW( dialog->name, szDialogName );
2075     msiobj_addref( &package->hdr );
2076     dialog->package = package;
2077     dialog->event_handler = event_handler;
2078     dialog->finished = 0;
2079     list_init( &dialog->controls );
2080
2081     /* verify that the dialog exists */
2082     rec = msi_get_dialog_record( dialog );
2083     if( !rec )
2084     {
2085         msiobj_release( &package->hdr );
2086         msi_free( dialog );
2087         return NULL;
2088     }
2089     dialog->attributes = MSI_RecordGetInteger( rec, 6 );
2090     dialog->control_default = strdupW( MSI_RecordGetString( rec, 9 ) );
2091     dialog->control_cancel = strdupW( MSI_RecordGetString( rec, 10 ) );
2092     msiobj_release( &rec->hdr );
2093
2094     return dialog;
2095 }
2096
2097 static void msi_process_pending_messages( HWND hdlg )
2098 {
2099     MSG msg;
2100
2101     while( PeekMessageW( &msg, 0, 0, 0, PM_REMOVE ) )
2102     {
2103         if( hdlg && IsDialogMessageW( hdlg, &msg ))
2104             continue;
2105         TranslateMessage( &msg );
2106         DispatchMessageW( &msg );
2107     }
2108 }
2109
2110 void msi_dialog_end_dialog( msi_dialog *dialog )
2111 {
2112     TRACE("%p\n", dialog);
2113     dialog->finished = 1;
2114     PostMessageW(dialog->hwnd, WM_NULL, 0, 0);
2115 }
2116
2117 void msi_dialog_check_messages( HANDLE handle )
2118 {
2119     DWORD r;
2120
2121     /* in threads other than the UI thread, block */
2122     if( uiThreadId != GetCurrentThreadId() )
2123     {
2124         if( handle )
2125             WaitForSingleObject( handle, INFINITE );
2126         return;
2127     }
2128
2129     /* there's two choices for the UI thread */
2130     while (1)
2131     {
2132         msi_process_pending_messages( NULL );
2133
2134         if( !handle )
2135             break;
2136
2137         /*
2138          * block here until somebody creates a new dialog or
2139          * the handle we're waiting on becomes ready
2140          */
2141         r = MsgWaitForMultipleObjects( 1, &handle, 0, INFINITE, QS_ALLINPUT );
2142         if( r == WAIT_OBJECT_0 )
2143             break;
2144     }
2145 }
2146
2147 UINT msi_dialog_run_message_loop( msi_dialog *dialog )
2148 {
2149     HWND hwnd;
2150
2151     if( !(dialog->attributes & msidbDialogAttributesVisible) )
2152         return ERROR_SUCCESS;
2153
2154     if( uiThreadId != GetCurrentThreadId() )
2155         return SendMessageW( hMsiHiddenWindow, WM_MSI_DIALOG_CREATE, 0, (LPARAM) dialog );
2156
2157     /* create the dialog window, don't show it yet */
2158     hwnd = CreateWindowW( szMsiDialogClass, dialog->name, WS_OVERLAPPEDWINDOW,
2159                      CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
2160                      NULL, NULL, NULL, dialog );
2161     if( !hwnd )
2162     {
2163         ERR("Failed to create dialog %s\n", debugstr_w( dialog->name ));
2164         return ERROR_FUNCTION_FAILED;
2165     }
2166
2167     ShowWindow( hwnd, SW_SHOW );
2168     /* UpdateWindow( hwnd ); - and causes the transparent static controls not to paint */
2169
2170     if( dialog->attributes & msidbDialogAttributesModal )
2171     {
2172         while( !dialog->finished )
2173         {
2174             MsgWaitForMultipleObjects( 0, NULL, 0, INFINITE, QS_ALLEVENTS );
2175             msi_process_pending_messages( dialog->hwnd );
2176         }
2177     }
2178     else
2179         return ERROR_IO_PENDING;
2180
2181     return ERROR_SUCCESS;
2182 }
2183
2184 void msi_dialog_do_preview( msi_dialog *dialog )
2185 {
2186     TRACE("\n");
2187     dialog->attributes |= msidbDialogAttributesVisible;
2188     dialog->attributes &= ~msidbDialogAttributesModal;
2189     msi_dialog_run_message_loop( dialog );
2190 }
2191
2192 void msi_dialog_destroy( msi_dialog *dialog )
2193 {
2194     if( uiThreadId != GetCurrentThreadId() )
2195     {
2196         SendMessageW( hMsiHiddenWindow, WM_MSI_DIALOG_DESTROY, 0, (LPARAM) dialog );
2197         return;
2198     }
2199
2200     if( dialog->hwnd )
2201         ShowWindow( dialog->hwnd, SW_HIDE );
2202     
2203     if( dialog->hwnd )
2204         DestroyWindow( dialog->hwnd );
2205
2206     /* destroy the list of controls */
2207     while( !list_empty( &dialog->controls ) )
2208     {
2209         msi_control *t = LIST_ENTRY( list_head( &dialog->controls ),
2210                                      msi_control, entry );
2211         list_remove( &t->entry );
2212         /* leave dialog->hwnd - destroying parent destroys child windows */
2213         msi_free( t->property );
2214         msi_free( t->value );
2215         if( t->hBitmap )
2216             DeleteObject( t->hBitmap );
2217         if( t->hIcon )
2218             DestroyIcon( t->hIcon );
2219         msi_free( t->tabnext );
2220         msi_free( t );
2221         if (t->hDll)
2222             FreeLibrary( t->hDll );
2223     }
2224
2225     /* destroy the list of fonts */
2226     while( dialog->font_list )
2227     {
2228         msi_font *t = dialog->font_list;
2229         dialog->font_list = t->next;
2230         DeleteObject( t->hfont );
2231         msi_free( t );
2232     }
2233     msi_free( dialog->default_font );
2234
2235     msi_free( dialog->control_default );
2236     msi_free( dialog->control_cancel );
2237     msiobj_release( &dialog->package->hdr );
2238     dialog->package = NULL;
2239     msi_free( dialog );
2240 }
2241
2242 BOOL msi_dialog_register_class( void )
2243 {
2244     WNDCLASSW cls;
2245
2246     ZeroMemory( &cls, sizeof cls );
2247     cls.lpfnWndProc   = MSIDialog_WndProc;
2248     cls.hInstance     = NULL;
2249     cls.hIcon         = LoadIconW(0, (LPWSTR)IDI_APPLICATION);
2250     cls.hCursor       = LoadCursorW(0, (LPWSTR)IDC_ARROW);
2251     cls.hbrBackground = (HBRUSH)(COLOR_3DFACE + 1);
2252     cls.lpszMenuName  = NULL;
2253     cls.lpszClassName = szMsiDialogClass;
2254
2255     if( !RegisterClassW( &cls ) )
2256         return FALSE;
2257
2258     cls.lpfnWndProc   = MSIHiddenWindowProc;
2259     cls.lpszClassName = szMsiHiddenWindow;
2260
2261     if( !RegisterClassW( &cls ) )
2262         return FALSE;
2263
2264     uiThreadId = GetCurrentThreadId();
2265
2266     hMsiHiddenWindow = CreateWindowW( szMsiHiddenWindow, NULL, WS_OVERLAPPED,
2267                                    0, 0, 100, 100, NULL, NULL, NULL, NULL );
2268     if( !hMsiHiddenWindow )
2269         return FALSE;
2270
2271     return TRUE;
2272 }
2273
2274 void msi_dialog_unregister_class( void )
2275 {
2276     DestroyWindow( hMsiHiddenWindow );
2277     hMsiHiddenWindow = NULL;
2278     UnregisterClassW( szMsiDialogClass, NULL );
2279     UnregisterClassW( szMsiHiddenWindow, NULL );
2280     uiThreadId = 0;
2281 }