Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
942dc561
Commit
942dc561
authored
Aug 18, 2005
by
Frank Richter
Committed by
Alexandre Julliard
Aug 18, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add theming for listbox (and combo listbox) controls.
parent
d252fe64
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
131 additions
and
2 deletions
+131
-2
Makefile.in
dlls/comctl32/Makefile.in
+1
-0
theme_listbox.c
dlls/comctl32/theme_listbox.c
+118
-0
theming.c
dlls/comctl32/theming.c
+12
-2
No files found.
dlls/comctl32/Makefile.in
View file @
942dc561
...
...
@@ -37,6 +37,7 @@ C_SRCS = \
tab.c
\
theme_combo.c
\
theme_edit.c
\
theme_listbox.c
\
theming.c
\
toolbar.c
\
tooltips.c
\
...
...
dlls/comctl32/theme_listbox.c
0 → 100644
View file @
942dc561
/*
* Theming - List box control
*
* Copyright (c) 2005 by Frank Richter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "uxtheme.h"
#include "tmschema.h"
#include "comctl32.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
theminglistbox
);
/* Draw themed border */
static
void
nc_paint
(
HTHEME
theme
,
HWND
hwnd
,
HRGN
region
)
{
HRGN
cliprgn
=
region
;
DWORD
exStyle
=
GetWindowLongW
(
hwnd
,
GWL_EXSTYLE
);
if
(
exStyle
&
WS_EX_CLIENTEDGE
)
{
HDC
dc
;
RECT
r
;
int
cxEdge
=
GetSystemMetrics
(
SM_CXEDGE
),
cyEdge
=
GetSystemMetrics
(
SM_CYEDGE
);
GetWindowRect
(
hwnd
,
&
r
);
/* New clipping region passed to default proc to exclude border */
cliprgn
=
CreateRectRgn
(
r
.
left
+
cxEdge
,
r
.
top
+
cyEdge
,
r
.
right
-
cxEdge
,
r
.
bottom
-
cyEdge
);
if
(
region
!=
(
HRGN
)
1
)
CombineRgn
(
cliprgn
,
cliprgn
,
region
,
RGN_AND
);
OffsetRect
(
&
r
,
-
r
.
left
,
-
r
.
top
);
dc
=
GetDCEx
(
hwnd
,
region
,
DCX_WINDOW
|
DCX_INTERSECTRGN
);
OffsetRect
(
&
r
,
-
r
.
left
,
-
r
.
top
);
if
(
IsThemeBackgroundPartiallyTransparent
(
theme
,
0
,
0
))
DrawThemeParentBackground
(
hwnd
,
dc
,
&
r
);
DrawThemeBackground
(
theme
,
dc
,
0
,
0
,
&
r
,
0
);
ReleaseDC
(
hwnd
,
dc
);
}
/* Call default proc to get the scrollbars etc. painted */
DefWindowProcW
(
hwnd
,
WM_NCPAINT
,
(
WPARAM
)
cliprgn
,
0
);
}
/**********************************************************************
* The list control subclass window proc.
*/
LRESULT
CALLBACK
THEMING_ListBoxSubclassProc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
,
ULONG_PTR
dwRefData
)
{
const
WCHAR
*
themeClass
=
WC_LISTBOXW
;
HTHEME
theme
;
LRESULT
result
;
switch
(
msg
)
{
case
WM_CREATE
:
result
=
THEMING_CallOriginalClass
(
hwnd
,
msg
,
wParam
,
lParam
);
OpenThemeData
(
hwnd
,
themeClass
);
return
result
;
case
WM_DESTROY
:
theme
=
GetWindowTheme
(
hwnd
);
CloseThemeData
(
theme
);
return
THEMING_CallOriginalClass
(
hwnd
,
msg
,
wParam
,
lParam
);
case
WM_THEMECHANGED
:
theme
=
GetWindowTheme
(
hwnd
);
CloseThemeData
(
theme
);
OpenThemeData
(
hwnd
,
themeClass
);
break
;
case
WM_SYSCOLORCHANGE
:
theme
=
GetWindowTheme
(
hwnd
);
if
(
!
theme
)
return
THEMING_CallOriginalClass
(
hwnd
,
msg
,
wParam
,
lParam
);
/* Do nothing. When themed, a WM_THEMECHANGED will be received, too,
* which will do the repaint. */
break
;
case
WM_NCPAINT
:
theme
=
GetWindowTheme
(
hwnd
);
if
(
!
theme
)
return
THEMING_CallOriginalClass
(
hwnd
,
msg
,
wParam
,
lParam
);
nc_paint
(
theme
,
hwnd
,
(
HRGN
)
wParam
);
break
;
default:
/* Call old proc */
return
THEMING_CallOriginalClass
(
hwnd
,
msg
,
wParam
,
lParam
);
}
return
0
;
}
dlls/comctl32/theming.c
View file @
942dc561
...
...
@@ -37,6 +37,10 @@ extern LRESULT CALLBACK THEMING_ComboSubclassProc (HWND, UINT, WPARAM, LPARAM,
ULONG_PTR
);
extern
LRESULT
CALLBACK
THEMING_EditSubclassProc
(
HWND
,
UINT
,
WPARAM
,
LPARAM
,
ULONG_PTR
);
extern
LRESULT
CALLBACK
THEMING_ListBoxSubclassProc
(
HWND
,
UINT
,
WPARAM
,
LPARAM
,
ULONG_PTR
);
static
const
WCHAR
comboLboxClass
[]
=
{
'C'
,
'o'
,
'm'
,
'b'
,
'o'
,
'L'
,
'b'
,
'o'
,
'x'
,
0
};
static
const
struct
ThemingSubclass
{
...
...
@@ -45,7 +49,9 @@ static const struct ThemingSubclass
}
subclasses
[]
=
{
/* Note: list must be sorted by class name */
{
WC_COMBOBOXW
,
THEMING_ComboSubclassProc
},
{
WC_EDITW
,
THEMING_EditSubclassProc
}
{
comboLboxClass
,
THEMING_ListBoxSubclassProc
},
{
WC_EDITW
,
THEMING_EditSubclassProc
},
{
WC_LISTBOXW
,
THEMING_ListBoxSubclassProc
}
};
#define NUM_SUBCLASSES (sizeof(subclasses)/sizeof(subclasses[0]))
...
...
@@ -92,10 +98,14 @@ static LRESULT CALLBACK subclass_stub ## N (HWND wnd, UINT msg, \
MAKE_SUBCLASS_STUB
(
0
)
MAKE_SUBCLASS_STUB
(
1
)
MAKE_SUBCLASS_STUB
(
2
)
MAKE_SUBCLASS_STUB
(
3
)
const
static
WNDPROC
subclassStubs
[
NUM_SUBCLASSES
]
=
{
subclass_stub0
,
subclass_stub1
subclass_stub1
,
subclass_stub2
,
subclass_stub3
};
/***********************************************************************
...
...
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