Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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
wine
wine-cw
Commits
fe5881c7
Commit
fe5881c7
authored
Apr 07, 2007
by
Felix Nawothnig
Committed by
Alexandre Julliard
Apr 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Allow enabling TVS_CHECKBOXES on the fly.
parent
d347ebe1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
58 deletions
+70
-58
treeview.c
dlls/comctl32/treeview.c
+70
-58
No files found.
dlls/comctl32/treeview.c
View file @
fe5881c7
...
...
@@ -4829,6 +4829,46 @@ TREEVIEW_MouseWheel(TREEVIEW_INFO *infoPtr, WPARAM wParam)
/* Create/Destroy *******************************************************/
static
void
initialize_checkboxes
(
TREEVIEW_INFO
*
infoPtr
)
{
RECT
rc
;
HBITMAP
hbm
,
hbmOld
;
HDC
hdc
,
hdcScreen
;
int
nIndex
;
infoPtr
->
himlState
=
ImageList_Create
(
16
,
16
,
ILC_COLOR
|
ILC_MASK
,
3
,
0
);
hdcScreen
=
GetDC
(
0
);
hdc
=
CreateCompatibleDC
(
hdcScreen
);
hbm
=
CreateCompatibleBitmap
(
hdcScreen
,
48
,
16
);
hbmOld
=
SelectObject
(
hdc
,
hbm
);
SetRect
(
&
rc
,
0
,
0
,
48
,
16
);
FillRect
(
hdc
,
&
rc
,
(
HBRUSH
)(
COLOR_WINDOW
+
1
));
SetRect
(
&
rc
,
18
,
2
,
30
,
14
);
DrawFrameControl
(
hdc
,
&
rc
,
DFC_BUTTON
,
DFCS_BUTTONCHECK
|
DFCS_FLAT
);
SetRect
(
&
rc
,
34
,
2
,
46
,
14
);
DrawFrameControl
(
hdc
,
&
rc
,
DFC_BUTTON
,
DFCS_BUTTONCHECK
|
DFCS_FLAT
|
DFCS_CHECKED
);
SelectObject
(
hdc
,
hbmOld
);
nIndex
=
ImageList_AddMasked
(
infoPtr
->
himlState
,
hbm
,
GetSysColor
(
COLOR_WINDOW
));
TRACE
(
"checkbox index %d
\n
"
,
nIndex
);
DeleteObject
(
hbm
);
DeleteDC
(
hdc
);
ReleaseDC
(
0
,
hdcScreen
);
infoPtr
->
stateImageWidth
=
16
;
infoPtr
->
stateImageHeight
=
16
;
}
static
LRESULT
TREEVIEW_Create
(
HWND
hwnd
,
const
CREATESTRUCTW
*
lpcs
)
{
...
...
@@ -4930,48 +4970,7 @@ TREEVIEW_Create(HWND hwnd, const CREATESTRUCTW *lpcs)
infoPtr
->
hwndToolTip
=
COMCTL32_CreateToolTip
(
hwnd
);
if
(
infoPtr
->
dwStyle
&
TVS_CHECKBOXES
)
{
RECT
rc
;
HBITMAP
hbm
,
hbmOld
;
HDC
hdc
,
hdcScreen
;
int
nIndex
;
infoPtr
->
himlState
=
ImageList_Create
(
16
,
16
,
ILC_COLOR
|
ILC_MASK
,
3
,
0
);
hdcScreen
=
GetDC
(
0
);
/* Create a coloured bitmap compatible with the screen depth
because checkboxes are not black&white */
hdc
=
CreateCompatibleDC
(
hdcScreen
);
hbm
=
CreateCompatibleBitmap
(
hdcScreen
,
48
,
16
);
hbmOld
=
SelectObject
(
hdc
,
hbm
);
rc
.
left
=
0
;
rc
.
top
=
0
;
rc
.
right
=
48
;
rc
.
bottom
=
16
;
FillRect
(
hdc
,
&
rc
,
(
HBRUSH
)(
COLOR_WINDOW
+
1
));
rc
.
left
=
18
;
rc
.
top
=
2
;
rc
.
right
=
30
;
rc
.
bottom
=
14
;
DrawFrameControl
(
hdc
,
&
rc
,
DFC_BUTTON
,
DFCS_BUTTONCHECK
|
DFCS_FLAT
);
rc
.
left
=
34
;
rc
.
right
=
46
;
DrawFrameControl
(
hdc
,
&
rc
,
DFC_BUTTON
,
DFCS_BUTTONCHECK
|
DFCS_FLAT
|
DFCS_CHECKED
);
SelectObject
(
hdc
,
hbmOld
);
nIndex
=
ImageList_AddMasked
(
infoPtr
->
himlState
,
hbm
,
GetSysColor
(
COLOR_WINDOW
));
TRACE
(
"checkbox index %d
\n
"
,
nIndex
);
DeleteObject
(
hbm
);
DeleteDC
(
hdc
);
ReleaseDC
(
0
,
hdcScreen
);
infoPtr
->
stateImageWidth
=
16
;
infoPtr
->
stateImageHeight
=
16
;
}
initialize_checkboxes
(
infoPtr
);
/* Make sure actual scrollbar state is consistent with uInternalStatus */
ShowScrollBar
(
hwnd
,
SB_VERT
,
FALSE
);
...
...
@@ -5333,24 +5332,37 @@ TREEVIEW_StyleChanged(TREEVIEW_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
if
(
wParam
==
GWL_STYLE
)
{
DWORD
dwNewStyle
=
((
LPSTYLESTRUCT
)
lParam
)
->
styleNew
;
DWORD
dwNewStyle
=
((
LPSTYLESTRUCT
)
lParam
)
->
styleNew
;
/* we have to take special care about tooltips */
if
((
infoPtr
->
dwStyle
^
dwNewStyle
)
&
TVS_NOTOOLTIPS
)
{
if
(
infoPtr
->
dwStyle
&
TVS_NOTOOLTIPS
)
{
infoPtr
->
hwndToolTip
=
COMCTL32_CreateToolTip
(
infoPtr
->
hwnd
);
TRACE
(
"
\n
"
);
}
else
{
DestroyWindow
(
infoPtr
->
hwndToolTip
);
infoPtr
->
hwndToolTip
=
0
;
}
}
if
((
infoPtr
->
dwStyle
^
dwNewStyle
)
&
TVS_CHECKBOXES
)
{
if
(
dwNewStyle
&
TVS_CHECKBOXES
)
{
initialize_checkboxes
(
infoPtr
);
TRACE
(
"checkboxes enabled
\n
"
);
}
else
{
FIXME
(
"tried to disable checkboxes
\n
"
);
}
}
if
((
infoPtr
->
dwStyle
^
dwNewStyle
)
&
TVS_NOTOOLTIPS
)
{
if
(
infoPtr
->
dwStyle
&
TVS_NOTOOLTIPS
)
{
infoPtr
->
hwndToolTip
=
COMCTL32_CreateToolTip
(
infoPtr
->
hwnd
);
TRACE
(
"tooltips enabled
\n
"
);
}
else
{
DestroyWindow
(
infoPtr
->
hwndToolTip
);
infoPtr
->
hwndToolTip
=
0
;
TRACE
(
"tooltips disabled
\n
"
);
}
}
infoPtr
->
dwStyle
=
dwNewStyle
;
infoPtr
->
dwStyle
=
dwNewStyle
;
}
TREEVIEW_UpdateSubTree
(
infoPtr
,
infoPtr
->
root
);
...
...
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