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
7030296e
Commit
7030296e
authored
Sep 26, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/monthcal: Move MCN_GETDAYSTATE notification to a helper.
parent
e3a7c6c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
31 deletions
+16
-31
monthcal.c
dlls/comctl32/monthcal.c
+16
-31
No files found.
dlls/comctl32/monthcal.c
View file @
7030296e
...
...
@@ -1220,17 +1220,9 @@ MONTHCAL_HitTest(const MONTHCAL_INFO *infoPtr, MCHITTESTINFO *lpht)
return
retval
;
}
static
void
MONTHCAL_
GoToNextMonth
(
MONTHCAL_INFO
*
infoPtr
)
/* MCN_GETDAYSTATE notification helper */
static
void
MONTHCAL_
NotifyDayState
(
MONTHCAL_INFO
*
infoPtr
)
{
TRACE
(
"MONTHCAL_GoToNextMonth
\n
"
);
infoPtr
->
curSel
.
wMonth
++
;
if
(
infoPtr
->
curSel
.
wMonth
>
12
)
{
infoPtr
->
curSel
.
wYear
++
;
infoPtr
->
curSel
.
wMonth
=
1
;
}
if
(
infoPtr
->
dwStyle
&
MCS_DAYSTATE
)
{
NMDAYSTATE
nmds
;
INT
i
;
...
...
@@ -1254,6 +1246,19 @@ static void MONTHCAL_GoToNextMonth(MONTHCAL_INFO *infoPtr)
}
}
static
void
MONTHCAL_GoToNextMonth
(
MONTHCAL_INFO
*
infoPtr
)
{
TRACE
(
"
\n
"
);
infoPtr
->
curSel
.
wMonth
++
;
if
(
infoPtr
->
curSel
.
wMonth
>
12
)
{
infoPtr
->
curSel
.
wYear
++
;
infoPtr
->
curSel
.
wMonth
=
1
;
}
MONTHCAL_NotifyDayState
(
infoPtr
);
}
static
void
MONTHCAL_GoToPrevMonth
(
MONTHCAL_INFO
*
infoPtr
)
{
...
...
@@ -1265,27 +1270,7 @@ static void MONTHCAL_GoToPrevMonth(MONTHCAL_INFO *infoPtr)
infoPtr
->
curSel
.
wMonth
=
12
;
}
if
(
infoPtr
->
dwStyle
&
MCS_DAYSTATE
)
{
NMDAYSTATE
nmds
;
INT
i
;
nmds
.
nmhdr
.
hwndFrom
=
infoPtr
->
hwndSelf
;
nmds
.
nmhdr
.
idFrom
=
GetWindowLongPtrW
(
infoPtr
->
hwndSelf
,
GWLP_ID
);
nmds
.
nmhdr
.
code
=
MCN_GETDAYSTATE
;
nmds
.
cDayState
=
infoPtr
->
monthRange
;
nmds
.
prgDayState
=
Alloc
(
infoPtr
->
monthRange
*
sizeof
(
MONTHDAYSTATE
));
nmds
.
stStart
=
infoPtr
->
todaysDate
;
nmds
.
stStart
.
wYear
=
infoPtr
->
curSel
.
wYear
;
nmds
.
stStart
.
wMonth
=
infoPtr
->
curSel
.
wMonth
;
nmds
.
stStart
.
wDay
=
1
;
SendMessageW
(
infoPtr
->
hwndNotify
,
WM_NOTIFY
,
nmds
.
nmhdr
.
idFrom
,
(
LPARAM
)
&
nmds
);
for
(
i
=
0
;
i
<
infoPtr
->
monthRange
;
i
++
)
infoPtr
->
monthdayState
[
i
]
=
nmds
.
prgDayState
[
i
];
Free
(
nmds
.
prgDayState
);
}
MONTHCAL_NotifyDayState
(
infoPtr
);
}
static
LRESULT
...
...
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