Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Aleksandr Isakov
wine-fonts
Commits
1adcf008
Commit
1adcf008
authored
Jul 13, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Jul 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add handling for the GroupBox dialog control.
parent
a695805c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
dialog.c
dlls/msi/dialog.c
+17
-0
No files found.
dlls/msi/dialog.c
View file @
1adcf008
...
...
@@ -134,6 +134,7 @@ static const WCHAR szRadioButtonGroup[] = {
static
const
WCHAR
szIcon
[]
=
{
'I'
,
'c'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
szSelectionTree
[]
=
{
'S'
,
'e'
,
'l'
,
'e'
,
'c'
,
't'
,
'i'
,
'o'
,
'n'
,
'T'
,
'r'
,
'e'
,
'e'
,
0
};
static
const
WCHAR
szGroupBox
[]
=
{
'G'
,
'r'
,
'o'
,
'u'
,
'p'
,
'B'
,
'o'
,
'x'
,
0
};
static
UINT
msi_dialog_checkbox_handler
(
msi_dialog
*
,
msi_control
*
,
WPARAM
);
static
void
msi_dialog_checkbox_sync_state
(
msi_dialog
*
,
msi_control
*
);
...
...
@@ -1689,6 +1690,21 @@ static UINT msi_dialog_selection_tree( msi_dialog *dialog, MSIRECORD *rec )
return
ERROR_SUCCESS
;
}
/******************** Group Box ***************************************/
static
UINT
msi_dialog_group_box
(
msi_dialog
*
dialog
,
MSIRECORD
*
rec
)
{
msi_control
*
control
;
DWORD
style
;
style
=
BS_GROUPBOX
|
WS_CHILD
|
WS_GROUP
;
control
=
msi_dialog_add_control
(
dialog
,
rec
,
WC_BUTTONW
,
style
);
if
(
!
control
)
return
ERROR_FUNCTION_FAILED
;
return
ERROR_SUCCESS
;
}
static
const
struct
control_handler
msi_dialog_handler
[]
=
{
{
szText
,
msi_dialog_text_control
},
...
...
@@ -1705,6 +1721,7 @@ static const struct control_handler msi_dialog_handler[] =
{
szRadioButtonGroup
,
msi_dialog_radiogroup_control
},
{
szIcon
,
msi_dialog_icon_control
},
{
szSelectionTree
,
msi_dialog_selection_tree
},
{
szGroupBox
,
msi_dialog_group_box
},
};
#define NUM_CONTROL_TYPES (sizeof msi_dialog_handler/sizeof msi_dialog_handler[0])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment