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
a773f43f
Commit
a773f43f
authored
Nov 01, 2004
by
William Poetra Yoga H
Committed by
Alexandre Julliard
Nov 01, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add COLOR_MENUHILIGHT and COLOR_MENUBAR to the system colors.
parent
bcb1f8fe
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
winuser.h
include/winuser.h
+3
-0
syscolor.c
windows/syscolor.c
+4
-2
No files found.
include/winuser.h
View file @
a773f43f
...
...
@@ -752,6 +752,9 @@ typedef struct
#define COLOR_HOTLIGHT 26
#define COLOR_GRADIENTACTIVECAPTION 27
#define COLOR_GRADIENTINACTIVECAPTION 28
/* win2k/xp colors */
#define COLOR_MENUHILIGHT 29
#define COLOR_MENUBAR 30
/* WM_CTLCOLOR values */
#define CTLCOLOR_MSGBOX 0
...
...
windows/syscolor.c
View file @
a773f43f
...
...
@@ -69,11 +69,13 @@ static const char * const DefSysColors[] =
"ButtonAlternateFace"
,
"180 180 180"
,
/* COLOR_ALTERNATEBTNFACE */
"HotTrackingColor"
,
"0 0 255"
,
/* COLOR_HOTLIGHT */
"GradientActiveTitle"
,
"16 132 208"
,
/* COLOR_GRADIENTACTIVECAPTION */
"GradientInactiveTitle"
,
"181 181 181"
/* COLOR_GRADIENTINACTIVECAPTION */
"GradientInactiveTitle"
,
"181 181 181"
,
/* COLOR_GRADIENTINACTIVECAPTION */
"MenuHilight"
,
"0 0 0"
,
/* COLOR_MENUHILIGHT */
"MenuBar"
,
"192 192 192"
/* COLOR_MENUBAR */
};
#define NUM_SYS_COLORS (COLOR_
GRADIENTINACTIVECAPTION
+1)
#define NUM_SYS_COLORS (COLOR_
MENUBAR
+1)
static
COLORREF
SysColors
[
NUM_SYS_COLORS
];
static
HBRUSH
SysColorBrushes
[
NUM_SYS_COLORS
];
...
...
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