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