2 * Theming - List box control
4 * Copyright (c) 2005 by Frank Richter
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
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(theminglistbox
);
37 /* Draw themed border */
38 static void nc_paint (HTHEME theme
, HWND hwnd
, HRGN region
)
40 HRGN cliprgn
= region
;
41 DWORD exStyle
= GetWindowLongW (hwnd
, GWL_EXSTYLE
);
42 if (exStyle
& WS_EX_CLIENTEDGE
)
46 int cxEdge
= GetSystemMetrics (SM_CXEDGE
),
47 cyEdge
= GetSystemMetrics (SM_CYEDGE
);
49 GetWindowRect(hwnd
, &r
);
51 /* New clipping region passed to default proc to exclude border */
52 cliprgn
= CreateRectRgn (r
.left
+ cxEdge
, r
.top
+ cyEdge
,
53 r
.right
- cxEdge
, r
.bottom
- cyEdge
);
54 if (region
!= (HRGN
)1)
55 CombineRgn (cliprgn
, cliprgn
, region
, RGN_AND
);
56 OffsetRect(&r
, -r
.left
, -r
.top
);
58 dc
= GetDCEx(hwnd
, region
, DCX_WINDOW
|DCX_INTERSECTRGN
);
59 OffsetRect(&r
, -r
.left
, -r
.top
);
61 if (IsThemeBackgroundPartiallyTransparent (theme
, 0, 0))
62 DrawThemeParentBackground(hwnd
, dc
, &r
);
63 DrawThemeBackground (theme
, dc
, 0, 0, &r
, 0);
67 /* Call default proc to get the scrollbars etc. painted */
68 DefWindowProcW (hwnd
, WM_NCPAINT
, (WPARAM
)cliprgn
, 0);
71 /**********************************************************************
72 * The list control subclass window proc.
74 LRESULT CALLBACK
THEMING_ListBoxSubclassProc (HWND hwnd
, UINT msg
,
75 WPARAM wParam
, LPARAM lParam
,
78 const WCHAR
* themeClass
= WC_LISTBOXW
;
85 result
= THEMING_CallOriginalClass (hwnd
, msg
, wParam
, lParam
);
86 OpenThemeData( hwnd
, themeClass
);
90 theme
= GetWindowTheme( hwnd
);
91 CloseThemeData ( theme
);
92 return THEMING_CallOriginalClass (hwnd
, msg
, wParam
, lParam
);
95 theme
= GetWindowTheme( hwnd
);
96 CloseThemeData ( theme
);
97 OpenThemeData( hwnd
, themeClass
);
100 case WM_SYSCOLORCHANGE
:
101 theme
= GetWindowTheme( hwnd
);
102 if (!theme
) return THEMING_CallOriginalClass (hwnd
, msg
, wParam
, lParam
);
103 /* Do nothing. When themed, a WM_THEMECHANGED will be received, too,
104 * which will do the repaint. */
108 theme
= GetWindowTheme( hwnd
);
109 if (!theme
) return THEMING_CallOriginalClass (hwnd
, msg
, wParam
, lParam
);
110 nc_paint (theme
, hwnd
, (HRGN
)wParam
);
115 return THEMING_CallOriginalClass (hwnd
, msg
, wParam
, lParam
);