2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2005 Mike McCormack for CodeWeavers
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.
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.
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
22 #define NONAMELESSUNION
23 #define NONAMELESSSTRUCT
42 #include "wine/debug.h"
43 #include "wine/unicode.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(msi
);
48 extern HINSTANCE msi_hInstance
;
50 struct msi_control_tag
;
51 typedef struct msi_control_tag msi_control
;
52 typedef UINT (*msi_handler
)( msi_dialog
*, msi_control
*, WPARAM
);
54 struct msi_control_tag
66 float progress_current
;
72 typedef struct msi_font_tag
74 struct msi_font_tag
*next
;
84 msi_dialog_event_handler event_handler
;
94 LPWSTR control_default
;
95 LPWSTR control_cancel
;
99 typedef UINT (*msi_dialog_control_func
)( msi_dialog
*dialog
, MSIRECORD
*rec
);
100 struct control_handler
102 LPCWSTR control_type
;
103 msi_dialog_control_func func
;
112 } radio_button_group_descr
;
114 static const WCHAR szMsiDialogClass
[] = {
115 'M','s','i','D','i','a','l','o','g','C','l','o','s','e','C','l','a','s','s',0
117 static const WCHAR szMsiHiddenWindow
[] = {
118 'M','s','i','H','i','d','d','e','n','W','i','n','d','o','w',0 };
119 static const WCHAR szStatic
[] = { 'S','t','a','t','i','c',0 };
120 static const WCHAR szButton
[] = { 'B','U','T','T','O','N', 0 };
121 static const WCHAR szButtonData
[] = { 'M','S','I','D','A','T','A',0 };
122 static const WCHAR szProgress
[] = { 'P','r','o','g','r','e','s','s',0 };
123 static const WCHAR szText
[] = { 'T','e','x','t',0 };
124 static const WCHAR szPushButton
[] = { 'P','u','s','h','B','u','t','t','o','n',0 };
125 static const WCHAR szLine
[] = { 'L','i','n','e',0 };
126 static const WCHAR szBitmap
[] = { 'B','i','t','m','a','p',0 };
127 static const WCHAR szCheckBox
[] = { 'C','h','e','c','k','B','o','x',0 };
128 static const WCHAR szScrollableText
[] = {
129 'S','c','r','o','l','l','a','b','l','e','T','e','x','t',0 };
130 static const WCHAR szComboBox
[] = { 'C','o','m','b','o','B','o','x',0 };
131 static const WCHAR szEdit
[] = { 'E','d','i','t',0 };
132 static const WCHAR szMaskedEdit
[] = { 'M','a','s','k','e','d','E','d','i','t',0 };
133 static const WCHAR szPathEdit
[] = { 'P','a','t','h','E','d','i','t',0 };
134 static const WCHAR szProgressBar
[] = {
135 'P','r','o','g','r','e','s','s','B','a','r',0 };
136 static const WCHAR szRadioButtonGroup
[] = {
137 'R','a','d','i','o','B','u','t','t','o','n','G','r','o','u','p',0 };
138 static const WCHAR szIcon
[] = { 'I','c','o','n',0 };
139 static const WCHAR szSelectionTree
[] = {
140 'S','e','l','e','c','t','i','o','n','T','r','e','e',0 };
141 static const WCHAR szGroupBox
[] = { 'G','r','o','u','p','B','o','x',0 };
142 static const WCHAR szListBox
[] = { 'L','i','s','t','B','o','x',0 };
143 static const WCHAR szDirectoryCombo
[] = { 'D','i','r','e','c','t','o','r','y','C','o','m','b','o',0 };
144 static const WCHAR szDirectoryList
[] = { 'D','i','r','e','c','t','o','r','y','L','i','s','t',0 };
145 static const WCHAR szVolumeCostList
[] = { 'V','o','l','u','m','e','C','o','s','t','L','i','s','t',0 };
146 static const WCHAR szSelectionDescription
[] = {'S','e','l','e','c','t','i','o','n','D','e','s','c','r','i','p','t','i','o','n',0};
147 static const WCHAR szSelectionPath
[] = {'S','e','l','e','c','t','i','o','n','P','a','t','h',0};
148 static const WCHAR szProperty
[] = {'P','r','o','p','e','r','t','y',0};
150 static UINT
msi_dialog_checkbox_handler( msi_dialog
*, msi_control
*, WPARAM
);
151 static void msi_dialog_checkbox_sync_state( msi_dialog
*, msi_control
* );
152 static UINT
msi_dialog_button_handler( msi_dialog
*, msi_control
*, WPARAM
);
153 static UINT
msi_dialog_edit_handler( msi_dialog
*, msi_control
*, WPARAM
);
154 static UINT
msi_dialog_radiogroup_handler( msi_dialog
*, msi_control
*, WPARAM param
);
155 static UINT
msi_dialog_evaluate_control_conditions( msi_dialog
*dialog
);
156 static LRESULT WINAPI
MSIRadioGroup_WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
);
157 static MSIFEATURE
*msi_seltree_get_selected_feature( msi_control
*control
);
159 /* dialog sequencing */
161 #define WM_MSI_DIALOG_CREATE (WM_USER+0x100)
162 #define WM_MSI_DIALOG_DESTROY (WM_USER+0x101)
164 static DWORD uiThreadId
;
165 static HWND hMsiHiddenWindow
;
167 static INT
msi_dialog_scale_unit( msi_dialog
*dialog
, INT val
)
169 return (dialog
->scale
* val
+ 5) / 10;
172 static msi_control
*msi_dialog_find_control( msi_dialog
*dialog
, LPCWSTR name
)
174 msi_control
*control
;
180 LIST_FOR_EACH_ENTRY( control
, &dialog
->controls
, msi_control
, entry
)
181 if( !strcmpW( control
->name
, name
) ) /* FIXME: case sensitive? */
186 static msi_control
*msi_dialog_find_control_by_type( msi_dialog
*dialog
, LPCWSTR type
)
188 msi_control
*control
;
194 LIST_FOR_EACH_ENTRY( control
, &dialog
->controls
, msi_control
, entry
)
195 if( !strcmpW( control
->type
, type
) ) /* FIXME: case sensitive? */
200 static msi_control
*msi_dialog_find_control_by_hwnd( msi_dialog
*dialog
, HWND hwnd
)
202 msi_control
*control
;
206 LIST_FOR_EACH_ENTRY( control
, &dialog
->controls
, msi_control
, entry
)
207 if( hwnd
== control
->hwnd
)
212 static LPWSTR
msi_get_deformatted_field( MSIPACKAGE
*package
, MSIRECORD
*rec
, int field
)
214 LPCWSTR str
= MSI_RecordGetString( rec
, field
);
218 deformat_string( package
, str
, &ret
);
222 static LPWSTR
msi_dialog_dup_property( msi_dialog
*dialog
, LPCWSTR property
, BOOL indirect
)
230 prop
= msi_dup_property( dialog
->package
, property
);
233 prop
= strdupW( property
);
238 msi_dialog
*msi_dialog_get_parent( msi_dialog
*dialog
)
240 return dialog
->parent
;
243 LPWSTR
msi_dialog_get_name( msi_dialog
*dialog
)
249 * msi_dialog_get_style
251 * Extract the {\style} string from the front of the text to display and
252 * update the pointer. Only the last style in a list is applied.
254 static LPWSTR
msi_dialog_get_style( LPCWSTR p
, LPCWSTR
*rest
)
265 while ((first
= strchrW( p
, '{' )) && (q
= strchrW( first
+ 1, '}' )))
268 if( *p
== '\\' || *p
== '&' )
271 /* little bit of sanity checking to stop us getting confused with RTF */
273 if( *i
== '}' || *i
== '\\' )
283 ret
= msi_alloc( len
*sizeof(WCHAR
) );
286 memcpy( ret
, p
, len
*sizeof(WCHAR
) );
291 static UINT
msi_dialog_add_font( MSIRECORD
*rec
, LPVOID param
)
293 msi_dialog
*dialog
= param
;
300 /* create a font and add it to the list */
301 name
= MSI_RecordGetString( rec
, 1 );
302 font
= msi_alloc( sizeof *font
+ strlenW( name
)*sizeof (WCHAR
) );
303 strcpyW( font
->name
, name
);
304 font
->next
= dialog
->font_list
;
305 dialog
->font_list
= font
;
307 font
->color
= MSI_RecordGetInteger( rec
, 4 );
309 memset( &lf
, 0, sizeof lf
);
310 face
= MSI_RecordGetString( rec
, 2 );
311 lf
.lfHeight
= MSI_RecordGetInteger( rec
, 3 );
312 style
= MSI_RecordGetInteger( rec
, 5 );
313 if( style
& msidbTextStyleStyleBitsBold
)
314 lf
.lfWeight
= FW_BOLD
;
315 if( style
& msidbTextStyleStyleBitsItalic
)
317 if( style
& msidbTextStyleStyleBitsUnderline
)
318 lf
.lfUnderline
= TRUE
;
319 if( style
& msidbTextStyleStyleBitsStrike
)
320 lf
.lfStrikeOut
= TRUE
;
321 lstrcpynW( lf
.lfFaceName
, face
, LF_FACESIZE
);
323 /* adjust the height */
324 hdc
= GetDC( dialog
->hwnd
);
327 lf
.lfHeight
= -MulDiv(lf
.lfHeight
, GetDeviceCaps(hdc
, LOGPIXELSY
), 72);
328 ReleaseDC( dialog
->hwnd
, hdc
);
331 font
->hfont
= CreateFontIndirectW( &lf
);
333 TRACE("Adding font style %s\n", debugstr_w(font
->name
) );
335 return ERROR_SUCCESS
;
338 static msi_font
*msi_dialog_find_font( msi_dialog
*dialog
, LPCWSTR name
)
342 for( font
= dialog
->font_list
; font
; font
= font
->next
)
343 if( !strcmpW( font
->name
, name
) ) /* FIXME: case sensitive? */
349 static UINT
msi_dialog_set_font( msi_dialog
*dialog
, HWND hwnd
, LPCWSTR name
)
353 font
= msi_dialog_find_font( dialog
, name
);
355 SendMessageW( hwnd
, WM_SETFONT
, (WPARAM
) font
->hfont
, TRUE
);
357 ERR("No font entry for %s\n", debugstr_w(name
));
358 return ERROR_SUCCESS
;
361 static UINT
msi_dialog_build_font_list( msi_dialog
*dialog
)
363 static const WCHAR query
[] = {
364 'S','E','L','E','C','T',' ','*',' ',
365 'F','R','O','M',' ','`','T','e','x','t','S','t','y','l','e','`',' ',0
368 MSIQUERY
*view
= NULL
;
370 TRACE("dialog %p\n", dialog
);
372 r
= MSI_OpenQuery( dialog
->package
->db
, &view
, query
);
373 if( r
!= ERROR_SUCCESS
)
376 r
= MSI_IterateRecords( view
, NULL
, msi_dialog_add_font
, dialog
);
377 msiobj_release( &view
->hdr
);
382 static void msi_destroy_control( msi_control
*t
)
384 list_remove( &t
->entry
);
385 /* leave dialog->hwnd - destroying parent destroys child windows */
386 msi_free( t
->property
);
387 msi_free( t
->value
);
389 DeleteObject( t
->hBitmap
);
391 DestroyIcon( t
->hIcon
);
392 msi_free( t
->tabnext
);
395 FreeLibrary( t
->hDll
);
399 static msi_control
*msi_dialog_create_window( msi_dialog
*dialog
,
400 MSIRECORD
*rec
, DWORD exstyle
, LPCWSTR szCls
, LPCWSTR name
, LPCWSTR text
,
401 DWORD style
, HWND parent
)
403 DWORD x
, y
, width
, height
;
404 LPWSTR font
= NULL
, title_font
= NULL
;
405 LPCWSTR title
= NULL
;
406 msi_control
*control
;
410 control
= msi_alloc( sizeof *control
+ strlenW(name
)*sizeof(WCHAR
) );
411 strcpyW( control
->name
, name
);
412 list_add_head( &dialog
->controls
, &control
->entry
);
413 control
->handler
= NULL
;
414 control
->property
= NULL
;
415 control
->value
= NULL
;
416 control
->hBitmap
= NULL
;
417 control
->hIcon
= NULL
;
418 control
->hDll
= NULL
;
419 control
->tabnext
= strdupW( MSI_RecordGetString( rec
, 11) );
420 control
->type
= strdupW( MSI_RecordGetString( rec
, 3 ) );
421 control
->progress_current
= 0;
422 control
->progress_max
= 100;
424 x
= MSI_RecordGetInteger( rec
, 4 );
425 y
= MSI_RecordGetInteger( rec
, 5 );
426 width
= MSI_RecordGetInteger( rec
, 6 );
427 height
= MSI_RecordGetInteger( rec
, 7 );
429 x
= msi_dialog_scale_unit( dialog
, x
);
430 y
= msi_dialog_scale_unit( dialog
, y
);
431 width
= msi_dialog_scale_unit( dialog
, width
);
432 height
= msi_dialog_scale_unit( dialog
, height
);
436 deformat_string( dialog
->package
, text
, &title_font
);
437 font
= msi_dialog_get_style( title_font
, &title
);
440 control
->hwnd
= CreateWindowExW( exstyle
, szCls
, title
, style
,
441 x
, y
, width
, height
, parent
, NULL
, NULL
, NULL
);
443 TRACE("Dialog %s control %s hwnd %p\n",
444 debugstr_w(dialog
->name
), debugstr_w(text
), control
->hwnd
);
446 msi_dialog_set_font( dialog
, control
->hwnd
,
447 font
? font
: dialog
->default_font
);
449 msi_free( title_font
);
455 static LPWSTR
msi_dialog_get_uitext( msi_dialog
*dialog
, LPCWSTR key
)
460 static const WCHAR query
[] = {
461 's','e','l','e','c','t',' ','*',' ',
462 'f','r','o','m',' ','`','U','I','T','e','x','t','`',' ',
463 'w','h','e','r','e',' ','`','K','e','y','`',' ','=',' ','\'','%','s','\'',0
466 rec
= MSI_QueryGetRecord( dialog
->package
->db
, query
, key
);
467 if (!rec
) return NULL
;
468 text
= strdupW( MSI_RecordGetString( rec
, 2 ) );
469 msiobj_release( &rec
->hdr
);
473 static MSIRECORD
*msi_get_binary_record( MSIDATABASE
*db
, LPCWSTR name
)
475 static const WCHAR query
[] = {
476 's','e','l','e','c','t',' ','*',' ',
477 'f','r','o','m',' ','B','i','n','a','r','y',' ',
478 'w','h','e','r','e',' ',
479 '`','N','a','m','e','`',' ','=',' ','\'','%','s','\'',0
482 return MSI_QueryGetRecord( db
, query
, name
);
485 static LPWSTR
msi_create_tmp_path(void)
489 static const WCHAR prefix
[] = { 'm','s','i',0 };
492 r
= GetTempPathW( MAX_PATH
, tmp
);
495 len
= lstrlenW( tmp
) + 20;
496 path
= msi_alloc( len
* sizeof (WCHAR
) );
499 r
= GetTempFileNameW( tmp
, prefix
, 0, path
);
510 static HANDLE
msi_load_image( MSIDATABASE
*db
, LPCWSTR name
, UINT type
,
511 UINT cx
, UINT cy
, UINT flags
)
513 MSIRECORD
*rec
= NULL
;
514 HANDLE himage
= NULL
;
518 TRACE("%p %s %u %u %08x\n", db
, debugstr_w(name
), cx
, cy
, flags
);
520 tmp
= msi_create_tmp_path();
524 rec
= msi_get_binary_record( db
, name
);
527 r
= MSI_RecordStreamToFile( rec
, 2, tmp
);
528 if( r
== ERROR_SUCCESS
)
530 himage
= LoadImageW( 0, tmp
, type
, cx
, cy
, flags
);
532 msiobj_release( &rec
->hdr
);
540 static HICON
msi_load_icon( MSIDATABASE
*db
, LPCWSTR text
, UINT attributes
)
542 DWORD cx
= 0, cy
= 0, flags
;
544 flags
= LR_LOADFROMFILE
| LR_DEFAULTSIZE
;
545 if( attributes
& msidbControlAttributesFixedSize
)
547 flags
&= ~LR_DEFAULTSIZE
;
548 if( attributes
& msidbControlAttributesIconSize16
)
553 if( attributes
& msidbControlAttributesIconSize32
)
558 /* msidbControlAttributesIconSize48 handled by above logic */
560 return msi_load_image( db
, text
, IMAGE_ICON
, cx
, cy
, flags
);
564 /* called from the Control Event subscription code */
565 void msi_dialog_handle_event( msi_dialog
* dialog
, LPCWSTR control
,
566 LPCWSTR attribute
, MSIRECORD
*rec
)
569 LPCWSTR font_text
, text
= NULL
;
572 static const WCHAR empty
[] = {0};
574 ctrl
= msi_dialog_find_control( dialog
, control
);
577 if( !lstrcmpW(attribute
, szText
) )
579 font_text
= MSI_RecordGetString( rec
, 1 );
580 font
= msi_dialog_get_style( font_text
, &text
);
581 if (!text
) text
= empty
;
582 SetWindowTextW( ctrl
->hwnd
, text
);
584 msi_dialog_check_messages( NULL
);
586 else if( !lstrcmpW(attribute
, szProgress
) )
590 func
= MSI_RecordGetInteger( rec
, 1 );
591 val
= MSI_RecordGetInteger( rec
, 2 );
596 ctrl
->progress_max
= val
;
597 ctrl
->progress_current
= 0;
598 SendMessageW(ctrl
->hwnd
, PBM_SETRANGE
, 0, MAKELPARAM(0,100));
599 SendMessageW(ctrl
->hwnd
, PBM_SETPOS
, 0, 0);
601 case 1: /* FIXME: not sure what this is supposed to do */
604 ctrl
->progress_current
+= val
;
605 SendMessageW(ctrl
->hwnd
, PBM_SETPOS
, 100*(ctrl
->progress_current
/ctrl
->progress_max
), 0);
608 ERR("Unknown progress message %d\n", func
);
612 else if ( !lstrcmpW(attribute
, szProperty
) )
614 MSIFEATURE
*feature
= msi_seltree_get_selected_feature( ctrl
);
615 MSI_SetPropertyW( dialog
->package
, ctrl
->property
, feature
->Directory
);
617 else if ( !lstrcmpW(attribute
, szSelectionPath
) )
619 LPWSTR prop
= msi_dialog_dup_property( dialog
, ctrl
->property
, TRUE
);
622 path
= msi_dup_property( dialog
->package
, prop
);
623 SetWindowTextW( ctrl
->hwnd
, path
);
629 FIXME("Attribute %s not being set\n", debugstr_w(attribute
));
634 static void msi_dialog_map_events(msi_dialog
* dialog
, LPCWSTR control
)
636 static const WCHAR Query
[] = {
637 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
638 '`','E','v','e','n','t','M','a','p','p','i','n','g','`',' ',
639 'W','H','E','R','E',' ',
640 '`','D','i','a','l','o','g','_','`',' ','=',' ','\'','%','s','\'',' ',
642 '`','C','o','n','t','r','o','l','_','`',' ','=',' ','\'','%','s','\'',0
645 LPCWSTR event
, attribute
;
647 row
= MSI_QueryGetRecord( dialog
->package
->db
, Query
, dialog
->name
, control
);
651 event
= MSI_RecordGetString( row
, 3 );
652 attribute
= MSI_RecordGetString( row
, 4 );
653 ControlEvent_SubscribeToEvent( dialog
->package
, dialog
, event
, control
, attribute
);
654 msiobj_release( &row
->hdr
);
657 /* everything except radio buttons */
658 static msi_control
*msi_dialog_add_control( msi_dialog
*dialog
,
659 MSIRECORD
*rec
, LPCWSTR szCls
, DWORD style
)
665 name
= MSI_RecordGetString( rec
, 2 );
666 attributes
= MSI_RecordGetInteger( rec
, 8 );
667 text
= MSI_RecordGetString( rec
, 10 );
668 if( attributes
& msidbControlAttributesVisible
)
670 if( ~attributes
& msidbControlAttributesEnabled
)
671 style
|= WS_DISABLED
;
672 if( attributes
& msidbControlAttributesSunken
)
673 exstyle
|= WS_EX_CLIENTEDGE
;
675 msi_dialog_map_events(dialog
, name
);
677 return msi_dialog_create_window( dialog
, rec
, exstyle
, szCls
, name
,
678 text
, style
, dialog
->hwnd
);
689 * we don't erase our own background,
690 * so we have to make sure that the parent window redraws first
692 static void msi_text_on_settext( HWND hWnd
)
697 hParent
= GetParent( hWnd
);
698 GetWindowRect( hWnd
, &rc
);
699 MapWindowPoints( NULL
, hParent
, (LPPOINT
) &rc
, 2 );
700 InvalidateRect( hParent
, &rc
, TRUE
);
703 static LRESULT WINAPI
704 MSIText_WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
706 struct msi_text_info
*info
;
709 TRACE("%p %04x %08x %08lx\n", hWnd
, msg
, wParam
, lParam
);
711 info
= GetPropW(hWnd
, szButtonData
);
714 SetTextColor( (HDC
)wParam
, info
->font
->color
);
716 if( msg
== WM_CTLCOLORSTATIC
&&
717 ( info
->attributes
& msidbControlAttributesTransparent
) )
719 SetBkMode( (HDC
)wParam
, TRANSPARENT
);
720 return (LRESULT
) GetStockObject(NULL_BRUSH
);
723 r
= CallWindowProcW(info
->oldproc
, hWnd
, msg
, wParam
, lParam
);
728 msi_text_on_settext( hWnd
);
732 RemovePropW( hWnd
, szButtonData
);
739 static UINT
msi_dialog_text_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
741 msi_control
*control
;
742 struct msi_text_info
*info
;
743 LPCWSTR text
, ptr
, prop
;
746 TRACE("%p %p\n", dialog
, rec
);
748 control
= msi_dialog_add_control( dialog
, rec
, szStatic
, SS_LEFT
| WS_GROUP
);
750 return ERROR_FUNCTION_FAILED
;
752 info
= msi_alloc( sizeof *info
);
754 return ERROR_SUCCESS
;
756 control
->attributes
= MSI_RecordGetInteger( rec
, 8 );
757 prop
= MSI_RecordGetString( rec
, 9 );
758 control
->property
= msi_dialog_dup_property( dialog
, prop
, FALSE
);
760 text
= MSI_RecordGetString( rec
, 10 );
761 font_name
= msi_dialog_get_style( text
, &ptr
);
762 info
->font
= ( font_name
) ? msi_dialog_find_font( dialog
, font_name
) : NULL
;
763 msi_free( font_name
);
765 info
->attributes
= MSI_RecordGetInteger( rec
, 8 );
766 if( info
->attributes
& msidbControlAttributesTransparent
)
767 SetWindowLongPtrW( control
->hwnd
, GWL_EXSTYLE
, WS_EX_TRANSPARENT
);
769 info
->oldproc
= (WNDPROC
) SetWindowLongPtrW( control
->hwnd
, GWLP_WNDPROC
,
770 (LONG_PTR
)MSIText_WndProc
);
771 SetPropW( control
->hwnd
, szButtonData
, info
);
773 ControlEvent_SubscribeToEvent( dialog
->package
, dialog
,
774 szSelectionPath
, control
->name
, szSelectionPath
);
776 return ERROR_SUCCESS
;
779 static UINT
msi_dialog_button_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
781 msi_control
*control
;
782 UINT attributes
, style
;
785 TRACE("%p %p\n", dialog
, rec
);
788 attributes
= MSI_RecordGetInteger( rec
, 8 );
789 if( attributes
& msidbControlAttributesIcon
)
792 control
= msi_dialog_add_control( dialog
, rec
, szButton
, style
);
794 return ERROR_FUNCTION_FAILED
;
796 control
->handler
= msi_dialog_button_handler
;
799 text
= msi_get_deformatted_field( dialog
->package
, rec
, 10 );
800 control
->hIcon
= msi_load_icon( dialog
->package
->db
, text
, attributes
);
801 if( attributes
& msidbControlAttributesIcon
)
802 SendMessageW( control
->hwnd
, BM_SETIMAGE
, IMAGE_ICON
, (LPARAM
) control
->hIcon
);
805 return ERROR_SUCCESS
;
808 static LPWSTR
msi_get_checkbox_value( msi_dialog
*dialog
, LPCWSTR prop
)
810 static const WCHAR query
[] = {
811 'S','E','L','E','C','T',' ','*',' ',
812 'F','R','O','M',' ','`','C','h','e','c','k','B','o','x',' ','`',
813 'W','H','E','R','E',' ',
814 '`','P','r','o','p','e','r','t','y','`',' ','=',' ',
817 MSIRECORD
*rec
= NULL
;
820 /* find if there is a value associated with the checkbox */
821 rec
= MSI_QueryGetRecord( dialog
->package
->db
, query
, prop
);
825 ret
= msi_get_deformatted_field( dialog
->package
, rec
, 2 );
831 msiobj_release( &rec
->hdr
);
835 ret
= msi_dup_property( dialog
->package
, prop
);
845 static UINT
msi_dialog_checkbox_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
847 msi_control
*control
;
850 TRACE("%p %p\n", dialog
, rec
);
852 control
= msi_dialog_add_control( dialog
, rec
, szButton
,
853 BS_CHECKBOX
| BS_MULTILINE
| WS_TABSTOP
);
854 control
->handler
= msi_dialog_checkbox_handler
;
855 prop
= MSI_RecordGetString( rec
, 9 );
858 control
->property
= strdupW( prop
);
859 control
->value
= msi_get_checkbox_value( dialog
, prop
);
860 TRACE("control %s value %s\n", debugstr_w(control
->property
),
861 debugstr_w(control
->value
));
863 msi_dialog_checkbox_sync_state( dialog
, control
);
865 return ERROR_SUCCESS
;
868 static UINT
msi_dialog_line_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
870 TRACE("%p %p\n", dialog
, rec
);
872 /* line is exactly 2 units in height */
873 MSI_RecordSetInteger( rec
, 7, 2 );
875 msi_dialog_add_control( dialog
, rec
, szStatic
, SS_ETCHEDHORZ
| SS_SUNKEN
);
876 return ERROR_SUCCESS
;
879 /******************** Scroll Text ********************************************/
881 struct msi_scrolltext_info
884 msi_control
*control
;
888 static LRESULT WINAPI
889 MSIScrollText_WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
891 struct msi_scrolltext_info
*info
;
894 TRACE("%p %04x %08x %08lx\n", hWnd
, msg
, wParam
, lParam
);
896 info
= GetPropW( hWnd
, szButtonData
);
898 r
= CallWindowProcW( info
->oldproc
, hWnd
, msg
, wParam
, lParam
);
904 RemovePropW( hWnd
, szButtonData
);
907 /* native MSI sets a wait cursor here */
908 msi_dialog_button_handler( info
->dialog
, info
->control
, BN_CLICKED
);
914 struct msi_streamin_info
921 static DWORD CALLBACK
922 msi_richedit_stream_in( DWORD_PTR arg
, LPBYTE buffer
, LONG count
, LONG
*pcb
)
924 struct msi_streamin_info
*info
= (struct msi_streamin_info
*) arg
;
926 if( (count
+ info
->offset
) > info
->length
)
927 count
= info
->length
- info
->offset
;
928 memcpy( buffer
, &info
->string
[ info
->offset
], count
);
930 info
->offset
+= count
;
932 TRACE("%d/%d\n", info
->offset
, info
->length
);
937 static void msi_scrolltext_add_text( msi_control
*control
, LPCWSTR text
)
939 struct msi_streamin_info info
;
942 info
.string
= strdupWtoA( text
);
944 info
.length
= lstrlenA( info
.string
) + 1;
946 es
.dwCookie
= (DWORD_PTR
) &info
;
948 es
.pfnCallback
= msi_richedit_stream_in
;
950 SendMessageW( control
->hwnd
, EM_STREAMIN
, SF_RTF
, (LPARAM
) &es
);
952 msi_free( info
.string
);
955 static UINT
msi_dialog_scrolltext_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
957 static const WCHAR szRichEdit20W
[] = {
958 'R','i','c','h','E','d','i','t','2','0','W',0
960 struct msi_scrolltext_info
*info
;
961 msi_control
*control
;
966 info
= msi_alloc( sizeof *info
);
968 return ERROR_FUNCTION_FAILED
;
970 hRichedit
= LoadLibraryA("riched20");
972 style
= WS_BORDER
| ES_MULTILINE
| WS_VSCROLL
|
973 ES_READONLY
| ES_AUTOVSCROLL
| WS_TABSTOP
;
974 control
= msi_dialog_add_control( dialog
, rec
, szRichEdit20W
, style
);
977 FreeLibrary( hRichedit
);
979 return ERROR_FUNCTION_FAILED
;
982 control
->hDll
= hRichedit
;
984 info
->dialog
= dialog
;
985 info
->control
= control
;
987 /* subclass the static control */
988 info
->oldproc
= (WNDPROC
) SetWindowLongPtrW( control
->hwnd
, GWLP_WNDPROC
,
989 (LONG_PTR
)MSIScrollText_WndProc
);
990 SetPropW( control
->hwnd
, szButtonData
, info
);
992 /* add the text into the richedit */
993 text
= MSI_RecordGetString( rec
, 10 );
995 msi_scrolltext_add_text( control
, text
);
997 return ERROR_SUCCESS
;
1000 static HBITMAP
msi_load_picture( MSIDATABASE
*db
, LPCWSTR name
,
1001 INT cx
, INT cy
, DWORD flags
)
1003 HBITMAP hOleBitmap
= 0, hBitmap
= 0, hOldSrcBitmap
, hOldDestBitmap
;
1004 MSIRECORD
*rec
= NULL
;
1005 IStream
*stm
= NULL
;
1006 IPicture
*pic
= NULL
;
1011 rec
= msi_get_binary_record( db
, name
);
1015 r
= MSI_RecordGetIStream( rec
, 2, &stm
);
1016 msiobj_release( &rec
->hdr
);
1017 if( r
!= ERROR_SUCCESS
)
1020 r
= OleLoadPicture( stm
, 0, TRUE
, &IID_IPicture
, (LPVOID
*) &pic
);
1021 IStream_Release( stm
);
1024 ERR("failed to load picture\n");
1028 r
= IPicture_get_Handle( pic
, (OLE_HANDLE
*) &hOleBitmap
);
1031 ERR("failed to get bitmap handle\n");
1035 /* make the bitmap the desired size */
1036 r
= GetObjectW( hOleBitmap
, sizeof bm
, &bm
);
1037 if (r
!= sizeof bm
)
1039 ERR("failed to get bitmap size\n");
1043 if (flags
& LR_DEFAULTSIZE
)
1049 srcdc
= CreateCompatibleDC( NULL
);
1050 hOldSrcBitmap
= SelectObject( srcdc
, hOleBitmap
);
1051 destdc
= CreateCompatibleDC( NULL
);
1052 hBitmap
= CreateCompatibleBitmap( srcdc
, cx
, cy
);
1053 hOldDestBitmap
= SelectObject( destdc
, hBitmap
);
1054 StretchBlt( destdc
, 0, 0, cx
, cy
,
1055 srcdc
, 0, 0, bm
.bmWidth
, bm
.bmHeight
, SRCCOPY
);
1056 SelectObject( srcdc
, hOldSrcBitmap
);
1057 SelectObject( destdc
, hOldDestBitmap
);
1063 IPicture_Release( pic
);
1067 static UINT
msi_dialog_bitmap_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
1069 UINT cx
, cy
, flags
, style
, attributes
;
1070 msi_control
*control
;
1073 flags
= LR_LOADFROMFILE
;
1074 style
= SS_BITMAP
| SS_LEFT
| WS_GROUP
;
1076 attributes
= MSI_RecordGetInteger( rec
, 8 );
1077 if( attributes
& msidbControlAttributesFixedSize
)
1079 flags
|= LR_DEFAULTSIZE
;
1080 style
|= SS_CENTERIMAGE
;
1083 control
= msi_dialog_add_control( dialog
, rec
, szStatic
, style
);
1084 cx
= MSI_RecordGetInteger( rec
, 6 );
1085 cy
= MSI_RecordGetInteger( rec
, 7 );
1086 cx
= msi_dialog_scale_unit( dialog
, cx
);
1087 cy
= msi_dialog_scale_unit( dialog
, cy
);
1089 text
= msi_get_deformatted_field( dialog
->package
, rec
, 10 );
1090 control
->hBitmap
= msi_load_picture( dialog
->package
->db
, text
, cx
, cy
, flags
);
1091 if( control
->hBitmap
)
1092 SendMessageW( control
->hwnd
, STM_SETIMAGE
,
1093 IMAGE_BITMAP
, (LPARAM
) control
->hBitmap
);
1095 ERR("Failed to load bitmap %s\n", debugstr_w(text
));
1099 return ERROR_SUCCESS
;
1102 static UINT
msi_dialog_icon_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
1104 msi_control
*control
;
1110 control
= msi_dialog_add_control( dialog
, rec
, szStatic
,
1111 SS_ICON
| SS_CENTERIMAGE
| WS_GROUP
);
1113 attributes
= MSI_RecordGetInteger( rec
, 8 );
1114 text
= msi_get_deformatted_field( dialog
->package
, rec
, 10 );
1115 control
->hIcon
= msi_load_icon( dialog
->package
->db
, text
, attributes
);
1116 if( control
->hIcon
)
1117 SendMessageW( control
->hwnd
, STM_SETICON
, (WPARAM
) control
->hIcon
, 0 );
1119 ERR("Failed to load bitmap %s\n", debugstr_w(text
));
1121 return ERROR_SUCCESS
;
1124 static UINT
msi_dialog_combo_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
1126 static const WCHAR szCombo
[] = { 'C','O','M','B','O','B','O','X',0 };
1127 DWORD attributes
, style
;
1129 style
= CBS_AUTOHSCROLL
| WS_TABSTOP
| WS_GROUP
| WS_CHILD
;
1130 attributes
= MSI_RecordGetInteger( rec
, 8 );
1131 if ( ~attributes
& msidbControlAttributesSorted
)
1133 if ( attributes
& msidbControlAttributesComboList
)
1134 style
|= CBS_DROPDOWNLIST
;
1136 style
|= CBS_DROPDOWN
;
1138 msi_dialog_add_control( dialog
, rec
, szCombo
, style
);
1139 return ERROR_SUCCESS
;
1142 static UINT
msi_dialog_edit_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
1144 msi_control
*control
;
1148 control
= msi_dialog_add_control( dialog
, rec
, szEdit
,
1149 WS_BORDER
| WS_TABSTOP
);
1150 control
->handler
= msi_dialog_edit_handler
;
1151 prop
= MSI_RecordGetString( rec
, 9 );
1153 control
->property
= strdupW( prop
);
1154 val
= msi_dup_property( dialog
->package
, control
->property
);
1155 SetWindowTextW( control
->hwnd
, val
);
1157 return ERROR_SUCCESS
;
1160 /******************** Masked Edit ********************************************/
1162 #define MASK_MAX_GROUPS 20
1164 struct msi_mask_group
1172 struct msi_maskedit_info
1180 struct msi_mask_group group
[MASK_MAX_GROUPS
];
1183 static BOOL
msi_mask_editable( WCHAR type
)
1198 static void msi_mask_control_change( struct msi_maskedit_info
*info
)
1203 val
= msi_alloc( (info
->num_chars
+1)*sizeof(WCHAR
) );
1204 for( i
=0, n
=0; i
<info
->num_groups
; i
++ )
1206 if( (info
->group
[i
].len
+ n
) > info
->num_chars
)
1208 ERR("can't fit control %d text into template\n",i
);
1211 if (!msi_mask_editable(info
->group
[i
].type
))
1213 for(r
=0; r
<info
->group
[i
].len
; r
++)
1214 val
[n
+r
] = info
->group
[i
].type
;
1219 r
= GetWindowTextW( info
->group
[i
].hwnd
, &val
[n
], info
->group
[i
].len
+1 );
1220 if( r
!= info
->group
[i
].len
)
1226 TRACE("%d/%d controls were good\n", i
, info
->num_groups
);
1228 if( i
== info
->num_groups
)
1230 TRACE("Set property %s to %s\n",
1231 debugstr_w(info
->prop
), debugstr_w(val
) );
1232 CharUpperBuffW( val
, info
->num_chars
);
1233 MSI_SetPropertyW( info
->dialog
->package
, info
->prop
, val
);
1234 msi_dialog_evaluate_control_conditions( info
->dialog
);
1239 /* now move to the next control if necessary */
1240 static VOID
msi_mask_next_control( struct msi_maskedit_info
*info
, HWND hWnd
)
1245 for( i
=0; i
<info
->num_groups
; i
++ )
1246 if( info
->group
[i
].hwnd
== hWnd
)
1249 /* don't move from the last control */
1250 if( i
>= (info
->num_groups
-1) )
1253 len
= SendMessageW( hWnd
, WM_GETTEXTLENGTH
, 0, 0 );
1254 if( len
< info
->group
[i
].len
)
1257 hWndNext
= GetNextDlgTabItem( GetParent( hWnd
), hWnd
, FALSE
);
1258 SetFocus( hWndNext
);
1261 static LRESULT WINAPI
1262 MSIMaskedEdit_WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
1264 struct msi_maskedit_info
*info
;
1267 TRACE("%p %04x %08x %08lx\n", hWnd
, msg
, wParam
, lParam
);
1269 info
= GetPropW(hWnd
, szButtonData
);
1271 r
= CallWindowProcW(info
->oldproc
, hWnd
, msg
, wParam
, lParam
);
1276 if (HIWORD(wParam
) == EN_CHANGE
)
1278 msi_mask_control_change( info
);
1279 msi_mask_next_control( info
, (HWND
) lParam
);
1283 msi_free( info
->prop
);
1285 RemovePropW( hWnd
, szButtonData
);
1292 /* fish the various bits of the property out and put them in the control */
1294 msi_maskedit_set_text( struct msi_maskedit_info
*info
, LPCWSTR text
)
1300 for( i
= 0; i
< info
->num_groups
; i
++ )
1302 if( info
->group
[i
].len
< lstrlenW( p
) )
1304 LPWSTR chunk
= strdupW( p
);
1305 chunk
[ info
->group
[i
].len
] = 0;
1306 SetWindowTextW( info
->group
[i
].hwnd
, chunk
);
1311 SetWindowTextW( info
->group
[i
].hwnd
, p
);
1314 p
+= info
->group
[i
].len
;
1318 static struct msi_maskedit_info
* msi_dialog_parse_groups( LPCWSTR mask
)
1320 struct msi_maskedit_info
* info
= NULL
;
1321 int i
= 0, n
= 0, total
= 0;
1324 TRACE("masked control, template %s\n", debugstr_w(mask
));
1329 info
= msi_alloc_zero( sizeof *info
);
1333 p
= strchrW(mask
, '<');
1339 for( i
=0; i
<MASK_MAX_GROUPS
; i
++ )
1341 /* stop at the end of the string */
1342 if( p
[0] == 0 || p
[0] == '>' )
1345 /* count the number of the same identifier */
1346 for( n
=0; p
[n
] == p
[0]; n
++ )
1348 info
->group
[i
].ofs
= total
;
1349 info
->group
[i
].type
= p
[0];
1353 total
++; /* an extra not part of the group */
1355 info
->group
[i
].len
= n
;
1360 TRACE("%d characters in %d groups\n", total
, i
);
1361 if( i
== MASK_MAX_GROUPS
)
1362 ERR("too many groups in PIDTemplate %s\n", debugstr_w(mask
));
1364 info
->num_chars
= total
;
1365 info
->num_groups
= i
;
1371 msi_maskedit_create_children( struct msi_maskedit_info
*info
, LPCWSTR font
)
1373 DWORD width
, height
, style
, wx
, ww
;
1378 style
= WS_CHILD
| WS_BORDER
| WS_VISIBLE
| WS_TABSTOP
| ES_AUTOHSCROLL
;
1380 GetClientRect( info
->hwnd
, &rect
);
1382 width
= rect
.right
- rect
.left
;
1383 height
= rect
.bottom
- rect
.top
;
1385 for( i
= 0; i
< info
->num_groups
; i
++ )
1387 if (!msi_mask_editable( info
->group
[i
].type
))
1389 wx
= (info
->group
[i
].ofs
* width
) / info
->num_chars
;
1390 ww
= (info
->group
[i
].len
* width
) / info
->num_chars
;
1392 hwnd
= CreateWindowW( szEdit
, NULL
, style
, wx
, 0, ww
, height
,
1393 info
->hwnd
, NULL
, NULL
, NULL
);
1396 ERR("failed to create mask edit sub window\n");
1400 SendMessageW( hwnd
, EM_LIMITTEXT
, info
->group
[i
].len
, 0 );
1402 msi_dialog_set_font( info
->dialog
, hwnd
,
1403 font
?font
:info
->dialog
->default_font
);
1404 info
->group
[i
].hwnd
= hwnd
;
1409 * office 2003 uses "73931<````=````=````=````=`````>@@@@@"
1410 * delphi 7 uses "<????-??????-??????-????>" and "<???-???>"
1411 * filemaker pro 7 uses "<^^^^=^^^^=^^^^=^^^^=^^^^=^^^^=^^^^^>"
1413 static UINT
msi_dialog_maskedit_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
1415 LPWSTR font_mask
, val
= NULL
, font
;
1416 struct msi_maskedit_info
*info
= NULL
;
1417 UINT ret
= ERROR_SUCCESS
;
1418 msi_control
*control
;
1423 font_mask
= msi_get_deformatted_field( dialog
->package
, rec
, 10 );
1424 font
= msi_dialog_get_style( font_mask
, &mask
);
1427 ERR("mask template is empty\n");
1431 info
= msi_dialog_parse_groups( mask
);
1434 ERR("template %s is invalid\n", debugstr_w(mask
));
1438 info
->dialog
= dialog
;
1440 control
= msi_dialog_add_control( dialog
, rec
, szStatic
,
1441 SS_OWNERDRAW
| WS_GROUP
| WS_VISIBLE
);
1444 ERR("Failed to create maskedit container\n");
1445 ret
= ERROR_FUNCTION_FAILED
;
1448 SetWindowLongPtrW( control
->hwnd
, GWL_EXSTYLE
, WS_EX_CONTROLPARENT
);
1450 info
->hwnd
= control
->hwnd
;
1452 /* subclass the static control */
1453 info
->oldproc
= (WNDPROC
) SetWindowLongPtrW( info
->hwnd
, GWLP_WNDPROC
,
1454 (LONG_PTR
)MSIMaskedEdit_WndProc
);
1455 SetPropW( control
->hwnd
, szButtonData
, info
);
1457 prop
= MSI_RecordGetString( rec
, 9 );
1459 info
->prop
= strdupW( prop
);
1461 msi_maskedit_create_children( info
, font
);
1465 val
= msi_dup_property( dialog
->package
, prop
);
1468 msi_maskedit_set_text( info
, val
);
1474 if( ret
!= ERROR_SUCCESS
)
1476 msi_free( font_mask
);
1481 /******************** Progress Bar *****************************************/
1483 static UINT
msi_dialog_progress_bar( msi_dialog
*dialog
, MSIRECORD
*rec
)
1485 msi_dialog_add_control( dialog
, rec
, PROGRESS_CLASSW
, WS_VISIBLE
);
1486 return ERROR_SUCCESS
;
1489 /******************** Path Edit ********************************************/
1491 struct msi_pathedit_info
1494 msi_control
*control
;
1498 static LPWSTR
msi_get_window_text( HWND hwnd
)
1504 buf
= msi_alloc( sz
*sizeof(WCHAR
) );
1507 r
= GetWindowTextW( hwnd
, buf
, sz
);
1511 buf
= msi_realloc( buf
, sz
*sizeof(WCHAR
) );
1517 static void msi_dialog_update_pathedit( msi_dialog
*dialog
, msi_control
*control
)
1522 if (!control
&& !(control
= msi_dialog_find_control_by_type( dialog
, szPathEdit
)))
1525 indirect
= control
->attributes
& msidbControlAttributesIndirect
;
1526 prop
= msi_dialog_dup_property( dialog
, control
->property
, indirect
);
1527 path
= msi_dialog_dup_property( dialog
, prop
, TRUE
);
1529 SetWindowTextW( control
->hwnd
, path
);
1530 SendMessageW( control
->hwnd
, EM_SETSEL
, 0, -1 );
1536 /* FIXME: test when this should fail */
1537 static BOOL
msi_dialog_verify_path( LPWSTR path
)
1539 if ( !lstrlenW( path
) )
1542 if ( PathIsRelativeW( path
) )
1548 /* returns TRUE if the path is valid, FALSE otherwise */
1549 static BOOL
msi_dialog_onkillfocus( msi_dialog
*dialog
, msi_control
*control
)
1555 indirect
= control
->attributes
& msidbControlAttributesIndirect
;
1556 prop
= msi_dialog_dup_property( dialog
, control
->property
, indirect
);
1558 buf
= msi_get_window_text( control
->hwnd
);
1560 if ( !msi_dialog_verify_path( buf
) )
1562 /* FIXME: display an error message box */
1563 ERR("Invalid path %s\n", debugstr_w( buf
));
1565 SetFocus( control
->hwnd
);
1570 MSI_SetPropertyW( dialog
->package
, prop
, buf
);
1573 msi_dialog_update_pathedit( dialog
, control
);
1575 TRACE("edit %s contents changed, set %s\n", debugstr_w(control
->name
),
1584 static LRESULT WINAPI
MSIPathEdit_WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
1586 struct msi_pathedit_info
*info
= GetPropW(hWnd
, szButtonData
);
1589 TRACE("%p %04x %08x %08lx\n", hWnd
, msg
, wParam
, lParam
);
1591 if ( msg
== WM_KILLFOCUS
)
1593 /* if the path is invalid, don't handle this message */
1594 if ( !msi_dialog_onkillfocus( info
->dialog
, info
->control
) )
1598 r
= CallWindowProcW(info
->oldproc
, hWnd
, msg
, wParam
, lParam
);
1600 if ( msg
== WM_NCDESTROY
)
1603 RemovePropW( hWnd
, szButtonData
);
1609 static UINT
msi_dialog_pathedit_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
1611 struct msi_pathedit_info
*info
;
1612 msi_control
*control
;
1615 info
= msi_alloc( sizeof *info
);
1617 return ERROR_FUNCTION_FAILED
;
1619 control
= msi_dialog_add_control( dialog
, rec
, szEdit
,
1620 WS_BORDER
| WS_TABSTOP
);
1621 control
->attributes
= MSI_RecordGetInteger( rec
, 8 );
1622 prop
= MSI_RecordGetString( rec
, 9 );
1623 control
->property
= msi_dialog_dup_property( dialog
, prop
, FALSE
);
1625 info
->dialog
= dialog
;
1626 info
->control
= control
;
1627 info
->oldproc
= (WNDPROC
) SetWindowLongPtrW( control
->hwnd
, GWLP_WNDPROC
,
1628 (LONG_PTR
)MSIPathEdit_WndProc
);
1629 SetPropW( control
->hwnd
, szButtonData
, info
);
1631 msi_dialog_update_pathedit( dialog
, control
);
1633 return ERROR_SUCCESS
;
1636 /* radio buttons are a bit different from normal controls */
1637 static UINT
msi_dialog_create_radiobutton( MSIRECORD
*rec
, LPVOID param
)
1639 radio_button_group_descr
*group
= (radio_button_group_descr
*)param
;
1640 msi_dialog
*dialog
= group
->dialog
;
1641 msi_control
*control
;
1642 LPCWSTR prop
, text
, name
;
1643 DWORD style
, attributes
= group
->attributes
;
1645 style
= WS_CHILD
| BS_AUTORADIOBUTTON
| BS_MULTILINE
| WS_TABSTOP
;
1646 name
= MSI_RecordGetString( rec
, 3 );
1647 text
= MSI_RecordGetString( rec
, 8 );
1648 if( attributes
& msidbControlAttributesVisible
)
1649 style
|= WS_VISIBLE
;
1650 if( ~attributes
& msidbControlAttributesEnabled
)
1651 style
|= WS_DISABLED
;
1653 control
= msi_dialog_create_window( dialog
, rec
, 0, szButton
, name
, text
,
1654 style
, group
->parent
->hwnd
);
1656 return ERROR_FUNCTION_FAILED
;
1657 control
->handler
= msi_dialog_radiogroup_handler
;
1659 if (!lstrcmpW(control
->name
, group
->propval
))
1660 SendMessageW(control
->hwnd
, BM_SETCHECK
, BST_CHECKED
, 0);
1662 prop
= MSI_RecordGetString( rec
, 1 );
1664 control
->property
= strdupW( prop
);
1666 return ERROR_SUCCESS
;
1669 static UINT
msi_dialog_radiogroup_control( msi_dialog
*dialog
, MSIRECORD
*rec
)
1671 static const WCHAR query
[] = {
1672 'S','E','L','E','C','T',' ','*',' ',
1673 'F','R','O','M',' ','R','a','d','i','o','B','u','t','t','o','n',' ',
1674 'W','H','E','R','E',' ',
1675 '`','P','r','o','p','e','r','t','y','`',' ','=',' ','\'','%','s','\'',0};
1678 msi_control
*control
;
1679 MSIQUERY
*view
= NULL
;
1680 radio_button_group_descr group
;
1681 MSIPACKAGE
*package
= dialog
->package
;
1684 prop
= MSI_RecordGetString( rec
, 9 );
1686 TRACE("%p %p %s\n", dialog
, rec
, debugstr_w( prop
));
1688 /* Create parent group box to hold radio buttons */
1689 control
= msi_dialog_add_control( dialog
, rec
, szButton
, BS_OWNERDRAW
|WS_GROUP
);
1691 return ERROR_FUNCTION_FAILED
;
1693 oldproc
= (WNDPROC
) SetWindowLongPtrW( control
->hwnd
, GWLP_WNDPROC
,
1694 (LONG_PTR
)MSIRadioGroup_WndProc
);
1695 SetPropW(control
->hwnd
, szButtonData
, oldproc
);
1696 SetWindowLongPtrW( control
->hwnd
, GWL_EXSTYLE
, WS_EX_CONTROLPARENT
);
1699 control
->property
= strdupW( prop
);
1701 /* query the Radio Button table for all control in this group */
1702 r
= MSI_OpenQuery( package
->db
, &view
, query
, prop
);
1703 if( r
!= ERROR_SUCCESS
)
1705 ERR("query failed for dialog %s radio group %s\n",
1706 debugstr_w(dialog
->name
), debugstr_w(prop
));
1707 return ERROR_INVALID_PARAMETER
;
1710 group
.dialog
= dialog
;
1711 group
.parent
= control
;
1712 group
.attributes
= MSI_RecordGetInteger( rec
, 8 );
1713 group
.propval
= msi_dup_property( dialog
->package
, control
->property
);
1715 r
= MSI_IterateRecords( view
, 0, msi_dialog_create_radiobutton
, &group
);
1716 msiobj_release( &view
->hdr
);
1717 msi_free( group
.propval
);
1722 /******************** Selection Tree ***************************************/
1724 struct msi_selection_tree_info
1733 msi_seltree_sync_item_state( HWND hwnd
, MSIFEATURE
*feature
, HTREEITEM hItem
)
1736 DWORD index
= feature
->Action
;
1738 TRACE("Feature %s -> %d %d %d\n", debugstr_w(feature
->Title
),
1739 feature
->Installed
, feature
->Action
, feature
->ActionRequest
);
1741 if (index
== INSTALLSTATE_UNKNOWN
)
1742 index
= INSTALLSTATE_ABSENT
;
1744 tvi
.mask
= TVIF_STATE
;
1746 tvi
.state
= INDEXTOSTATEIMAGEMASK( index
);
1747 tvi
.stateMask
= TVIS_STATEIMAGEMASK
;
1749 SendMessageW( hwnd
, TVM_SETITEMW
, 0, (LPARAM
) &tvi
);
1753 msi_seltree_popup_menu( HWND hwnd
, INT x
, INT y
)
1758 /* create a menu to display */
1759 hMenu
= CreatePopupMenu();
1761 /* FIXME: load strings from resources */
1762 AppendMenuA( hMenu
, MF_ENABLED
, INSTALLSTATE_LOCAL
, "Install feature locally");
1763 AppendMenuA( hMenu
, MF_GRAYED
, 0x1000, "Install entire feature");
1764 AppendMenuA( hMenu
, MF_ENABLED
, INSTALLSTATE_ADVERTISED
, "Install on demand");
1765 AppendMenuA( hMenu
, MF_ENABLED
, INSTALLSTATE_ABSENT
, "Don't install");
1766 r
= TrackPopupMenu( hMenu
, TPM_LEFTALIGN
| TPM_TOPALIGN
| TPM_RETURNCMD
,
1767 x
, y
, 0, hwnd
, NULL
);
1768 DestroyMenu( hMenu
);
1773 msi_seltree_feature_from_item( HWND hwnd
, HTREEITEM hItem
)
1777 /* get the feature from the item */
1778 memset( &tvi
, 0, sizeof tvi
);
1780 tvi
.mask
= TVIF_PARAM
| TVIF_HANDLE
;
1781 SendMessageW( hwnd
, TVM_GETITEMW
, 0, (LPARAM
) &tvi
);
1783 return (MSIFEATURE
*) tvi
.lParam
;
1787 msi_seltree_menu( HWND hwnd
, HTREEITEM hItem
)
1789 struct msi_selection_tree_info
*info
;
1790 MSIFEATURE
*feature
;
1791 MSIPACKAGE
*package
;
1799 info
= GetPropW(hwnd
, szButtonData
);
1800 package
= info
->dialog
->package
;
1802 feature
= msi_seltree_feature_from_item( hwnd
, hItem
);
1805 ERR("item %p feature was NULL\n", hItem
);
1809 /* get the item's rectangle to put the menu just below it */
1811 SendMessageW( hwnd
, TVM_GETITEMRECT
, 0, (LPARAM
) &u
.rc
);
1812 MapWindowPoints( hwnd
, NULL
, u
.pt
, 2 );
1814 r
= msi_seltree_popup_menu( hwnd
, u
.rc
.left
, u
.rc
.top
);
1818 case INSTALLSTATE_LOCAL
:
1819 case INSTALLSTATE_ADVERTISED
:
1820 case INSTALLSTATE_ABSENT
:
1821 msi_feature_set_state( feature
, r
);
1824 FIXME("select feature and all children\n");
1828 msi_seltree_sync_item_state( hwnd
, feature
, hItem
);
1829 ACTION_UpdateComponentStates( package
, feature
->Feature
);
1834 static MSIFEATURE
*msi_seltree_get_selected_feature( msi_control
*control
)
1836 struct msi_selection_tree_info
*info
= GetPropW(control
->hwnd
, szButtonData
);
1837 return msi_seltree_feature_from_item( control
->hwnd
, info
->selected
);
1840 static LRESULT WINAPI
1841 MSISelectionTree_WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
1843 struct msi_selection_tree_info
*info
;
1844 TVHITTESTINFO tvhti
;
1847 TRACE("%p %04x %08x %08lx\n", hWnd
, msg
, wParam
, lParam
);
1849 info
= GetPropW(hWnd
, szButtonData
);
1853 case WM_LBUTTONDOWN
:
1854 tvhti
.pt
.x
= (short)LOWORD( lParam
);
1855 tvhti
.pt
.y
= (short)HIWORD( lParam
);
1858 r
= CallWindowProcW(info
->oldproc
, hWnd
, TVM_HITTEST
, 0, (LPARAM
) &tvhti
);
1859 if (tvhti
.flags
& TVHT_ONITEMSTATEICON
)
1860 return msi_seltree_menu( hWnd
, tvhti
.hItem
);
1864 r
= CallWindowProcW(info
->oldproc
, hWnd
, msg
, wParam
, lParam
);
1870 RemovePropW( hWnd
, szButtonData
);
1877 msi_seltree_add_child_features( MSIPACKAGE
*package
, HWND hwnd
,
1878 LPCWSTR parent
, HTREEITEM hParent
)
1880 struct msi_selection_tree_info
*info
= GetPropW( hwnd
, szButtonData
);
1881 MSIFEATURE
*feature
;
1882 TVINSERTSTRUCTW tvis
;
1883 HTREEITEM hitem
, hfirst
= NULL
;
1885 LIST_FOR_EACH_ENTRY( feature
, &package
->features
, MSIFEATURE
, entry
)
1887 if ( lstrcmpW( parent
, feature
->Feature_Parent
) )
1890 if ( !feature
->Title
)
1893 if ( !feature
->Display
)
1896 memset( &tvis
, 0, sizeof tvis
);
1897 tvis
.hParent
= hParent
;
1898 tvis
.hInsertAfter
= TVI_LAST
;
1899 tvis
.u
.item
.mask
= TVIF_TEXT
| TVIF_PARAM
;
1900 tvis
.u
.item
.pszText
= feature
->Title
;
1901 tvis
.u
.item
.lParam
= (LPARAM
) feature
;
1903 hitem
= (HTREEITEM
) SendMessageW( hwnd
, TVM_INSERTITEMW
, 0, (LPARAM
) &tvis
);
1910 msi_seltree_sync_item_state( hwnd
, feature
, hitem
);
1911 msi_seltree_add_child_features( package
, hwnd
,
1912 feature
->Feature
, hitem
);
1914 /* the node is expanded if Display is odd */
1915 if ( feature
->Display
% 2 != 0 )
1916 SendMessageW( hwnd
, TVM_EXPAND
, TVE_EXPAND
, (LPARAM
) hitem
);
1919 /* select the first item */
1920 SendMessageW( hwnd
, TVM_SELECTITEM
, TVGN_CARET
| TVGN_DROPHILITE
, (LPARAM
) hfirst
);
1921 info
->selected
= hfirst
;
1924 static void msi_seltree_create_imagelist( HWND hwnd
)
1926 const int bm_width
= 32, bm_height
= 16, bm_count
= 3;
1927 const int bm_resource
= 0x1001;
1932 himl
= ImageList_Create( bm_width
, bm_height
, FALSE
, 4, 0 );
1935 ERR("failed to create image list\n");
1939 for (i
=0; i
<bm_count
; i
++)
1941 hbmp
= LoadBitmapW( msi_hInstance
, MAKEINTRESOURCEW(i
+bm_resource
) );
1944 ERR("failed to load bitmap %d\n", i
);
1949 * Add a dummy bitmap at offset zero because the treeview
1950 * can't use it as a state mask (zero means no user state).
1953 ImageList_Add( himl
, hbmp
, NULL
);
1955 ImageList_Add( himl
, hbmp
, NULL
);
1958 SendMessageW( hwnd
, TVM_SETIMAGELIST
, TVSIL_STATE
, (LPARAM
)himl
);
1961 static UINT
msi_dialog_seltree_handler( msi_dialog
*dialog
,
1962 msi_control
*control
, WPARAM param
)
1964 struct msi_selection_tree_info
*info
= GetPropW( control
->hwnd
, szButtonData
);
1965 LPNMTREEVIEWW tv
= (LPNMTREEVIEWW
)param
;
1966 MSIRECORD
*row
, *rec
;
1969 UINT r
= ERROR_SUCCESS
;
1971 static const WCHAR select
[] = {
1972 'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ',
1973 '`','F','e','a','t','u','r','e','`',' ','W','H','E','R','E',' ',
1974 '`','T','i','t','l','e','`',' ','=',' ','\'','%','s','\'',0
1977 if (tv
->hdr
.code
!= TVN_SELCHANGINGW
)
1978 return ERROR_SUCCESS
;
1980 info
->selected
= tv
->itemNew
.hItem
;
1982 row
= MSI_QueryGetRecord( dialog
->package
->db
, select
, tv
->itemNew
.pszText
);
1984 return ERROR_FUNCTION_FAILED
;
1986 rec
= MSI_CreateRecord( 1 );
1988 MSI_RecordSetStringW( rec
, 1, MSI_RecordGetString( row
, 4 ) );
1989 ControlEvent_FireSubscribedEvent( dialog
->package
, szSelectionDescription
, rec
);
1991 dir
= MSI_RecordGetString( row
, 7 );
1992 folder
= get_loaded_folder( dialog
->package
, dir
);
1995 r
= ERROR_FUNCTION_FAILED
;
1999 MSI_RecordSetStringW( rec
, 1, folder
->ResolvedTarget
);
2000 ControlEvent_FireSubscribedEvent( dialog
->package
, szSelectionPath
, rec
);
2003 msiobj_release(&row
->hdr
);
2004 msiobj_release(&rec
->hdr
);
2009 static UINT
msi_dialog_selection_tree( msi_dialog
*dialog
, MSIRECORD
*rec
)
2011 msi_control
*control
;
2013 MSIPACKAGE
*package
= dialog
->package
;
2015 struct msi_selection_tree_info
*info
;
2017 info
= msi_alloc( sizeof *info
);
2019 return ERROR_FUNCTION_FAILED
;
2021 /* create the treeview control */
2022 style
= TVS_HASLINES
| TVS_HASBUTTONS
| TVS_LINESATROOT
;
2023 style
|= WS_GROUP
| WS_VSCROLL
;
2024 control
= msi_dialog_add_control( dialog
, rec
, WC_TREEVIEWW
, style
);
2028 return ERROR_FUNCTION_FAILED
;
2031 control
->handler
= msi_dialog_seltree_handler
;
2032 control
->attributes
= MSI_RecordGetInteger( rec
, 8 );
2033 prop
= MSI_RecordGetString( rec
, 9 );
2034 control
->property
= msi_dialog_dup_property( dialog
, prop
, FALSE
);
2037 info
->dialog
= dialog
;
2038 info
->hwnd
= control
->hwnd
;
2039 info
->oldproc
= (WNDPROC
) SetWindowLongPtrW( control
->hwnd
, GWLP_WNDPROC
,
2040 (LONG_PTR
)MSISelectionTree_WndProc
);
2041 SetPropW( control
->hwnd
, szButtonData
, info
);
2043 ControlEvent_SubscribeToEvent( dialog
->package
, dialog
,
2044 szSelectionPath
, control
->name
, szProperty
);
2047 msi_seltree_create_imagelist( control
->hwnd
);
2048 msi_seltree_add_child_features( package
, control
->hwnd
, NULL
, NULL
);
2050 return ERROR_SUCCESS
;
2053 /******************** Group Box ***************************************/
2055 static UINT
msi_dialog_group_box( msi_dialog
*dialog
, MSIRECORD
*rec
)
2057 msi_control
*control
;
2060 style
= BS_GROUPBOX
| WS_CHILD
| WS_GROUP
;
2061 control
= msi_dialog_add_control( dialog
, rec
, WC_BUTTONW
, style
);
2063 return ERROR_FUNCTION_FAILED
;
2065 return ERROR_SUCCESS
;
2068 /******************** List Box ***************************************/
2070 struct msi_listbox_info
2080 static LRESULT WINAPI
MSIListBox_WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
2082 struct msi_listbox_info
*info
;
2086 TRACE("%p %04x %08x %08lx\n", hWnd
, msg
, wParam
, lParam
);
2088 info
= GetPropW( hWnd
, szButtonData
);
2092 r
= CallWindowProcW( info
->oldproc
, hWnd
, msg
, wParam
, lParam
);
2097 for (j
= 0; j
< info
->num_items
; j
++)
2098 msi_free( info
->items
[j
] );
2099 msi_free( info
->items
);
2101 RemovePropW( hWnd
, szButtonData
);
2108 static UINT
msi_listbox_add_item( MSIRECORD
*rec
, LPVOID param
)
2110 struct msi_listbox_info
*info
= param
;
2111 LPCWSTR value
, text
;
2114 value
= MSI_RecordGetString( rec
, 3 );
2115 text
= MSI_RecordGetString( rec
, 4 );
2117 info
->items
[info
->addpos_items
] = strdupW( value
);
2119 pos
= SendMessageW( info
->hwnd
, LB_ADDSTRING
, 0, (LPARAM
)text
);
2120 SendMessageW( info
->hwnd
, LB_SETITEMDATA
, pos
, (LPARAM
)info
->items
[info
->addpos_items
] );
2121 info
->addpos_items
++;
2122 return ERROR_SUCCESS
;
2125 static UINT
msi_listbox_add_items( struct msi_listbox_info
*info
, LPCWSTR property
)
2128 MSIQUERY
*view
= NULL
;
2131 static const WCHAR query
[] = {
2132 'S','E','L','E','C','T',' ','*',' ',
2133 'F','R','O','M',' ','`','L','i','s','t','B','o','x','`',' ',
2134 'W','H','E','R','E',' ',
2135 '`','P','r','o','p','e','r','t','y','`',' ','=',' ','\'','%','s','\'',' ',
2136 'O','R','D','E','R',' ','B','Y',' ','`','O','r','d','e','r','`',0
2139 r
= MSI_OpenQuery( info
->dialog
->package
->db
, &view
, query
, property
);
2140 if ( r
!= ERROR_SUCCESS
)
2143 /* just get the number of records */
2144 r
= MSI_IterateRecords( view
, &count
, NULL
, NULL
);
2146 info
->num_items
= count
;
2147 info
->items
= msi_alloc( sizeof(*info
->items
) * count
);
2149 r
= MSI_IterateRecords( view
, NULL
, msi_listbox_add_item
, info
);
2150 msiobj_release( &view
->hdr
);
2155 static UINT
msi_dialog_listbox_handler( msi_dialog
*dialog
,
2156 msi_control
*control
, WPARAM param
)
2158 struct msi_listbox_info
*info
;
2162 if( HIWORD(param
) != LBN_SELCHANGE
)
2163 return ERROR_SUCCESS
;
2165 info
= GetPropW( control
->hwnd
, szButtonData
);
2166 index
= SendMessageW( control
->hwnd
, LB_GETCURSEL
, 0, 0 );
2167 value
= (LPCWSTR
) SendMessageW( control
->hwnd
, LB_GETITEMDATA
, index
, 0 );
2169 MSI_SetPropertyW( info
->dialog
->package
,
2170 control
->property
, value
);
2171 msi_dialog_evaluate_control_conditions( info
->dialog
);
2173 return ERROR_SUCCESS
;
2176 static UINT
msi_dialog_list_box( msi_dialog
*dialog
, MSIRECORD
*rec
)
2178 struct msi_listbox_info
*info
;
2179 msi_control
*control
;
2180 DWORD attributes
, style
;
2183 info
= msi_alloc( sizeof *info
);
2185 return ERROR_FUNCTION_FAILED
;
2187 style
= WS_TABSTOP
| WS_GROUP
| WS_CHILD
| LBS_NOTIFY
| WS_VSCROLL
| WS_BORDER
;
2188 attributes
= MSI_RecordGetInteger( rec
, 8 );
2189 if (~attributes
& msidbControlAttributesSorted
)
2192 control
= msi_dialog_add_control( dialog
, rec
, WC_LISTBOXW
, style
);
2194 return ERROR_FUNCTION_FAILED
;
2196 control
->handler
= msi_dialog_listbox_handler
;
2198 prop
= MSI_RecordGetString( rec
, 9 );
2199 control
->property
= msi_dialog_dup_property( dialog
, prop
, FALSE
);
2202 info
->dialog
= dialog
;
2203 info
->hwnd
= control
->hwnd
;
2205 info
->addpos_items
= 0;
2206 info
->oldproc
= (WNDPROC
)SetWindowLongPtrW( control
->hwnd
, GWLP_WNDPROC
,
2207 (LONG_PTR
)MSIListBox_WndProc
);
2208 SetPropW( control
->hwnd
, szButtonData
, info
);
2210 if ( control
->property
)
2211 msi_listbox_add_items( info
, control
->property
);
2213 return ERROR_SUCCESS
;
2216 /******************** Directory Combo ***************************************/
2218 static void msi_dialog_update_directory_combo( msi_dialog
*dialog
, msi_control
*control
)
2223 if (!control
&& !(control
= msi_dialog_find_control_by_type( dialog
, szDirectoryCombo
)))
2226 indirect
= control
->attributes
& msidbControlAttributesIndirect
;
2227 prop
= msi_dialog_dup_property( dialog
, control
->property
, indirect
);
2228 path
= msi_dialog_dup_property( dialog
, prop
, TRUE
);
2230 PathStripPathW( path
);
2231 PathRemoveBackslashW( path
);
2233 SendMessageW( control
->hwnd
, CB_INSERTSTRING
, 0, (LPARAM
)path
);
2234 SendMessageW( control
->hwnd
, CB_SETCURSEL
, 0, 0 );
2240 static UINT
msi_dialog_directory_combo( msi_dialog
*dialog
, MSIRECORD
*rec
)
2242 msi_control
*control
;
2246 /* FIXME: use CBS_OWNERDRAWFIXED and add owner draw code */
2247 style
= CBS_DROPDOWNLIST
| CBS_HASSTRINGS
| WS_CHILD
|
2248 WS_GROUP
| WS_TABSTOP
| WS_VSCROLL
;
2249 control
= msi_dialog_add_control( dialog
, rec
, WC_COMBOBOXW
, style
);
2251 return ERROR_FUNCTION_FAILED
;
2253 control
->attributes
= MSI_RecordGetInteger( rec
, 8 );
2254 prop
= MSI_RecordGetString( rec
, 9 );
2255 control
->property
= msi_dialog_dup_property( dialog
, prop
, FALSE
);
2257 msi_dialog_update_directory_combo( dialog
, control
);
2259 return ERROR_SUCCESS
;
2262 /******************** Directory List ***************************************/
2264 static void msi_dialog_update_directory_list( msi_dialog
*dialog
, msi_control
*control
)
2266 WCHAR dir_spec
[MAX_PATH
];
2267 WIN32_FIND_DATAW wfd
;
2273 static const WCHAR asterisk
[] = {'*',0};
2274 static const WCHAR dot
[] = {'.',0};
2275 static const WCHAR dotdot
[] = {'.','.',0};
2277 if (!control
&& !(control
= msi_dialog_find_control_by_type( dialog
, szDirectoryList
)))
2280 /* clear the list-view */
2281 SendMessageW( control
->hwnd
, LVM_DELETEALLITEMS
, 0, 0 );
2283 indirect
= control
->attributes
& msidbControlAttributesIndirect
;
2284 prop
= msi_dialog_dup_property( dialog
, control
->property
, indirect
);
2285 path
= msi_dialog_dup_property( dialog
, prop
, TRUE
);
2287 lstrcpyW( dir_spec
, path
);
2288 lstrcatW( dir_spec
, asterisk
);
2290 file
= FindFirstFileW( dir_spec
, &wfd
);
2291 if ( file
== INVALID_HANDLE_VALUE
)
2296 if ( wfd
.dwFileAttributes
!= FILE_ATTRIBUTE_DIRECTORY
)
2299 if ( !lstrcmpW( wfd
.cFileName
, dot
) || !lstrcmpW( wfd
.cFileName
, dotdot
) )
2302 item
.mask
= LVIF_TEXT
;
2303 item
.cchTextMax
= MAX_PATH
;
2306 item
.pszText
= wfd
.cFileName
;
2308 SendMessageW( control
->hwnd
, LVM_INSERTITEMW
, 0, (LPARAM
)&item
);
2309 } while ( FindNextFileW( file
, &wfd
) );
2316 UINT
msi_dialog_directorylist_up( msi_dialog
*dialog
)
2318 msi_control
*control
;
2319 LPWSTR prop
, path
, ptr
;
2322 control
= msi_dialog_find_control_by_type( dialog
, szDirectoryList
);
2323 indirect
= control
->attributes
& msidbControlAttributesIndirect
;
2324 prop
= msi_dialog_dup_property( dialog
, control
->property
, indirect
);
2325 path
= msi_dialog_dup_property( dialog
, prop
, TRUE
);
2327 /* strip off the last directory */
2328 ptr
= PathFindFileNameW( path
);
2329 if (ptr
!= path
) *(ptr
- 1) = '\0';
2330 PathAddBackslashW( path
);
2332 MSI_SetPropertyW( dialog
->package
, prop
, path
);
2334 msi_dialog_update_directory_list( dialog
, NULL
);
2335 msi_dialog_update_directory_combo( dialog
, NULL
);
2336 msi_dialog_update_pathedit( dialog
, NULL
);
2341 return ERROR_SUCCESS
;
2344 static UINT
msi_dialog_dirlist_handler( msi_dialog
*dialog
,
2345 msi_control
*control
, WPARAM param
)
2347 LPNMHDR nmhdr
= (LPNMHDR
)param
;
2348 WCHAR new_path
[MAX_PATH
];
2349 WCHAR text
[MAX_PATH
];
2355 static const WCHAR backslash
[] = {'\\',0};
2357 if (nmhdr
->code
!= LVN_ITEMACTIVATE
)
2358 return ERROR_SUCCESS
;
2360 index
= SendMessageW( control
->hwnd
, LVM_GETNEXTITEM
, -1, LVNI_SELECTED
);
2363 ERR("No list-view item selected!\n");
2364 return ERROR_FUNCTION_FAILED
;
2368 item
.pszText
= text
;
2369 item
.cchTextMax
= MAX_PATH
;
2370 SendMessageW( control
->hwnd
, LVM_GETITEMTEXTW
, index
, (LPARAM
)&item
);
2372 indirect
= control
->attributes
& msidbControlAttributesIndirect
;
2373 prop
= msi_dialog_dup_property( dialog
, control
->property
, indirect
);
2374 path
= msi_dialog_dup_property( dialog
, prop
, TRUE
);
2376 lstrcpyW( new_path
, path
);
2377 lstrcatW( new_path
, text
);
2378 lstrcatW( new_path
, backslash
);
2380 MSI_SetPropertyW( dialog
->package
, prop
, new_path
);
2382 msi_dialog_update_directory_list( dialog
, NULL
);
2383 msi_dialog_update_directory_combo( dialog
, NULL
);
2384 msi_dialog_update_pathedit( dialog
, NULL
);
2388 return ERROR_SUCCESS
;
2391 static UINT
msi_dialog_directory_list( msi_dialog
*dialog
, MSIRECORD
*rec
)
2393 msi_control
*control
;
2397 style
= LVS_LIST
| WS_VSCROLL
| LVS_SHAREIMAGELISTS
|
2398 LVS_AUTOARRANGE
| LVS_SINGLESEL
| WS_BORDER
|
2399 LVS_SORTASCENDING
| WS_CHILD
| WS_GROUP
| WS_TABSTOP
;
2400 control
= msi_dialog_add_control( dialog
, rec
, WC_LISTVIEWW
, style
);
2402 return ERROR_FUNCTION_FAILED
;
2404 control
->attributes
= MSI_RecordGetInteger( rec
, 8 );
2405 control
->handler
= msi_dialog_dirlist_handler
;
2406 prop
= MSI_RecordGetString( rec
, 9 );
2407 control
->property
= msi_dialog_dup_property( dialog
, prop
, FALSE
);
2409 /* double click to activate an item in the list */
2410 SendMessageW( control
->hwnd
, LVM_SETEXTENDEDLISTVIEWSTYLE
,
2411 0, LVS_EX_TWOCLICKACTIVATE
);
2413 msi_dialog_update_directory_list( dialog
, control
);
2415 return ERROR_SUCCESS
;
2418 /******************** VolumeCost List ***************************************/
2420 static BOOL
str_is_number( LPCWSTR str
)
2424 for (i
= 0; i
< lstrlenW( str
); i
++)
2425 if (!isdigitW(str
[i
]))
2431 static const WCHAR column_keys
[][80] =
2433 {'V','o','l','u','m','e','C','o','s','t','V','o','l','u','m','e',0},
2434 {'V','o','l','u','m','e','C','o','s','t','S','i','z','e',0},
2435 {'V','o','l','u','m','e','C','o','s','t','A','v','a','i','l','a','b','l','e',0},
2436 {'V','o','l','u','m','e','C','o','s','t','R','e','q','u','i','r','e','d',0},
2437 {'V','o','l','u','m','e','C','o','s','t','D','i','f','f','e','r','e','n','c','e',0}
2440 static void msi_dialog_vcl_add_columns( msi_dialog
*dialog
, msi_control
*control
, MSIRECORD
*rec
)
2442 LPCWSTR text
= MSI_RecordGetString( rec
, 10 );
2443 LPCWSTR begin
= text
, end
;
2448 static const WCHAR zero
[] = {'0',0};
2449 static const WCHAR negative
[] = {'-',0};
2453 while ((begin
= strchrW( begin
, '{' )) && count
< 5)
2455 if (!(end
= strchrW( begin
, '}' )))
2458 lstrcpynW( num
, begin
+ 1, end
- begin
);
2459 begin
+= end
- begin
+ 1;
2461 /* empty braces or '0' hides the column */
2462 if ( !num
[0] || !lstrcmpW( num
, zero
) )
2468 /* the width must be a positive number
2469 * if a width is invalid, all remaining columns are hidden
2471 if ( !strncmpW( num
, negative
, 1 ) || !str_is_number( num
) )
2474 ZeroMemory( &lvc
, sizeof(lvc
) );
2475 lvc
.mask
= LVCF_TEXT
| LVCF_WIDTH
| LVCF_SUBITEM
;
2476 lvc
.cx
= atolW( num
);
2477 lvc
.pszText
= msi_dialog_get_uitext( dialog
, column_keys
[count
] );
2479 SendMessageW( control
->hwnd
, LVM_INSERTCOLUMNW
, count
++, (LPARAM
)&lvc
);
2480 msi_free( lvc
.pszText
);
2484 static void msi_dialog_vcl_add_drives( msi_dialog
*dialog
, msi_control
*control
)
2486 ULARGE_INTEGER total
, free
;
2487 WCHAR size_text
[MAX_PATH
];
2493 size
= GetLogicalDriveStringsW( 0, NULL
);
2494 if ( !size
) return;
2496 drives
= msi_alloc( (size
+ 1) * sizeof(WCHAR
) );
2497 if ( !drives
) return;
2499 GetLogicalDriveStringsW( size
, drives
);
2504 lvitem
.mask
= LVIF_TEXT
;
2506 lvitem
.iSubItem
= 0;
2507 lvitem
.pszText
= ptr
;
2508 lvitem
.cchTextMax
= lstrlenW(ptr
) + 1;
2509 SendMessageW( control
->hwnd
, LVM_INSERTITEMW
, 0, (LPARAM
)&lvitem
);
2511 GetDiskFreeSpaceExW(ptr
, &free
, &total
, NULL
);
2513 StrFormatByteSizeW(total
.QuadPart
, size_text
, MAX_PATH
);
2514 lvitem
.iSubItem
= 1;
2515 lvitem
.pszText
= size_text
;
2516 lvitem
.cchTextMax
= lstrlenW(size_text
) + 1;
2517 SendMessageW( control
->hwnd
, LVM_SETITEMW
, 0, (LPARAM
)&lvitem
);
2519 StrFormatByteSizeW(free
.QuadPart
, size_text
, MAX_PATH
);
2520 lvitem
.iSubItem
= 2;
2521 lvitem
.pszText
= size_text
;
2522 lvitem
.cchTextMax
= lstrlenW(size_text
) + 1;
2523 SendMessageW( control
->hwnd
, LVM_SETITEMW
, 0, (LPARAM
)&lvitem
);
2525 ptr
+= lstrlenW(ptr
) + 1;
2532 static UINT
msi_dialog_volumecost_list( msi_dialog
*dialog
, MSIRECORD
*rec
)
2534 msi_control
*control
;
2537 style
= LVS_REPORT
| WS_VSCROLL
| WS_HSCROLL
| LVS_SHAREIMAGELISTS
|
2538 LVS_AUTOARRANGE
| LVS_SINGLESEL
| WS_BORDER
|
2539 WS_CHILD
| WS_TABSTOP
| WS_GROUP
;
2540 control
= msi_dialog_add_control( dialog
, rec
, WC_LISTVIEWW
, style
);
2542 return ERROR_FUNCTION_FAILED
;
2544 msi_dialog_vcl_add_columns( dialog
, control
, rec
);
2545 msi_dialog_vcl_add_drives( dialog
, control
);
2547 return ERROR_SUCCESS
;
2550 static const struct control_handler msi_dialog_handler
[] =
2552 { szText
, msi_dialog_text_control
},
2553 { szPushButton
, msi_dialog_button_control
},
2554 { szLine
, msi_dialog_line_control
},
2555 { szBitmap
, msi_dialog_bitmap_control
},
2556 { szCheckBox
, msi_dialog_checkbox_control
},
2557 { szScrollableText
, msi_dialog_scrolltext_control
},
2558 { szComboBox
, msi_dialog_combo_control
},
2559 { szEdit
, msi_dialog_edit_control
},
2560 { szMaskedEdit
, msi_dialog_maskedit_control
},
2561 { szPathEdit
, msi_dialog_pathedit_control
},
2562 { szProgressBar
, msi_dialog_progress_bar
},
2563 { szRadioButtonGroup
, msi_dialog_radiogroup_control
},
2564 { szIcon
, msi_dialog_icon_control
},
2565 { szSelectionTree
, msi_dialog_selection_tree
},
2566 { szGroupBox
, msi_dialog_group_box
},
2567 { szListBox
, msi_dialog_list_box
},
2568 { szDirectoryCombo
, msi_dialog_directory_combo
},
2569 { szDirectoryList
, msi_dialog_directory_list
},
2570 { szVolumeCostList
, msi_dialog_volumecost_list
},
2573 #define NUM_CONTROL_TYPES (sizeof msi_dialog_handler/sizeof msi_dialog_handler[0])
2575 static UINT
msi_dialog_create_controls( MSIRECORD
*rec
, LPVOID param
)
2577 msi_dialog
*dialog
= param
;
2578 LPCWSTR control_type
;
2581 /* find and call the function that can create this type of control */
2582 control_type
= MSI_RecordGetString( rec
, 3 );
2583 for( i
=0; i
<NUM_CONTROL_TYPES
; i
++ )
2584 if (!strcmpiW( msi_dialog_handler
[i
].control_type
, control_type
))
2586 if( i
!= NUM_CONTROL_TYPES
)
2587 msi_dialog_handler
[i
].func( dialog
, rec
);
2589 ERR("no handler for element type %s\n", debugstr_w(control_type
));
2591 return ERROR_SUCCESS
;
2594 static UINT
msi_dialog_fill_controls( msi_dialog
*dialog
)
2596 static const WCHAR query
[] = {
2597 'S','E','L','E','C','T',' ','*',' ',
2598 'F','R','O','M',' ','C','o','n','t','r','o','l',' ',
2599 'W','H','E','R','E',' ',
2600 '`','D','i','a','l','o','g','_','`',' ','=',' ','\'','%','s','\'',0};
2602 MSIQUERY
*view
= NULL
;
2603 MSIPACKAGE
*package
= dialog
->package
;
2605 TRACE("%p %s\n", dialog
, debugstr_w(dialog
->name
) );
2607 /* query the Control table for all the elements of the control */
2608 r
= MSI_OpenQuery( package
->db
, &view
, query
, dialog
->name
);
2609 if( r
!= ERROR_SUCCESS
)
2611 ERR("query failed for dialog %s\n", debugstr_w(dialog
->name
));
2612 return ERROR_INVALID_PARAMETER
;
2615 r
= MSI_IterateRecords( view
, 0, msi_dialog_create_controls
, dialog
);
2616 msiobj_release( &view
->hdr
);
2621 static UINT
msi_dialog_set_control_condition( MSIRECORD
*rec
, LPVOID param
)
2623 static const WCHAR szHide
[] = { 'H','i','d','e',0 };
2624 static const WCHAR szShow
[] = { 'S','h','o','w',0 };
2625 static const WCHAR szDisable
[] = { 'D','i','s','a','b','l','e',0 };
2626 static const WCHAR szEnable
[] = { 'E','n','a','b','l','e',0 };
2627 static const WCHAR szDefault
[] = { 'D','e','f','a','u','l','t',0 };
2628 msi_dialog
*dialog
= param
;
2629 msi_control
*control
;
2630 LPCWSTR name
, action
, condition
;
2633 name
= MSI_RecordGetString( rec
, 2 );
2634 action
= MSI_RecordGetString( rec
, 3 );
2635 condition
= MSI_RecordGetString( rec
, 4 );
2636 r
= MSI_EvaluateConditionW( dialog
->package
, condition
);
2637 control
= msi_dialog_find_control( dialog
, name
);
2638 if( r
== MSICONDITION_TRUE
&& control
)
2640 TRACE("%s control %s\n", debugstr_w(action
), debugstr_w(name
));
2642 /* FIXME: case sensitive? */
2643 if(!lstrcmpW(action
, szHide
))
2644 ShowWindow(control
->hwnd
, SW_HIDE
);
2645 else if(!strcmpW(action
, szShow
))
2646 ShowWindow(control
->hwnd
, SW_SHOW
);
2647 else if(!strcmpW(action
, szDisable
))
2648 EnableWindow(control
->hwnd
, FALSE
);
2649 else if(!strcmpW(action
, szEnable
))
2650 EnableWindow(control
->hwnd
, TRUE
);
2651 else if(!strcmpW(action
, szDefault
))
2652 SetFocus(control
->hwnd
);
2654 FIXME("Unhandled action %s\n", debugstr_w(action
));
2657 return ERROR_SUCCESS
;
2660 static UINT
msi_dialog_evaluate_control_conditions( msi_dialog
*dialog
)
2662 static const WCHAR query
[] = {
2663 'S','E','L','E','C','T',' ','*',' ',
2664 'F','R','O','M',' ',
2665 'C','o','n','t','r','o','l','C','o','n','d','i','t','i','o','n',' ',
2666 'W','H','E','R','E',' ',
2667 '`','D','i','a','l','o','g','_','`',' ','=',' ','\'','%','s','\'',0
2670 MSIQUERY
*view
= NULL
;
2671 MSIPACKAGE
*package
= dialog
->package
;
2673 TRACE("%p %s\n", dialog
, debugstr_w(dialog
->name
) );
2675 /* query the Control table for all the elements of the control */
2676 r
= MSI_OpenQuery( package
->db
, &view
, query
, dialog
->name
);
2677 if( r
!= ERROR_SUCCESS
)
2678 return ERROR_SUCCESS
;
2680 r
= MSI_IterateRecords( view
, 0, msi_dialog_set_control_condition
, dialog
);
2681 msiobj_release( &view
->hdr
);
2686 UINT
msi_dialog_reset( msi_dialog
*dialog
)
2688 /* FIXME: should restore the original values of any properties we changed */
2689 return msi_dialog_evaluate_control_conditions( dialog
);
2692 /* figure out the height of 10 point MS Sans Serif */
2693 static INT
msi_dialog_get_sans_serif_height( HWND hwnd
)
2695 static const WCHAR szSansSerif
[] = {
2696 'M','S',' ','S','a','n','s',' ','S','e','r','i','f',0 };
2701 HFONT hFont
, hOldFont
;
2704 hdc
= GetDC( hwnd
);
2707 memset( &lf
, 0, sizeof lf
);
2708 lf
.lfHeight
= MulDiv(10, GetDeviceCaps(hdc
, LOGPIXELSY
), 72);
2709 strcpyW( lf
.lfFaceName
, szSansSerif
);
2710 hFont
= CreateFontIndirectW(&lf
);
2713 hOldFont
= SelectObject( hdc
, hFont
);
2714 r
= GetTextMetricsW( hdc
, &tm
);
2716 height
= tm
.tmHeight
;
2717 SelectObject( hdc
, hOldFont
);
2718 DeleteObject( hFont
);
2720 ReleaseDC( hwnd
, hdc
);
2725 /* fetch the associated record from the Dialog table */
2726 static MSIRECORD
*msi_get_dialog_record( msi_dialog
*dialog
)
2728 static const WCHAR query
[] = {
2729 'S','E','L','E','C','T',' ','*',' ',
2730 'F','R','O','M',' ','D','i','a','l','o','g',' ',
2731 'W','H','E','R','E',' ',
2732 '`','D','i','a','l','o','g','`',' ','=',' ','\'','%','s','\'',0};
2733 MSIPACKAGE
*package
= dialog
->package
;
2734 MSIRECORD
*rec
= NULL
;
2736 TRACE("%p %s\n", dialog
, debugstr_w(dialog
->name
) );
2738 rec
= MSI_QueryGetRecord( package
->db
, query
, dialog
->name
);
2740 ERR("query failed for dialog %s\n", debugstr_w(dialog
->name
));
2745 static void msi_dialog_adjust_dialog_pos( msi_dialog
*dialog
, MSIRECORD
*rec
, LPRECT pos
)
2747 static const WCHAR szScreenX
[] = {'S','c','r','e','e','n','X',0};
2748 static const WCHAR szScreenY
[] = {'S','c','r','e','e','n','Y',0};
2755 center
.x
= MSI_RecordGetInteger( rec
, 2 );
2756 center
.y
= MSI_RecordGetInteger( rec
, 3 );
2758 sz
.cx
= MSI_RecordGetInteger( rec
, 4 );
2759 sz
.cy
= MSI_RecordGetInteger( rec
, 5 );
2761 sz
.cx
= msi_dialog_scale_unit( dialog
, sz
.cx
);
2762 sz
.cy
= msi_dialog_scale_unit( dialog
, sz
.cy
);
2764 xres
= msi_get_property_int( dialog
->package
, szScreenX
, 0 );
2765 yres
= msi_get_property_int( dialog
->package
, szScreenY
, 0 );
2767 center
.x
= MulDiv( center
.x
, xres
, 100 );
2768 center
.y
= MulDiv( center
.y
, yres
, 100 );
2770 /* turn the client pos into the window rectangle */
2771 if (dialog
->package
->center_x
&& dialog
->package
->center_y
)
2773 pos
->left
= dialog
->package
->center_x
- sz
.cx
/ 2.0;
2774 pos
->right
= pos
->left
+ sz
.cx
;
2775 pos
->top
= dialog
->package
->center_y
- sz
.cy
/ 2.0;
2776 pos
->bottom
= pos
->top
+ sz
.cy
;
2780 pos
->left
= center
.x
- sz
.cx
/2;
2781 pos
->right
= pos
->left
+ sz
.cx
;
2782 pos
->top
= center
.y
- sz
.cy
/2;
2783 pos
->bottom
= pos
->top
+ sz
.cy
;
2785 /* save the center */
2786 dialog
->package
->center_x
= center
.x
;
2787 dialog
->package
->center_y
= center
.y
;
2790 dialog
->size
.cx
= sz
.cx
;
2791 dialog
->size
.cy
= sz
.cy
;
2793 TRACE("%u %u %u %u\n", pos
->left
, pos
->top
, pos
->right
, pos
->bottom
);
2795 style
= GetWindowLongPtrW( dialog
->hwnd
, GWL_STYLE
);
2796 AdjustWindowRect( pos
, style
, FALSE
);
2799 static BOOL
msi_control_set_next( msi_control
*control
, msi_control
*next
)
2801 return SetWindowPos( next
->hwnd
, control
->hwnd
, 0, 0, 0, 0,
2802 SWP_NOMOVE
| SWP_NOOWNERZORDER
| SWP_NOREDRAW
|
2803 SWP_NOREPOSITION
| SWP_NOSENDCHANGING
| SWP_NOSIZE
);
2806 static UINT
msi_dialog_set_tab_order( msi_dialog
*dialog
)
2808 msi_control
*control
, *tab_next
;
2810 LIST_FOR_EACH_ENTRY( control
, &dialog
->controls
, msi_control
, entry
)
2812 tab_next
= msi_dialog_find_control( dialog
, control
->tabnext
);
2815 msi_control_set_next( control
, tab_next
);
2818 return ERROR_SUCCESS
;
2821 static void msi_dialog_set_first_control( msi_dialog
* dialog
, LPCWSTR name
)
2823 msi_control
*control
;
2825 control
= msi_dialog_find_control( dialog
, name
);
2827 dialog
->hWndFocus
= control
->hwnd
;
2829 dialog
->hWndFocus
= NULL
;
2832 static LRESULT
msi_dialog_oncreate( HWND hwnd
, LPCREATESTRUCTW cs
)
2834 static const WCHAR df
[] = {
2835 'D','e','f','a','u','l','t','U','I','F','o','n','t',0 };
2836 static const WCHAR dfv
[] = {
2837 'M','S',' ','S','h','e','l','l',' ','D','l','g',0 };
2838 msi_dialog
*dialog
= (msi_dialog
*) cs
->lpCreateParams
;
2839 MSIRECORD
*rec
= NULL
;
2840 LPWSTR title
= NULL
;
2843 TRACE("%p %p\n", dialog
, dialog
->package
);
2845 dialog
->hwnd
= hwnd
;
2846 SetWindowLongPtrW( hwnd
, GWLP_USERDATA
, (LONG_PTR
) dialog
);
2848 rec
= msi_get_dialog_record( dialog
);
2851 TRACE("No record found for dialog %s\n", debugstr_w(dialog
->name
));
2855 dialog
->scale
= msi_dialog_get_sans_serif_height(dialog
->hwnd
);
2857 msi_dialog_adjust_dialog_pos( dialog
, rec
, &pos
);
2859 dialog
->attributes
= MSI_RecordGetInteger( rec
, 6 );
2861 dialog
->default_font
= msi_dup_property( dialog
->package
, df
);
2862 if (!dialog
->default_font
)
2864 dialog
->default_font
= strdupW(dfv
);
2865 if (!dialog
->default_font
) return -1;
2868 title
= msi_get_deformatted_field( dialog
->package
, rec
, 7 );
2869 SetWindowTextW( hwnd
, title
);
2872 SetWindowPos( hwnd
, 0, pos
.left
, pos
.top
,
2873 pos
.right
- pos
.left
, pos
.bottom
- pos
.top
,
2874 SWP_NOACTIVATE
| SWP_NOZORDER
| SWP_NOREDRAW
);
2876 msi_dialog_build_font_list( dialog
);
2877 msi_dialog_fill_controls( dialog
);
2878 msi_dialog_evaluate_control_conditions( dialog
);
2879 msi_dialog_set_tab_order( dialog
);
2880 msi_dialog_set_first_control( dialog
, MSI_RecordGetString( rec
, 8 ) );
2881 msiobj_release( &rec
->hdr
);
2886 static UINT
msi_dialog_send_event( msi_dialog
*dialog
, LPCWSTR event
, LPCWSTR arg
)
2888 LPWSTR event_fmt
= NULL
, arg_fmt
= NULL
;
2890 TRACE("Sending control event %s %s\n", debugstr_w(event
), debugstr_w(arg
));
2892 deformat_string( dialog
->package
, event
, &event_fmt
);
2893 deformat_string( dialog
->package
, arg
, &arg_fmt
);
2895 dialog
->event_handler( dialog
->package
, event_fmt
, arg_fmt
, dialog
);
2897 msi_free( event_fmt
);
2898 msi_free( arg_fmt
);
2900 return ERROR_SUCCESS
;
2903 static UINT
msi_dialog_set_property( msi_dialog
*dialog
, LPCWSTR event
, LPCWSTR arg
)
2905 static const WCHAR szNullArg
[] = { '{','}',0 };
2906 LPWSTR p
, prop
, arg_fmt
= NULL
;
2909 len
= strlenW(event
);
2910 prop
= msi_alloc( len
*sizeof(WCHAR
));
2911 strcpyW( prop
, &event
[1] );
2912 p
= strchrW( prop
, ']' );
2913 if( p
&& p
[1] == 0 )
2916 if( strcmpW( szNullArg
, arg
) )
2917 deformat_string( dialog
->package
, arg
, &arg_fmt
);
2918 MSI_SetPropertyW( dialog
->package
, prop
, arg_fmt
);
2919 msi_free( arg_fmt
);
2922 ERR("Badly formatted property string - what happens?\n");
2924 return ERROR_SUCCESS
;
2927 static UINT
msi_dialog_control_event( MSIRECORD
*rec
, LPVOID param
)
2929 msi_dialog
*dialog
= param
;
2930 LPCWSTR condition
, event
, arg
;
2933 condition
= MSI_RecordGetString( rec
, 5 );
2934 r
= MSI_EvaluateConditionW( dialog
->package
, condition
);
2935 if( r
== MSICONDITION_TRUE
|| r
== MSICONDITION_NONE
)
2937 event
= MSI_RecordGetString( rec
, 3 );
2938 arg
= MSI_RecordGetString( rec
, 4 );
2939 if( event
[0] == '[' )
2940 msi_dialog_set_property( dialog
, event
, arg
);
2942 msi_dialog_send_event( dialog
, event
, arg
);
2945 return ERROR_SUCCESS
;
2954 static UINT
add_rec_to_list( MSIRECORD
*rec
, LPVOID param
)
2956 struct rec_list
*add_rec
;
2957 struct list
*records
= (struct list
*)param
;
2959 msiobj_addref( &rec
->hdr
);
2961 add_rec
= msi_alloc( sizeof( *add_rec
) );
2964 msiobj_release( &rec
->hdr
);
2965 return ERROR_OUTOFMEMORY
;
2969 list_add_tail( records
, &add_rec
->entry
);
2970 return ERROR_SUCCESS
;
2973 static inline void remove_rec_from_list( struct rec_list
*rec_entry
)
2975 msiobj_release( &rec_entry
->rec
->hdr
);
2976 list_remove( &rec_entry
->entry
);
2977 msi_free( rec_entry
);
2980 static UINT
msi_dialog_button_handler( msi_dialog
*dialog
,
2981 msi_control
*control
, WPARAM param
)
2983 static const WCHAR query
[] = {
2984 'S','E','L','E','C','T',' ','*',' ',
2985 'F','R','O','M',' ','C','o','n','t','r','o','l','E','v','e','n','t',' ',
2986 'W','H','E','R','E',' ',
2987 '`','D','i','a','l','o','g','_','`',' ','=',' ','\'','%','s','\'',' ',
2989 '`','C','o','n','t','r','o','l','_','`',' ','=',' ','\'','%','s','\'',' ',
2990 'O','R','D','E','R',' ','B','Y',' ','`','O','r','d','e','r','i','n','g','`',0
2992 MSIQUERY
*view
= NULL
;
2993 struct rec_list
*rec_entry
, *next
;
2997 if( HIWORD(param
) != BN_CLICKED
)
2998 return ERROR_SUCCESS
;
3000 list_init( &events
);
3002 r
= MSI_OpenQuery( dialog
->package
->db
, &view
, query
,
3003 dialog
->name
, control
->name
);
3004 if( r
!= ERROR_SUCCESS
)
3006 ERR("query failed\n");
3010 r
= MSI_IterateRecords( view
, 0, add_rec_to_list
, &events
);
3011 msiobj_release( &view
->hdr
);
3012 if (r
!= ERROR_SUCCESS
)
3015 /* handle all SetProperty events first */
3016 LIST_FOR_EACH_ENTRY_SAFE( rec_entry
, next
, &events
, struct rec_list
, entry
)
3018 LPCWSTR event
= MSI_RecordGetString( rec_entry
->rec
, 3 );
3020 if ( event
[0] != '[' )
3023 r
= msi_dialog_control_event( rec_entry
->rec
, dialog
);
3024 remove_rec_from_list( rec_entry
);
3026 if ( r
!= ERROR_SUCCESS
)
3030 /* handle all other events */
3031 LIST_FOR_EACH_ENTRY_SAFE( rec_entry
, next
, &events
, struct rec_list
, entry
)
3033 r
= msi_dialog_control_event( rec_entry
->rec
, dialog
);
3034 remove_rec_from_list( rec_entry
);
3036 if ( r
!= ERROR_SUCCESS
)
3041 LIST_FOR_EACH_ENTRY_SAFE( rec_entry
, next
, &events
, struct rec_list
, entry
)
3043 remove_rec_from_list( rec_entry
);
3049 static UINT
msi_dialog_get_checkbox_state( msi_dialog
*dialog
,
3050 msi_control
*control
)
3052 WCHAR state
[2] = { 0 };
3055 MSI_GetPropertyW( dialog
->package
, control
->property
, state
, &sz
);
3056 return state
[0] ? 1 : 0;
3059 static void msi_dialog_set_checkbox_state( msi_dialog
*dialog
,
3060 msi_control
*control
, UINT state
)
3062 static const WCHAR szState
[] = { '1', 0 };
3065 /* if uncheck then the property is set to NULL */
3068 MSI_SetPropertyW( dialog
->package
, control
->property
, NULL
);
3072 /* check for a custom state */
3073 if (control
->value
&& control
->value
[0])
3074 val
= control
->value
;
3078 MSI_SetPropertyW( dialog
->package
, control
->property
, val
);
3081 static void msi_dialog_checkbox_sync_state( msi_dialog
*dialog
,
3082 msi_control
*control
)
3086 state
= msi_dialog_get_checkbox_state( dialog
, control
);
3087 SendMessageW( control
->hwnd
, BM_SETCHECK
,
3088 state
? BST_CHECKED
: BST_UNCHECKED
, 0 );
3091 static UINT
msi_dialog_checkbox_handler( msi_dialog
*dialog
,
3092 msi_control
*control
, WPARAM param
)
3096 if( HIWORD(param
) != BN_CLICKED
)
3097 return ERROR_SUCCESS
;
3099 TRACE("clicked checkbox %s, set %s\n", debugstr_w(control
->name
),
3100 debugstr_w(control
->property
));
3102 state
= msi_dialog_get_checkbox_state( dialog
, control
);
3103 state
= state
? 0 : 1;
3104 msi_dialog_set_checkbox_state( dialog
, control
, state
);
3105 msi_dialog_checkbox_sync_state( dialog
, control
);
3107 return msi_dialog_button_handler( dialog
, control
, param
);
3110 static UINT
msi_dialog_edit_handler( msi_dialog
*dialog
,
3111 msi_control
*control
, WPARAM param
)
3115 if( HIWORD(param
) != EN_CHANGE
)
3116 return ERROR_SUCCESS
;
3118 TRACE("edit %s contents changed, set %s\n", debugstr_w(control
->name
),
3119 debugstr_w(control
->property
));
3121 buf
= msi_get_window_text( control
->hwnd
);
3122 MSI_SetPropertyW( dialog
->package
, control
->property
, buf
);
3126 return ERROR_SUCCESS
;
3129 static UINT
msi_dialog_radiogroup_handler( msi_dialog
*dialog
,
3130 msi_control
*control
, WPARAM param
)
3132 if( HIWORD(param
) != BN_CLICKED
)
3133 return ERROR_SUCCESS
;
3135 TRACE("clicked radio button %s, set %s\n", debugstr_w(control
->name
),
3136 debugstr_w(control
->property
));
3138 MSI_SetPropertyW( dialog
->package
, control
->property
, control
->name
);
3140 return msi_dialog_button_handler( dialog
, control
, param
);
3143 static LRESULT
msi_dialog_oncommand( msi_dialog
*dialog
, WPARAM param
, HWND hwnd
)
3145 msi_control
*control
= NULL
;
3147 TRACE("%p %p %08x\n", dialog
, hwnd
, param
);
3152 control
= msi_dialog_find_control( dialog
, dialog
->control_default
);
3154 case 2: /* escape */
3155 control
= msi_dialog_find_control( dialog
, dialog
->control_cancel
);
3158 control
= msi_dialog_find_control_by_hwnd( dialog
, hwnd
);
3163 if( control
->handler
)
3165 control
->handler( dialog
, control
, param
);
3166 msi_dialog_evaluate_control_conditions( dialog
);
3170 ERR("button click from nowhere %p %d %p\n", dialog
, param
, hwnd
);
3174 static LRESULT
msi_dialog_onnotify( msi_dialog
*dialog
, LPARAM param
)
3176 LPNMHDR nmhdr
= (LPNMHDR
) param
;
3177 msi_control
*control
= msi_dialog_find_control_by_hwnd( dialog
, nmhdr
->hwndFrom
);
3179 TRACE("%p %p\n", dialog
, nmhdr
->hwndFrom
);
3181 if ( control
&& control
->handler
)
3182 control
->handler( dialog
, control
, param
);
3187 static void msi_dialog_setfocus( msi_dialog
*dialog
)
3189 HWND hwnd
= dialog
->hWndFocus
;
3191 hwnd
= GetNextDlgTabItem( dialog
->hwnd
, hwnd
, TRUE
);
3192 hwnd
= GetNextDlgTabItem( dialog
->hwnd
, hwnd
, FALSE
);
3194 dialog
->hWndFocus
= hwnd
;
3197 static LRESULT WINAPI
MSIDialog_WndProc( HWND hwnd
, UINT msg
,
3198 WPARAM wParam
, LPARAM lParam
)
3200 msi_dialog
*dialog
= (LPVOID
) GetWindowLongPtrW( hwnd
, GWLP_USERDATA
);
3202 TRACE("0x%04x\n", msg
);
3207 dialog
->package
->center_x
= LOWORD(lParam
) + dialog
->size
.cx
/ 2.0;
3208 dialog
->package
->center_y
= HIWORD(lParam
) + dialog
->size
.cy
/ 2.0;
3212 return msi_dialog_oncreate( hwnd
, (LPCREATESTRUCTW
)lParam
);
3215 return msi_dialog_oncommand( dialog
, wParam
, (HWND
)lParam
);
3218 if( LOWORD(wParam
) == WA_INACTIVE
)
3219 dialog
->hWndFocus
= GetFocus();
3221 msi_dialog_setfocus( dialog
);
3225 msi_dialog_setfocus( dialog
);
3228 /* bounce back to our subclassed static control */
3229 case WM_CTLCOLORSTATIC
:
3230 return SendMessageW( (HWND
) lParam
, WM_CTLCOLORSTATIC
, wParam
, lParam
);
3233 dialog
->hwnd
= NULL
;
3236 return msi_dialog_onnotify( dialog
, lParam
);
3238 return DefWindowProcW(hwnd
, msg
, wParam
, lParam
);
3241 static BOOL CALLBACK
msi_radioground_child_enum( HWND hWnd
, LPARAM lParam
)
3243 EnableWindow( hWnd
, lParam
);
3247 static LRESULT WINAPI
MSIRadioGroup_WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
3249 WNDPROC oldproc
= (WNDPROC
) GetPropW(hWnd
, szButtonData
);
3252 TRACE("hWnd %p msg %04x wParam 0x%08x lParam 0x%08lx\n", hWnd
, msg
, wParam
, lParam
);
3254 if (msg
== WM_COMMAND
) /* Forward notifications to dialog */
3255 SendMessageW(GetParent(hWnd
), msg
, wParam
, lParam
);
3257 r
= CallWindowProcW(oldproc
, hWnd
, msg
, wParam
, lParam
);
3259 /* make sure the radio buttons show as disabled if the parent is disabled */
3260 if (msg
== WM_ENABLE
)
3261 EnumChildWindows( hWnd
, msi_radioground_child_enum
, wParam
);
3266 static LRESULT WINAPI
MSIHiddenWindowProc( HWND hwnd
, UINT msg
,
3267 WPARAM wParam
, LPARAM lParam
)
3269 msi_dialog
*dialog
= (msi_dialog
*) lParam
;
3271 TRACE("%d %p\n", msg
, dialog
);
3275 case WM_MSI_DIALOG_CREATE
:
3276 return msi_dialog_run_message_loop( dialog
);
3277 case WM_MSI_DIALOG_DESTROY
:
3278 msi_dialog_destroy( dialog
);
3281 return DefWindowProcW( hwnd
, msg
, wParam
, lParam
);
3284 /* functions that interface to other modules within MSI */
3286 msi_dialog
*msi_dialog_create( MSIPACKAGE
* package
,
3287 LPCWSTR szDialogName
, msi_dialog
*parent
,
3288 msi_dialog_event_handler event_handler
)
3290 MSIRECORD
*rec
= NULL
;
3293 TRACE("%p %s\n", package
, debugstr_w(szDialogName
));
3295 /* allocate the structure for the dialog to use */
3296 dialog
= msi_alloc_zero( sizeof *dialog
+ sizeof(WCHAR
)*strlenW(szDialogName
) );
3299 strcpyW( dialog
->name
, szDialogName
);
3300 dialog
->parent
= parent
;
3301 msiobj_addref( &package
->hdr
);
3302 dialog
->package
= package
;
3303 dialog
->event_handler
= event_handler
;
3304 dialog
->finished
= 0;
3305 list_init( &dialog
->controls
);
3307 /* verify that the dialog exists */
3308 rec
= msi_get_dialog_record( dialog
);
3311 msiobj_release( &package
->hdr
);
3315 dialog
->attributes
= MSI_RecordGetInteger( rec
, 6 );
3316 dialog
->control_default
= strdupW( MSI_RecordGetString( rec
, 9 ) );
3317 dialog
->control_cancel
= strdupW( MSI_RecordGetString( rec
, 10 ) );
3318 msiobj_release( &rec
->hdr
);
3323 static void msi_process_pending_messages( HWND hdlg
)
3327 while( PeekMessageW( &msg
, 0, 0, 0, PM_REMOVE
) )
3329 if( hdlg
&& IsDialogMessageW( hdlg
, &msg
))
3331 TranslateMessage( &msg
);
3332 DispatchMessageW( &msg
);
3336 void msi_dialog_end_dialog( msi_dialog
*dialog
)
3338 TRACE("%p\n", dialog
);
3339 dialog
->finished
= 1;
3340 PostMessageW(dialog
->hwnd
, WM_NULL
, 0, 0);
3343 void msi_dialog_check_messages( HANDLE handle
)
3347 /* in threads other than the UI thread, block */
3348 if( uiThreadId
!= GetCurrentThreadId() )
3351 WaitForSingleObject( handle
, INFINITE
);
3355 /* there's two choices for the UI thread */
3358 msi_process_pending_messages( NULL
);
3364 * block here until somebody creates a new dialog or
3365 * the handle we're waiting on becomes ready
3367 r
= MsgWaitForMultipleObjects( 1, &handle
, 0, INFINITE
, QS_ALLINPUT
);
3368 if( r
== WAIT_OBJECT_0
)
3373 UINT
msi_dialog_run_message_loop( msi_dialog
*dialog
)
3378 if( uiThreadId
!= GetCurrentThreadId() )
3379 return SendMessageW( hMsiHiddenWindow
, WM_MSI_DIALOG_CREATE
, 0, (LPARAM
) dialog
);
3381 /* create the dialog window, don't show it yet */
3382 style
= WS_OVERLAPPED
;
3383 if( dialog
->attributes
& msidbDialogAttributesVisible
)
3384 style
|= WS_VISIBLE
;
3386 hwnd
= CreateWindowW( szMsiDialogClass
, dialog
->name
, style
,
3387 CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
,
3388 NULL
, NULL
, NULL
, dialog
);
3391 ERR("Failed to create dialog %s\n", debugstr_w( dialog
->name
));
3392 return ERROR_FUNCTION_FAILED
;
3395 ShowWindow( hwnd
, SW_SHOW
);
3396 /* UpdateWindow( hwnd ); - and causes the transparent static controls not to paint */
3398 if( dialog
->attributes
& msidbDialogAttributesModal
)
3400 while( !dialog
->finished
)
3402 MsgWaitForMultipleObjects( 0, NULL
, 0, INFINITE
, QS_ALLINPUT
);
3403 msi_process_pending_messages( dialog
->hwnd
);
3407 return ERROR_IO_PENDING
;
3409 return ERROR_SUCCESS
;
3412 void msi_dialog_do_preview( msi_dialog
*dialog
)
3415 dialog
->attributes
|= msidbDialogAttributesVisible
;
3416 dialog
->attributes
&= ~msidbDialogAttributesModal
;
3417 msi_dialog_run_message_loop( dialog
);
3420 void msi_dialog_destroy( msi_dialog
*dialog
)
3422 if( uiThreadId
!= GetCurrentThreadId() )
3424 SendMessageW( hMsiHiddenWindow
, WM_MSI_DIALOG_DESTROY
, 0, (LPARAM
) dialog
);
3429 ShowWindow( dialog
->hwnd
, SW_HIDE
);
3432 DestroyWindow( dialog
->hwnd
);
3434 /* unsubscribe events */
3435 ControlEvent_CleanupDialogSubscriptions(dialog
->package
, dialog
->name
);
3437 /* destroy the list of controls */
3438 while( !list_empty( &dialog
->controls
) )
3442 t
= LIST_ENTRY( list_head( &dialog
->controls
),
3443 msi_control
, entry
);
3444 msi_destroy_control( t
);
3447 /* destroy the list of fonts */
3448 while( dialog
->font_list
)
3450 msi_font
*t
= dialog
->font_list
;
3451 dialog
->font_list
= t
->next
;
3452 DeleteObject( t
->hfont
);
3455 msi_free( dialog
->default_font
);
3457 msi_free( dialog
->control_default
);
3458 msi_free( dialog
->control_cancel
);
3459 msiobj_release( &dialog
->package
->hdr
);
3460 dialog
->package
= NULL
;
3464 BOOL
msi_dialog_register_class( void )
3468 ZeroMemory( &cls
, sizeof cls
);
3469 cls
.lpfnWndProc
= MSIDialog_WndProc
;
3470 cls
.hInstance
= NULL
;
3471 cls
.hIcon
= LoadIconW(0, (LPWSTR
)IDI_APPLICATION
);
3472 cls
.hCursor
= LoadCursorW(0, (LPWSTR
)IDC_ARROW
);
3473 cls
.hbrBackground
= (HBRUSH
)(COLOR_3DFACE
+ 1);
3474 cls
.lpszMenuName
= NULL
;
3475 cls
.lpszClassName
= szMsiDialogClass
;
3477 if( !RegisterClassW( &cls
) )
3480 cls
.lpfnWndProc
= MSIHiddenWindowProc
;
3481 cls
.lpszClassName
= szMsiHiddenWindow
;
3483 if( !RegisterClassW( &cls
) )
3486 uiThreadId
= GetCurrentThreadId();
3488 hMsiHiddenWindow
= CreateWindowW( szMsiHiddenWindow
, NULL
, WS_OVERLAPPED
,
3489 0, 0, 100, 100, NULL
, NULL
, NULL
, NULL
);
3490 if( !hMsiHiddenWindow
)
3496 void msi_dialog_unregister_class( void )
3498 DestroyWindow( hMsiHiddenWindow
);
3499 hMsiHiddenWindow
= NULL
;
3500 UnregisterClassW( szMsiDialogClass
, NULL
);
3501 UnregisterClassW( szMsiHiddenWindow
, NULL
);
3505 static UINT
error_dialog_handler(MSIPACKAGE
*package
, LPCWSTR event
,
3506 LPCWSTR argument
, msi_dialog
* dialog
)
3508 static const WCHAR end_dialog
[] = {'E','n','d','D','i','a','l','o','g',0};
3509 static const WCHAR error_abort
[] = {'E','r','r','o','r','A','b','o','r','t',0};
3510 static const WCHAR error_cancel
[] = {'E','r','r','o','r','C','a','n','c','e','l',0};
3511 static const WCHAR error_no
[] = {'E','r','r','o','r','N','o',0};
3512 static const WCHAR result_prop
[] = {
3513 'M','S','I','E','r','r','o','r','D','i','a','l','o','g','R','e','s','u','l','t',0
3516 if ( lstrcmpW( event
, end_dialog
) )
3517 return ERROR_SUCCESS
;
3519 if ( !lstrcmpW( argument
, error_abort
) || !lstrcmpW( argument
, error_cancel
) ||
3520 !lstrcmpW( argument
, error_no
) )
3522 MSI_SetPropertyW( package
, result_prop
, error_abort
);
3525 ControlEvent_CleanupSubscriptions(package
);
3526 msi_dialog_end_dialog( dialog
);
3528 return ERROR_SUCCESS
;
3531 static UINT
msi_error_dialog_set_error( MSIPACKAGE
*package
, LPWSTR error_dialog
, LPWSTR error
)
3535 static const WCHAR update
[] =
3536 {'U','P','D','A','T','E',' ','`','C','o','n','t','r','o','l','`',' ',
3537 'S','E','T',' ','`','T','e','x','t','`',' ','=',' ','\'','%','s','\'',' ',
3538 'W','H','E','R','E', ' ','`','D','i','a','l','o','g','_','`',' ','=',' ','\'','%','s','\'',' ',
3539 'A','N','D',' ','`','C','o','n','t','r','o','l','`',' ','=',' ',
3540 '\'','E','r','r','o','r','T','e','x','t','\'',0};
3542 row
= MSI_QueryGetRecord( package
->db
, update
, error
, error_dialog
);
3544 return ERROR_FUNCTION_FAILED
;
3546 msiobj_release(&row
->hdr
);
3547 return ERROR_SUCCESS
;
3550 UINT
msi_spawn_error_dialog( MSIPACKAGE
*package
, LPWSTR error_dialog
, LPWSTR error
)
3553 WCHAR result
[MAX_PATH
];
3554 UINT r
= ERROR_SUCCESS
;
3555 DWORD size
= MAX_PATH
;
3558 static const WCHAR szUILevel
[] = {'U','I','L','e','v','e','l',0};
3559 static const WCHAR pn_prop
[] = {'P','r','o','d','u','c','t','N','a','m','e',0};
3560 static const WCHAR title_fmt
[] = {'%','s',' ','W','a','r','n','i','n','g',0};
3561 static const WCHAR error_abort
[] = {'E','r','r','o','r','A','b','o','r','t',0};
3562 static const WCHAR result_prop
[] = {
3563 'M','S','I','E','r','r','o','r','D','i','a','l','o','g','R','e','s','u','l','t',0
3566 if ( (msi_get_property_int(package
, szUILevel
, 0) & INSTALLUILEVEL_MASK
) == INSTALLUILEVEL_NONE
)
3567 return ERROR_SUCCESS
;
3569 if ( !error_dialog
)
3571 LPWSTR product_name
= msi_dup_property( package
, pn_prop
);
3572 WCHAR title
[MAX_PATH
];
3574 sprintfW( title
, title_fmt
, product_name
);
3575 res
= MessageBoxW( NULL
, error
, title
, MB_OKCANCEL
| MB_ICONWARNING
);
3577 msi_free( product_name
);
3580 return ERROR_SUCCESS
;
3582 return ERROR_FUNCTION_FAILED
;
3585 r
= msi_error_dialog_set_error( package
, error_dialog
, error
);
3586 if ( r
!= ERROR_SUCCESS
)
3589 dialog
= msi_dialog_create( package
, error_dialog
, package
->dialog
,
3590 error_dialog_handler
);
3592 return ERROR_FUNCTION_FAILED
;
3594 dialog
->finished
= FALSE
;
3595 r
= msi_dialog_run_message_loop( dialog
);
3596 if ( r
!= ERROR_SUCCESS
)
3599 r
= MSI_GetPropertyW( package
, result_prop
, result
, &size
);
3600 if ( r
!= ERROR_SUCCESS
)
3603 if ( !lstrcmpW( result
, error_abort
) )
3604 r
= ERROR_FUNCTION_FAILED
;
3607 msi_dialog_destroy( dialog
);