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
88bd84ab
Commit
88bd84ab
authored
Feb 18, 1999
by
Pascal Lessard
Committed by
Alexandre Julliard
Feb 18, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Applied the changes of the resulting color of the choose color dialog.
Initialize values in the choose color dialog.
parent
2b709760
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
6 deletions
+42
-6
commdlg.c
misc/commdlg.c
+36
-0
sysres_En.rc
resources/sysres_En.rc
+6
-6
No files found.
misc/commdlg.c
View file @
88bd84ab
...
...
@@ -1706,6 +1706,7 @@ BOOL16 WINAPI ChooseColor16(LPCHOOSECOLOR16 lpChCol)
(
DWORD
)
lpChCol
,
WIN_PROC_16
);
if
(
hwndDialog
)
bRet
=
DIALOG_DoDialogBox
(
hwndDialog
,
lpChCol
->
hwndOwner
);
if
(
hDlgTmpl
)
FreeResource16
(
hDlgTmpl
);
return
bRet
;
}
...
...
@@ -2425,6 +2426,7 @@ static BOOL32 CC_HookCallChk(LPCHOOSECOLOR16 lpcc)
static
LONG
CC_WMInitDialog
(
HWND16
hDlg
,
WPARAM16
wParam
,
LPARAM
lParam
)
{
int
i
,
res
;
int
r
,
g
,
b
;
HWND16
hwnd
;
RECT16
rect
;
POINT16
point
;
...
...
@@ -2433,6 +2435,7 @@ static LONG CC_WMInitDialog(HWND16 hDlg, WPARAM16 wParam, LPARAM lParam)
TRACE
(
commdlg
,
"WM_INITDIALOG lParam=%08lX
\n
"
,
lParam
);
lpp
=
calloc
(
1
,
sizeof
(
struct
CCPRIVATE
));
lpp
->
lpcc
=
(
LPCHOOSECOLOR16
)
lParam
;
if
(
lpp
->
lpcc
->
lStructSize
!=
sizeof
(
CHOOSECOLOR16
))
{
EndDialog32
(
hDlg
,
0
)
;
...
...
@@ -2443,6 +2446,7 @@ static LONG CC_WMInitDialog(HWND16 hDlg, WPARAM16 wParam, LPARAM lParam)
if
(
!
(
lpp
->
lpcc
->
Flags
&
CC_SHOWHELP
))
ShowWindow32
(
GetDlgItem32
(
hDlg
,
0x40e
),
SW_HIDE
);
lpp
->
msetrgb
=
RegisterWindowMessage32A
(
SETRGBSTRING
);
#if 0
cpos=MAKELONG(5,7); /* init */
if (lpp->lpcc->Flags & CC_RGBINIT)
...
...
@@ -2458,6 +2462,7 @@ static LONG CC_WMInitDialog(HWND16 hDlg, WPARAM16 wParam, LPARAM lParam)
found:
/* FIXME: Draw_a_focus_rect & set_init_values */
#endif
GetWindowRect16
(
hDlg
,
&
lpp
->
fullsize
);
if
(
lpp
->
lpcc
->
Flags
&
CC_FULLOPEN
||
lpp
->
lpcc
->
Flags
&
CC_PREVENTFULLOPEN
)
{
...
...
@@ -2486,6 +2491,29 @@ static LONG CC_WMInitDialog(HWND16 hDlg, WPARAM16 wParam, LPARAM lParam)
SendMessage16
(
GetDlgItem32
(
hDlg
,
i
),
EM_LIMITTEXT16
,
3
,
0
);
/* max 3 digits: xyz */
if
(
CC_HookCallChk
(
lpp
->
lpcc
))
res
=
CallWindowProc16
(
lpp
->
lpcc
->
lpfnHook
,
hDlg
,
WM_INITDIALOG
,
wParam
,
lParam
);
/* Set the initial values of the color chooser dialog */
r
=
GetRValue
(
lpp
->
lpcc
->
rgbResult
);
g
=
GetGValue
(
lpp
->
lpcc
->
rgbResult
);
b
=
GetBValue
(
lpp
->
lpcc
->
rgbResult
);
CC_PaintSelectedColor
(
hDlg
,
lpp
->
lpcc
->
rgbResult
);
lpp
->
h
=
CC_RGBtoHSL
(
'H'
,
r
,
g
,
b
);
lpp
->
s
=
CC_RGBtoHSL
(
'S'
,
r
,
g
,
b
);
lpp
->
l
=
CC_RGBtoHSL
(
'L'
,
r
,
g
,
b
);
/* Doing it the long way becaus CC_EditSetRGB/HSL doesn'nt seem to work */
SetDlgItemInt32
(
hDlg
,
703
,
lpp
->
h
,
TRUE
);
SetDlgItemInt32
(
hDlg
,
704
,
lpp
->
s
,
TRUE
);
SetDlgItemInt32
(
hDlg
,
705
,
lpp
->
l
,
TRUE
);
SetDlgItemInt32
(
hDlg
,
706
,
r
,
TRUE
);
SetDlgItemInt32
(
hDlg
,
707
,
g
,
TRUE
);
SetDlgItemInt32
(
hDlg
,
708
,
b
,
TRUE
);
CC_PaintCross
(
hDlg
,
lpp
->
h
,
lpp
->
s
);
CC_PaintTriangle
(
hDlg
,
lpp
->
l
);
return
res
;
}
...
...
@@ -3954,6 +3982,10 @@ BOOL32 WINAPI ChooseColor32A(LPCHOOSECOLOR32A lpChCol )
lpcc16
->
lpTemplateName
=
SEGPTR_GET
(
str
);
ret
=
ChooseColor16
(
lpcc16
);
if
(
ret
)
lpChCol
->
rgbResult
=
lpcc16
->
rgbResult
;
if
(
str
)
SEGPTR_FREE
(
str
);
memcpy
(
lpChCol
->
lpCustColors
,
ccref
,
64
);
...
...
@@ -3988,6 +4020,10 @@ BOOL32 WINAPI ChooseColor32W(LPCHOOSECOLOR32W lpChCol )
lpcc16
->
lpTemplateName
=
SEGPTR_GET
(
str
);
ret
=
ChooseColor16
(
lpcc16
);
if
(
ret
)
lpChCol
->
rgbResult
=
lpcc16
->
rgbResult
;
if
(
str
)
SEGPTR_FREE
(
str
);
memcpy
(
lpChCol
->
lpCustColors
,
ccref
,
64
);
...
...
resources/sysres_En.rc
View file @
88bd84ab
...
...
@@ -190,17 +190,17 @@ FONT 8, "Helv"
LTEXT "&Custom Colors:", 1089, 4, 106, 140, 10
LTEXT "Color | Sol&id", 1090, 150, 151, 48, 10
LTEXT "&Red:", 726 /*1094*/,249,126,24,10
EDITTEXT 706, 275,124,
18
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
EDITTEXT 706, 275,124,
21
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Green:",727/*1095*/,249,140,24,10
EDITTEXT 707, 275,138,
18
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
EDITTEXT 707, 275,138,
21
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Blue:",728 /*1096*/,249,154,24,10
EDITTEXT 708, 275,152,
18
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
EDITTEXT 708, 275,152,
21
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Hue:" ,723 /*1091*/,202,126,22,10
EDITTEXT 703, 226,124,
18
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
EDITTEXT 703, 226,124,
21
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Sat:" ,724 /*1092*/,202,140,22,10
EDITTEXT 704, 226,138,
18
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
EDITTEXT 704, 226,138,
21
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
LTEXT "&Lum:" ,725 /*1093*/,202,154,22,10
EDITTEXT 705, 226,152,
18
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
EDITTEXT 705, 226,152,
21
,12, WS_BORDER | WS_GROUP | WS_TABSTOP
CONTROL "" ,720,"STATIC",SS_SIMPLE|WS_TABSTOP|WS_GROUP,4,14,140,86
CONTROL "" ,721,"STATIC",SS_SIMPLE|WS_TABSTOP|WS_GROUP,4,116,140,28
CONTROL "" ,710,"STATIC",WS_BORDER|SS_SIMPLE|WS_TABSTOP|WS_GROUP, 152,4,118,116
...
...
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