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
ad92cdcf
Commit
ad92cdcf
authored
Jan 07, 2008
by
Divan Burger
Committed by
Alexandre Julliard
Jan 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Modernize the look of the colour boxes in the colour dialog.
parent
3a508e60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
15 deletions
+20
-15
colordlg.c
dlls/comdlg32/colordlg.c
+20
-15
No files found.
dlls/comdlg32/colordlg.c
View file @
ad92cdcf
...
...
@@ -739,7 +739,7 @@ void CC_SwitchToFullSize( HWND hDlg, COLORREF result, LPCRECT lprect )
static
void
CC_PaintPredefColorArray
(
HWND
hDlg
,
int
rows
,
int
cols
)
{
HWND
hwnd
=
GetDlgItem
(
hDlg
,
0x2d0
);
RECT
rect
;
RECT
rect
,
blockrect
;
HDC
hdc
;
HBRUSH
hBrush
;
int
dx
,
dy
,
i
,
j
,
k
;
...
...
@@ -762,14 +762,17 @@ static void CC_PaintPredefColorArray( HWND hDlg, int rows, int cols)
hBrush
=
CreateSolidBrush
(
predefcolors
[
j
][
i
]);
if
(
hBrush
)
{
hBrush
=
SelectObject
(
hdc
,
hBrush
);
Rectangle
(
hdc
,
rect
.
left
,
rect
.
top
,
rect
.
left
+
dx
-
DISTANCE
,
rect
.
top
+
dy
-
DISTANCE
);
rect
.
left
=
rect
.
left
+
dx
;
DeleteObject
(
SelectObject
(
hdc
,
hBrush
))
;
blockrect
.
left
=
rect
.
left
;
blockrect
.
top
=
rect
.
top
;
blockrect
.
right
=
rect
.
left
+
dx
-
DISTANCE
;
blockrect
.
bottom
=
rect
.
top
+
dy
-
DISTANCE
;
FillRect
(
hdc
,
&
blockrect
,
hBrush
);
DrawEdge
(
hdc
,
&
blockrect
,
BDR_SUNKEN
,
BF_RECT
);
DeleteObject
(
hBrush
);
}
rect
.
left
+=
dx
;
}
rect
.
top
=
rect
.
top
+
dy
;
rect
.
top
+=
dy
;
rect
.
left
=
k
;
}
ReleaseDC
(
hwnd
,
hdc
);
...
...
@@ -783,7 +786,7 @@ static void CC_PaintPredefColorArray( HWND hDlg, int rows, int cols)
void
CC_PaintUserColorArray
(
HWND
hDlg
,
int
rows
,
int
cols
,
const
COLORREF
*
lpcr
)
{
HWND
hwnd
=
GetDlgItem
(
hDlg
,
0x2d1
);
RECT
rect
;
RECT
rect
,
blockrect
;
HDC
hdc
;
HBRUSH
hBrush
;
int
dx
,
dy
,
i
,
j
,
k
;
...
...
@@ -808,14 +811,17 @@ void CC_PaintUserColorArray( HWND hDlg, int rows, int cols, const COLORREF *lpcr
hBrush
=
CreateSolidBrush
(
lpcr
[
i
+
j
*
cols
]);
if
(
hBrush
)
{
hBrush
=
SelectObject
(
hdc
,
hBrush
)
;
Rectangle
(
hdc
,
rect
.
left
,
rect
.
top
,
rect
.
left
+
dx
-
DISTANCE
,
rect
.
top
+
dy
-
DISTANCE
);
rect
.
left
=
rect
.
left
+
dx
;
DeleteObject
(
SelectObject
(
hdc
,
hBrush
)
)
;
blockrect
.
left
=
rect
.
left
;
blockrect
.
top
=
rect
.
top
;
blockrect
.
right
=
rect
.
left
+
dx
-
DISTANCE
;
blockrect
.
bottom
=
rect
.
top
+
dy
-
DISTANCE
;
FillRect
(
hdc
,
&
blockrect
,
hBrush
);
DrawEdge
(
hdc
,
&
blockrect
,
BDR_SUNKEN
,
BF_RECT
);
DeleteObject
(
hBrush
);
}
rect
.
left
+=
dx
;
}
rect
.
top
=
rect
.
top
+
dy
;
rect
.
top
+=
dy
;
rect
.
left
=
k
;
}
ReleaseDC
(
hwnd
,
hdc
);
...
...
@@ -825,7 +831,6 @@ void CC_PaintUserColorArray( HWND hDlg, int rows, int cols, const COLORREF *lpcr
}
/***********************************************************************
* CC_HookCallChk [internal]
*/
...
...
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