ReactOS 0.4.15-dev-7842-g558ab78
ncscrollbar.c File Reference
#include "uxthemep.h"
#include <assert.h>
Include dependency graph for ncscrollbar.c:

Go to the source code of this file.

Functions

static void ScreenToWindow (HWND hWnd, POINT *pt)
 
static BOOL SCROLL_IsVertical (HWND hwnd, INT nBar)
 
LONG SCROLL_getObjectId (INT nBar)
 
static BOOL SCROLL_PtInRectEx (LPRECT lpRect, POINT pt, BOOL vertical)
 
static enum SCROLL_HITTEST SCROLL_HitTest (HWND hwnd, SCROLLBARINFO *psbi, BOOL vertical, POINT pt, BOOL bDragging)
 
static void SCROLL_ThemeDrawPart (PDRAW_CONTEXT pcontext, int iPartId, int iStateId, SCROLLBARINFO *psbi, int htCurrent, int htDown, int htHot, RECT *r)
 
static void SCROLL_DrawArrows (PDRAW_CONTEXT pcontext, SCROLLBARINFO *psbi, BOOL vertical, int htDown, int htHot)
 
static void SCROLL_DrawInterior (PDRAW_CONTEXT pcontext, SCROLLBARINFO *psbi, INT thumbPos, BOOL vertical, int htDown, int htHot)
 
static void SCROLL_DrawMovingThumb (PWND_DATA pwndData, PDRAW_CONTEXT pcontext, SCROLLBARINFO *psbi, BOOL vertical)
 
void ThemeDrawScrollBarEx (PDRAW_CONTEXT pcontext, INT nBar, PSCROLLBARINFO psbi, POINT *pt)
 
void ThemeDrawScrollBar (PDRAW_CONTEXT pcontext, INT nBar, POINT *pt)
 
static POINT SCROLL_ClipPos (LPRECT lpRect, POINT pt)
 
static UINT SCROLL_GetThumbVal (SCROLLINFO *psi, RECT *rect, BOOL vertical, INT pos)
 
static void SCROLL_HandleScrollEvent (PWND_DATA pwndData, HWND hwnd, INT nBar, UINT msg, POINT pt)
 
static void SCROLL_TrackScrollBar (HWND hwnd, INT scrollbar, POINT pt)
 
void NC_TrackScrollBar (HWND hwnd, WPARAM wParam, POINT pt)
 

Function Documentation

◆ NC_TrackScrollBar()

void NC_TrackScrollBar ( HWND  hwnd,
WPARAM  wParam,
POINT  pt 
)

Definition at line 674 of file ncscrollbar.c.

675{
676 INT scrollbar;
677
678 if ((wParam & 0xfff0) == SC_HSCROLL)
679 {
680 if ((wParam & 0x0f) != HTHSCROLL) return;
681 scrollbar = SB_HORZ;
682 }
683 else /* SC_VSCROLL */
684 {
685 if ((wParam & 0x0f) != HTVSCROLL) return;
686 scrollbar = SB_VERT;
687 }
688 SCROLL_TrackScrollBar( hwnd, scrollbar, pt );
689}
WPARAM wParam
Definition: combotst.c:138
#define pt(x, y)
Definition: drawing.c:79
static void SCROLL_TrackScrollBar(HWND hwnd, INT scrollbar, POINT pt)
Definition: ncscrollbar.c:636
int32_t INT
Definition: typedefs.h:58
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
#define SC_HSCROLL
Definition: winuser.h:2594
#define SB_VERT
Definition: winuser.h:553
#define HTVSCROLL
Definition: winuser.h:2482
#define HTHSCROLL
Definition: winuser.h:2481
#define SB_HORZ
Definition: winuser.h:552

Referenced by ThemeWndProc().

◆ ScreenToWindow()

static void ScreenToWindow ( HWND  hWnd,
POINT pt 
)
static

Definition at line 16 of file ncscrollbar.c.

17{
18 RECT rcWnd;
19 GetWindowRect(hWnd, &rcWnd);
20 pt->x -= rcWnd.left;
21 pt->y -= rcWnd.top;
22}
HWND hWnd
Definition: settings.c:17
LONG top
Definition: windef.h:307
LONG left
Definition: windef.h:306
BOOL WINAPI GetWindowRect(_In_ HWND, _Out_ LPRECT)

Referenced by SCROLL_TrackScrollBar(), and ThemeDrawScrollBarEx().

◆ SCROLL_ClipPos()

static POINT SCROLL_ClipPos ( LPRECT  lpRect,
POINT  pt 
)
static

Definition at line 337 of file ncscrollbar.c.

338{
339 if( pt.x < lpRect->left )
340 pt.x = lpRect->left;
341 else
342 if( pt.x > lpRect->right )
343 pt.x = lpRect->right;
344
345 if( pt.y < lpRect->top )
346 pt.y = lpRect->top;
347 else
348 if( pt.y > lpRect->bottom )
349 pt.y = lpRect->bottom;
350
351 return pt;
352}
LONG right
Definition: windef.h:308
LONG bottom
Definition: windef.h:309

Referenced by SCROLL_HandleScrollEvent().

◆ SCROLL_DrawArrows()

static void SCROLL_DrawArrows ( PDRAW_CONTEXT  pcontext,
SCROLLBARINFO psbi,
BOOL  vertical,
int  htDown,
int  htHot 
)
static

Definition at line 147 of file ncscrollbar.c.

149{
150 RECT r;
151 int iStateId;
152
153 r = psbi->rcScrollBar;
154 if( vertical )
155 {
156 r.bottom = r.top + psbi->dxyLineButton;
157 iStateId = ABS_UPNORMAL;
158 }
159 else
160 {
161 r.right = r.left + psbi->dxyLineButton;
162 iStateId = ABS_LEFTNORMAL;
163 }
164
165 SCROLL_ThemeDrawPart(pcontext, SBP_ARROWBTN, iStateId, psbi, SCROLL_TOP_ARROW, htDown, htHot, &r);
166
167 r = psbi->rcScrollBar;
168 if( vertical )
169 {
170 r.top = r.bottom - psbi->dxyLineButton;
171 iStateId = ABS_DOWNNORMAL;
172 }
173 else
174 {
175 iStateId = ABS_RIGHTNORMAL;
176 r.left = r.right - psbi->dxyLineButton;
177 }
178
179 SCROLL_ThemeDrawPart(pcontext, SBP_ARROWBTN, iStateId, psbi, SCROLL_BOTTOM_ARROW, htDown, htHot, &r);
180}
GLdouble GLdouble GLdouble r
Definition: gl.h:2055
static void SCROLL_ThemeDrawPart(PDRAW_CONTEXT pcontext, int iPartId, int iStateId, SCROLLBARINFO *psbi, int htCurrent, int htDown, int htHot, RECT *r)
Definition: ncscrollbar.c:127
#define SCROLL_BOTTOM_ARROW
Definition: scrollbar.c:18
#define SCROLL_TOP_ARROW
Definition: scrollbar.c:14
@ ABS_UPNORMAL
Definition: vsstyle.h:1091
@ ABS_RIGHTNORMAL
Definition: vsstyle.h:1103
@ ABS_LEFTNORMAL
Definition: vsstyle.h:1099
@ ABS_DOWNNORMAL
Definition: vsstyle.h:1095
@ SBP_ARROWBTN
Definition: vsstyle.h:1076

Referenced by SCROLL_HandleScrollEvent(), and ThemeDrawScrollBarEx().

◆ SCROLL_DrawInterior()

static void SCROLL_DrawInterior ( PDRAW_CONTEXT  pcontext,
SCROLLBARINFO psbi,
INT  thumbPos,
BOOL  vertical,
int  htDown,
int  htHot 
)
static

Definition at line 182 of file ncscrollbar.c.

185{
186 RECT r, rcPart;
187
188 /* thumbPos is relative to the edge of the scrollbar */
189
190 r = psbi->rcScrollBar;
191 if (vertical)
192 {
193 if (thumbPos)
194 thumbPos += pcontext->wi.rcClient.top - pcontext->wi.rcWindow.top;
195 r.top += psbi->dxyLineButton;
196 r.bottom -= (psbi->dxyLineButton);
197 }
198 else
199 {
200 if (thumbPos)
201 thumbPos += pcontext->wi.rcClient.left - pcontext->wi.rcWindow.left;
202 r.left += psbi->dxyLineButton;
203 r.right -= psbi->dxyLineButton;
204 }
205
206 if (r.right <= r.left || r.bottom <= r.top)
207 return;
208
209 /* Draw the scroll rectangles and thumb */
210
211 if (!thumbPos) /* No thumb to draw */
212 {
213 rcPart = r;
214 SCROLL_ThemeDrawPart(pcontext, vertical ? SBP_UPPERTRACKVERT: SBP_UPPERTRACKHORZ , BUTTON_NORMAL, psbi, SCROLL_THUMB, 0, 0, &rcPart);
215 return;
216 }
217
218 /* Some themes have different bitmaps for the upper and lower tracks
219 It seems that windows use the bitmap for the lower track in the upper track */
220 if (vertical)
221 {
222 rcPart = r;
223 rcPart.bottom = thumbPos;
224 SCROLL_ThemeDrawPart(pcontext, SBP_LOWERTRACKVERT, BUTTON_NORMAL, psbi, SCROLL_TOP_RECT, htDown, htHot, &rcPart);
225 r.top = rcPart.bottom;
226
227 rcPart = r;
228 rcPart.top += psbi->xyThumbBottom - psbi->xyThumbTop;
229 SCROLL_ThemeDrawPart(pcontext, SBP_UPPERTRACKVERT, BUTTON_NORMAL, psbi, SCROLL_BOTTOM_RECT, htDown, htHot, &rcPart);
230 r.bottom = rcPart.top;
231
232 SCROLL_ThemeDrawPart(pcontext, SBP_THUMBBTNVERT, BUTTON_NORMAL, psbi, SCROLL_THUMB, htDown, htHot, &r);
233 SCROLL_ThemeDrawPart(pcontext, SBP_GRIPPERVERT, BUTTON_NORMAL, psbi, SCROLL_THUMB, htDown, htHot, &r);
234 }
235 else /* horizontal */
236 {
237 rcPart = r;
238 rcPart.right = thumbPos;
239 SCROLL_ThemeDrawPart(pcontext, SBP_LOWERTRACKHORZ, BUTTON_NORMAL, psbi, SCROLL_TOP_RECT, htDown, htHot, &rcPart);
240 r.left = rcPart.right;
241
242 rcPart = r;
243 rcPart.left += psbi->xyThumbBottom - psbi->xyThumbTop;
244 SCROLL_ThemeDrawPart(pcontext, SBP_UPPERTRACKHORZ, BUTTON_NORMAL, psbi, SCROLL_BOTTOM_RECT, htDown, htHot, &rcPart);
245 r.right = rcPart.left;
246
247 SCROLL_ThemeDrawPart(pcontext, SBP_THUMBBTNHORZ, BUTTON_NORMAL, psbi, SCROLL_THUMB, htDown, htHot, &r);
248 SCROLL_ThemeDrawPart(pcontext, SBP_GRIPPERHORZ, BUTTON_NORMAL, psbi, SCROLL_THUMB, htDown, htHot, &r);
249 }
250}
#define SCROLL_THUMB
Definition: scrollbar.c:16
#define SCROLL_BOTTOM_RECT
Definition: scrollbar.c:17
#define SCROLL_TOP_RECT
Definition: scrollbar.c:15
WINDOWINFO wi
Definition: uxthemep.h:196
RECT rcClient
Definition: winuser.h:3768
RECT rcWindow
Definition: winuser.h:3767
@ BUTTON_NORMAL
Definition: uxthemep.h:220
@ SBP_GRIPPERVERT
Definition: vsstyle.h:1084
@ SBP_UPPERTRACKVERT
Definition: vsstyle.h:1082
@ SBP_LOWERTRACKHORZ
Definition: vsstyle.h:1079
@ SBP_THUMBBTNHORZ
Definition: vsstyle.h:1077
@ SBP_GRIPPERHORZ
Definition: vsstyle.h:1083
@ SBP_LOWERTRACKVERT
Definition: vsstyle.h:1081
@ SBP_UPPERTRACKHORZ
Definition: vsstyle.h:1080
@ SBP_THUMBBTNVERT
Definition: vsstyle.h:1078

Referenced by SCROLL_DrawMovingThumb(), SCROLL_HandleScrollEvent(), and ThemeDrawScrollBarEx().

◆ SCROLL_DrawMovingThumb()

static void SCROLL_DrawMovingThumb ( PWND_DATA  pwndData,
PDRAW_CONTEXT  pcontext,
SCROLLBARINFO psbi,
BOOL  vertical 
)
static

Definition at line 252 of file ncscrollbar.c.

253{
254 INT pos = pwndData->SCROLL_TrackingPos;
256
257 if( vertical )
258 max_size = psbi->rcScrollBar.bottom - psbi->rcScrollBar.top;
259 else
260 max_size = psbi->rcScrollBar.right - psbi->rcScrollBar.left;
261
262 max_size -= psbi->xyThumbBottom - psbi->xyThumbTop + psbi->dxyLineButton;
263
264 if( pos < (psbi->dxyLineButton) )
265 pos = (psbi->dxyLineButton);
266 else if( pos > max_size )
267 pos = max_size;
268
269 SCROLL_DrawInterior(pcontext, psbi, pos, vertical, SCROLL_THUMB, 0);
270
271 pwndData->SCROLL_MovingThumb = !pwndData->SCROLL_MovingThumb;
272}
static INT max_size
Definition: history.c:51
static void SCROLL_DrawInterior(PDRAW_CONTEXT pcontext, SCROLLBARINFO *psbi, INT thumbPos, BOOL vertical, int htDown, int htHot)
Definition: ncscrollbar.c:182
INT SCROLL_TrackingPos
Definition: uxthemep.h:184
BOOL SCROLL_MovingThumb
Definition: uxthemep.h:181

Referenced by SCROLL_HandleScrollEvent().

◆ SCROLL_getObjectId()

LONG SCROLL_getObjectId ( INT  nBar)

Definition at line 38 of file ncscrollbar.c.

39{
40 switch(nBar)
41 {
42 case SB_HORZ:
43 return OBJID_HSCROLL;
44 case SB_VERT:
45 return OBJID_VSCROLL;
46 default:
48 return 0;
49 }
50}
#define FALSE
Definition: types.h:117
#define assert(x)
Definition: debug.h:53
#define OBJID_VSCROLL
Definition: winable.h:20
#define OBJID_HSCROLL
Definition: winable.h:21

Referenced by SCROLL_HandleScrollEvent(), and ThemeDrawScrollBar().

◆ SCROLL_GetThumbVal()

static UINT SCROLL_GetThumbVal ( SCROLLINFO psi,
RECT rect,
BOOL  vertical,
INT  pos 
)
static

Definition at line 362 of file ncscrollbar.c.

364{
365 INT thumbSize;
366 INT pixels = vertical ? rect->bottom-rect->top : rect->right-rect->left;
367 INT range;
368
370 return psi->nMin;
371
372 if (psi->nPage)
373 {
374 thumbSize = MulDiv(pixels,psi->nPage,(psi->nMax-psi->nMin+1));
375 if (thumbSize < SCROLL_MIN_THUMB) thumbSize = SCROLL_MIN_THUMB;
376 }
377 else thumbSize = GetSystemMetrics(SM_CXVSCROLL);
378
379 if ((pixels -= thumbSize) <= 0) return psi->nMin;
380
382 if (pos > pixels) pos = pixels;
383
384 if (!psi->nPage)
385 range = psi->nMax - psi->nMin;
386 else
387 range = psi->nMax - psi->nMin - psi->nPage + 1;
388
389 return psi->nMin + MulDiv(pos, range, pixels);
390}
GLint GLint GLsizei GLsizei GLsizei GLint GLenum GLenum const GLvoid * pixels
Definition: gl.h:1546
GLenum GLint * range
Definition: glext.h:7539
INT WINAPI MulDiv(INT nNumber, INT nNumerator, INT nDenominator)
Definition: muldiv.c:25
& rect
Definition: startmenu.cpp:1413
#define max(a, b)
Definition: svc.c:63
#define SCROLL_MIN_THUMB
#define SCROLL_ARROW_THUMB_OVERLAP
Definition: uxthemep.h:247
#define SM_CXVSCROLL
Definition: winuser.h:961
int WINAPI GetSystemMetrics(_In_ int)

Referenced by SCROLL_HandleScrollEvent().

◆ SCROLL_HandleScrollEvent()

static void SCROLL_HandleScrollEvent ( PWND_DATA  pwndData,
HWND  hwnd,
INT  nBar,
UINT  msg,
POINT  pt 
)
static

Definition at line 393 of file ncscrollbar.c.

394{
395 /* Previous mouse position for timer events */
396 static POINT prevPt;
397 /* Thumb position when tracking started. */
398 static UINT trackThumbPos;
399 /* Position in the scroll-bar of the last button-down event. */
400 static INT lastClickPos;
401 /* Position in the scroll-bar of the last mouse event. */
402 static INT lastMousePos;
403
404 enum SCROLL_HITTEST hittest;
405 HWND hwndOwner, hwndCtl;
406 BOOL vertical;
407 SCROLLINFO si;
408 SCROLLBARINFO sbi;
410
411 si.cbSize = sizeof(si);
412 sbi.cbSize = sizeof(sbi);
413 si.fMask = SIF_ALL;
414 GetScrollInfo(hwnd, nBar, &si);
416 vertical = SCROLL_IsVertical(hwnd, nBar);
419 {
420 return;
421 }
422
423 if ((pwndData->SCROLL_trackHitTest == SCROLL_NOWHERE) && (msg != WM_LBUTTONDOWN))
424 return;
425
427
428 /* The scrollbar rect is in screen coordinates */
429 OffsetRect(&sbi.rcScrollBar, -context.wi.rcWindow.left, -context.wi.rcWindow.top);
430
431 hwndOwner = (nBar == SB_CTL) ? GetParent(hwnd) : hwnd;
432 hwndCtl = (nBar == SB_CTL) ? hwnd : 0;
433
434 switch(msg)
435 {
436 case WM_LBUTTONDOWN: /* Initialise mouse tracking */
437 HideCaret(hwnd); /* hide caret while holding down LBUTTON */
438 pwndData->SCROLL_trackVertical = vertical;
439 pwndData->SCROLL_trackHitTest = hittest = SCROLL_HitTest( hwnd, &sbi, vertical, pt, FALSE );
440 lastClickPos = vertical ? (pt.y - sbi.rcScrollBar.top) : (pt.x - sbi.rcScrollBar.left);
441 lastMousePos = lastClickPos;
442 trackThumbPos = sbi.xyThumbTop;
443 prevPt = pt;
444 SetCapture( hwnd );
445 break;
446
447 case WM_MOUSEMOVE:
448 hittest = SCROLL_HitTest( hwnd, &sbi, vertical, pt, TRUE );
449 prevPt = pt;
450 break;
451
452 case WM_LBUTTONUP:
453 hittest = SCROLL_NOWHERE;
455 /* if scrollbar has focus, show back caret */
456 if (hwnd==GetFocus())
458 break;
459
460 case WM_SYSTIMER:
461 pt = prevPt;
462 hittest = SCROLL_HitTest( hwnd, &sbi, vertical, pt, FALSE );
463 break;
464
465 default:
466 return; /* Should never happen */
467 }
468
469 //TRACE("Event: hwnd=%p bar=%d msg=%s pt=%d,%d hit=%d\n",
470 // hwnd, nBar, SPY_GetMsgName(msg,hwnd), pt.x, pt.y, hittest );
471
472 switch(pwndData->SCROLL_trackHitTest)
473 {
474 case SCROLL_NOWHERE: /* No tracking in progress */
475 break;
476
477 case SCROLL_TOP_ARROW:
478 if (hittest == pwndData->SCROLL_trackHitTest)
479 {
480 SCROLL_DrawArrows( &context, &sbi, vertical, pwndData->SCROLL_trackHitTest, 0 );
481 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
482 {
483 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
484 SB_LINEUP, (LPARAM)hwndCtl );
485 }
486
489 }
490 else
491 {
492 SCROLL_DrawArrows( &context, &sbi, vertical, 0, 0 );
494 }
495
496 break;
497
498 case SCROLL_TOP_RECT:
499 SCROLL_DrawInterior( &context, &sbi, sbi.xyThumbTop, vertical, pwndData->SCROLL_trackHitTest, 0);
500 if (hittest == pwndData->SCROLL_trackHitTest)
501 {
502 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
503 {
504 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
505 SB_PAGEUP, (LPARAM)hwndCtl );
506 }
509 }
511 break;
512
513 case SCROLL_THUMB:
514 if (msg == WM_LBUTTONDOWN)
515 {
516 pwndData->SCROLL_TrackingWin = hwnd;
517 pwndData->SCROLL_TrackingBar = nBar;
518 pwndData->SCROLL_TrackingPos = trackThumbPos + lastMousePos - lastClickPos;
519 pwndData->SCROLL_TrackingVal = SCROLL_GetThumbVal( &si, &sbi.rcScrollBar,
520 vertical, pwndData->SCROLL_TrackingPos );
521 if (!pwndData->SCROLL_MovingThumb)
522 SCROLL_DrawMovingThumb(pwndData, &context, &sbi, vertical);
523 }
524 else if (msg == WM_LBUTTONUP)
525 {
526 if (pwndData->SCROLL_MovingThumb)
527 SCROLL_DrawMovingThumb(pwndData, &context, &sbi, vertical);
528
529 SCROLL_DrawInterior( &context, &sbi, sbi.xyThumbTop, vertical, 0, pwndData->SCROLL_trackHitTest );
530 }
531 else /* WM_MOUSEMOVE */
532 {
533 INT pos;
534
535 if (!SCROLL_PtInRectEx( &sbi.rcScrollBar, pt, vertical ))
536 pos = lastClickPos;
537 else
538 {
539 pt = SCROLL_ClipPos( &sbi.rcScrollBar, pt );
540 pos = vertical ? (pt.y - sbi.rcScrollBar.top) : (pt.x - sbi.rcScrollBar.left);
541 }
542 if ( (pos != lastMousePos) || (!pwndData->SCROLL_MovingThumb) )
543 {
544 if (pwndData->SCROLL_MovingThumb)
545 SCROLL_DrawMovingThumb(pwndData, &context, &sbi, vertical);
546 lastMousePos = pos;
547 pwndData->SCROLL_TrackingPos = trackThumbPos + pos - lastClickPos;
549 vertical,
550 pwndData->SCROLL_TrackingPos );
551 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
553 (LPARAM)hwndCtl );
554 if (!pwndData->SCROLL_MovingThumb)
555 SCROLL_DrawMovingThumb(pwndData, &context, &sbi, vertical);
556 }
557 }
558 break;
559
561 if (hittest == pwndData->SCROLL_trackHitTest)
562 {
563 SCROLL_DrawInterior( &context, &sbi, sbi.xyThumbTop, vertical, pwndData->SCROLL_trackHitTest, 0 );
564 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
565 {
566 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
567 SB_PAGEDOWN, (LPARAM)hwndCtl );
568 }
571 }
572 else
573 {
574 SCROLL_DrawInterior( &context, &sbi, sbi.xyThumbTop, vertical, 0, 0 );
576 }
577 break;
578
580 if (hittest == pwndData->SCROLL_trackHitTest)
581 {
582 SCROLL_DrawArrows( &context, &sbi, vertical, pwndData->SCROLL_trackHitTest, 0 );
583 if ((msg == WM_LBUTTONDOWN) || (msg == WM_SYSTIMER))
584 {
585 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
586 SB_LINEDOWN, (LPARAM)hwndCtl );
587 }
588
591 }
592 else
593 {
594 SCROLL_DrawArrows( &context, &sbi, vertical, 0, 0 );
596 }
597 break;
598 }
599
600 if (msg == WM_LBUTTONDOWN)
601 {
602
603 if (hittest == SCROLL_THUMB)
604 {
605 UINT val = SCROLL_GetThumbVal( &si, &sbi.rcScrollBar, vertical,
606 trackThumbPos + lastMousePos - lastClickPos );
607 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
608 MAKEWPARAM( SB_THUMBTRACK, val ), (LPARAM)hwndCtl );
609 }
610 }
611
612 if (msg == WM_LBUTTONUP)
613 {
614 hittest = pwndData->SCROLL_trackHitTest;
615 pwndData->SCROLL_trackHitTest = SCROLL_NOWHERE; /* Terminate tracking */
616
617 if (hittest == SCROLL_THUMB)
618 {
619 UINT val = SCROLL_GetThumbVal( &si, &sbi.rcScrollBar, vertical,
620 trackThumbPos + lastMousePos - lastClickPos );
621 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
622 MAKEWPARAM( SB_THUMBPOSITION, val ), (LPARAM)hwndCtl );
623 }
624 /* SB_ENDSCROLL doesn't report thumb position */
625 SendMessageW( hwndOwner, vertical ? WM_VSCROLL : WM_HSCROLL,
626 SB_ENDSCROLL, (LPARAM)hwndCtl );
627
628 /* Terminate tracking */
629 pwndData->SCROLL_TrackingWin = 0;
630 }
631
633}
#define msg(x)
Definition: auth_time.c:54
#define WM_SYSTIMER
Definition: comctl32.h:119
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
void ThemeCleanupDrawContext(PDRAW_CONTEXT pcontext)
Definition: nonclient.c:182
void ThemeInitDrawContext(PDRAW_CONTEXT pcontext, HWND hWnd, HRGN hRgn)
Definition: nonclient.c:158
unsigned int BOOL
Definition: ntddk_ex.h:94
GLuint GLfloat * val
Definition: glext.h:7180
static BOOL SCROLL_PtInRectEx(LPRECT lpRect, POINT pt, BOOL vertical)
Definition: ncscrollbar.c:55
LONG SCROLL_getObjectId(INT nBar)
Definition: ncscrollbar.c:38
static void SCROLL_DrawMovingThumb(PWND_DATA pwndData, PDRAW_CONTEXT pcontext, SCROLLBARINFO *psbi, BOOL vertical)
Definition: ncscrollbar.c:252
static UINT SCROLL_GetThumbVal(SCROLLINFO *psi, RECT *rect, BOOL vertical, INT pos)
Definition: ncscrollbar.c:362
static enum SCROLL_HITTEST SCROLL_HitTest(HWND hwnd, SCROLLBARINFO *psbi, BOOL vertical, POINT pt, BOOL bDragging)
Definition: ncscrollbar.c:87
static void SCROLL_DrawArrows(PDRAW_CONTEXT pcontext, SCROLLBARINFO *psbi, BOOL vertical, int htDown, int htHot)
Definition: ncscrollbar.c:147
static POINT SCROLL_ClipPos(LPRECT lpRect, POINT pt)
Definition: ncscrollbar.c:337
static BOOL SCROLL_IsVertical(HWND hwnd, INT nBar)
Definition: ncscrollbar.c:24
unsigned int UINT
Definition: ndis.h:50
#define SCROLL_NOWHERE
Definition: scrollbar.c:13
INT SCROLL_TrackingBar
Definition: uxthemep.h:183
enum SCROLL_HITTEST SCROLL_trackHitTest
Definition: uxthemep.h:180
INT SCROLL_TrackingVal
Definition: uxthemep.h:185
BOOL SCROLL_trackVertical
Definition: uxthemep.h:179
HWND SCROLL_TrackingWin
Definition: uxthemep.h:182
Definition: http.c:7252
DWORD rgstate[CCHILDREN_SCROLLBAR+1]
Definition: winuser.h:3754
SCROLL_HITTEST
#define SCROLL_REPEAT_DELAY
Definition: uxthemep.h:253
#define SCROLL_TIMER
Definition: uxthemep.h:244
#define SCROLL_FIRST_DELAY
Definition: uxthemep.h:250
LONG_PTR LPARAM
Definition: windef.h:208
HWND WINAPI GetFocus(void)
Definition: window.c:1893
HWND WINAPI SetCapture(_In_ HWND hWnd)
#define MAKEWPARAM(l, h)
Definition: winuser.h:4009
#define SB_THUMBTRACK
Definition: winuser.h:573
BOOL WINAPI ShowCaret(_In_opt_ HWND)
#define SB_LINEUP
Definition: winuser.h:564
#define WM_HSCROLL
Definition: winuser.h:1743
BOOL WINAPI ReleaseCapture(void)
Definition: message.c:2890
#define WM_VSCROLL
Definition: winuser.h:1744
#define WM_MOUSEMOVE
Definition: winuser.h:1775
#define WM_LBUTTONDOWN
Definition: winuser.h:1776
UINT_PTR WINAPI SetSystemTimer(HWND, UINT_PTR, UINT, TIMERPROC)
Definition: ntwrapper.h:106
BOOL WINAPI KillSystemTimer(HWND, UINT_PTR)
Definition: timer.c:35
#define SB_PAGEDOWN
Definition: winuser.h:569
#define SIF_ALL
Definition: winuser.h:1232
#define SB_LINEDOWN
Definition: winuser.h:565
#define WM_LBUTTONUP
Definition: winuser.h:1777
#define STATE_SYSTEM_UNAVAILABLE
Definition: winuser.h:2862
HWND WINAPI GetParent(_In_ HWND)
#define SB_CTL
Definition: winuser.h:554
#define SB_ENDSCROLL
Definition: winuser.h:574
BOOL WINAPI OffsetRect(_Inout_ LPRECT, _In_ int, _In_ int)
BOOL WINAPI GetScrollInfo(_In_ HWND, _In_ int, _Inout_ LPSCROLLINFO)
BOOL WINAPI HideCaret(_In_opt_ HWND)
BOOL WINAPI GetScrollBarInfo(_In_ HWND, _In_ LONG, _Inout_ PSCROLLBARINFO)
#define SB_PAGEUP
Definition: winuser.h:568
LRESULT WINAPI SendMessageW(_In_ HWND, _In_ UINT, _In_ WPARAM, _In_ LPARAM)
#define SB_THUMBPOSITION
Definition: winuser.h:572

Referenced by SCROLL_TrackScrollBar().

◆ SCROLL_HitTest()

static enum SCROLL_HITTEST SCROLL_HitTest ( HWND  hwnd,
SCROLLBARINFO psbi,
BOOL  vertical,
POINT  pt,
BOOL  bDragging 
)
static

Definition at line 87 of file ncscrollbar.c.

89{
90 if ( (bDragging && !SCROLL_PtInRectEx( &psbi->rcScrollBar, pt, vertical )) ||
91 (!PtInRect( &psbi->rcScrollBar, pt )) )
92 {
93 return SCROLL_NOWHERE;
94 }
95
96 if (vertical)
97 {
98 if (pt.y < psbi->rcScrollBar.top + psbi->dxyLineButton)
99 return SCROLL_TOP_ARROW;
100 if (pt.y >= psbi->rcScrollBar.bottom - psbi->dxyLineButton)
101 return SCROLL_BOTTOM_ARROW;
102 if (!psbi->xyThumbTop)
103 return SCROLL_TOP_RECT;
104 pt.y -= psbi->rcScrollBar.top;
105 if (pt.y < psbi->xyThumbTop)
106 return SCROLL_TOP_RECT;
107 if (pt.y >= psbi->xyThumbBottom)
108 return SCROLL_BOTTOM_RECT;
109 }
110 else /* horizontal */
111 {
112 if (pt.x < psbi->rcScrollBar.left + psbi->dxyLineButton)
113 return SCROLL_TOP_ARROW;
114 if (pt.x >= psbi->rcScrollBar.right - psbi->dxyLineButton)
115 return SCROLL_BOTTOM_ARROW;
116 if (!psbi->xyThumbTop)
117 return SCROLL_TOP_RECT;
118 pt.x -= psbi->rcScrollBar.left;
119 if (pt.x < psbi->xyThumbTop)
120 return SCROLL_TOP_RECT;
121 if (pt.x >= psbi->xyThumbBottom)
122 return SCROLL_BOTTOM_RECT;
123 }
124 return SCROLL_THUMB;
125}
BOOL WINAPI PtInRect(_In_ LPCRECT, _In_ POINT)

Referenced by SCROLL_HandleScrollEvent(), and ThemeDrawScrollBarEx().

◆ SCROLL_IsVertical()

static BOOL SCROLL_IsVertical ( HWND  hwnd,
INT  nBar 
)
static

Definition at line 24 of file ncscrollbar.c.

25{
26 switch(nBar)
27 {
28 case SB_HORZ:
29 return FALSE;
30 case SB_VERT:
31 return TRUE;
32 default:
34 return FALSE;
35 }
36}

Referenced by SCROLL_HandleScrollEvent(), and ThemeDrawScrollBarEx().

◆ SCROLL_PtInRectEx()

static BOOL SCROLL_PtInRectEx ( LPRECT  lpRect,
POINT  pt,
BOOL  vertical 
)
static

Definition at line 55 of file ncscrollbar.c.

56{
57 RECT rect = *lpRect;
58 int scrollbarWidth;
59
60 /* Pad hit rect to allow mouse to be dragged outside of scrollbar and
61 * still be considered in the scrollbar. */
62 if (vertical)
63 {
64 scrollbarWidth = lpRect->right - lpRect->left;
65 rect.left -= scrollbarWidth*8;
66 rect.right += scrollbarWidth*8;
67 rect.top -= scrollbarWidth*2;
68 rect.bottom += scrollbarWidth*2;
69 }
70 else
71 {
72 scrollbarWidth = lpRect->bottom - lpRect->top;
73 rect.left -= scrollbarWidth*2;
74 rect.right += scrollbarWidth*2;
75 rect.top -= scrollbarWidth*8;
76 rect.bottom += scrollbarWidth*8;
77 }
78 return PtInRect( &rect, pt );
79}

Referenced by SCROLL_HandleScrollEvent(), and SCROLL_HitTest().

◆ SCROLL_ThemeDrawPart()

static void SCROLL_ThemeDrawPart ( PDRAW_CONTEXT  pcontext,
int  iPartId,
int  iStateId,
SCROLLBARINFO psbi,
int  htCurrent,
int  htDown,
int  htHot,
RECT r 
)
static

Definition at line 127 of file ncscrollbar.c.

128{
129 if (r->right <= r->left || r->bottom <= r->top)
130 return;
131
132 if(psbi->rgstate[htCurrent] & STATE_SYSTEM_UNAVAILABLE)
133 iStateId += BUTTON_DISABLED - BUTTON_NORMAL;
134 else if (htHot == htCurrent)
135 iStateId += BUTTON_HOT - BUTTON_NORMAL;
136 else if (htDown == htCurrent)
137 iStateId += BUTTON_PRESSED - BUTTON_NORMAL;
138
139 DrawThemeBackground(pcontext->scrolltheme, pcontext->hDC, iPartId, iStateId, r, NULL);
140}
HRESULT WINAPI DrawThemeBackground(HTHEME hTheme, HDC hdc, int iPartId, int iStateId, const RECT *pRect, const RECT *pClipRect)
Definition: draw.c:128
HTHEME scrolltheme
Definition: uxthemep.h:194
@ BUTTON_DISABLED
Definition: uxthemep.h:223
@ BUTTON_HOT
Definition: uxthemep.h:221
@ BUTTON_PRESSED
Definition: uxthemep.h:222

Referenced by SCROLL_DrawArrows(), and SCROLL_DrawInterior().

◆ SCROLL_TrackScrollBar()

static void SCROLL_TrackScrollBar ( HWND  hwnd,
INT  scrollbar,
POINT  pt 
)
static

Definition at line 636 of file ncscrollbar.c.

637{
638 MSG msg;
639 PWND_DATA pwndData = ThemeGetWndData(hwnd);
640 if(!pwndData)
641 return;
642
644
645 SCROLL_HandleScrollEvent(pwndData, hwnd, scrollbar, WM_LBUTTONDOWN, pt );
646
647 do
648 {
649 if (!GetMessageW( &msg, 0, 0, 0 )) break;
650 if (CallMsgFilterW( &msg, MSGF_SCROLLBAR )) continue;
651 if (msg.message == WM_LBUTTONUP ||
652 msg.message == WM_MOUSEMOVE ||
653 (msg.message == WM_SYSTIMER && msg.wParam == SCROLL_TIMER))
654 {
655 pt.x = GET_X_LPARAM(msg.lParam);
656 pt.y = GET_Y_LPARAM(msg.lParam);
659 SCROLL_HandleScrollEvent(pwndData, hwnd, scrollbar, msg.message, pt );
660 }
661 else
662 {
665 }
666 if (!IsWindow( hwnd ))
667 {
669 break;
670 }
671 } while (msg.message != WM_LBUTTONUP && GetCapture() == hwnd);
672}
static void SCROLL_HandleScrollEvent(PWND_DATA pwndData, HWND hwnd, INT nBar, UINT msg, POINT pt)
Definition: ncscrollbar.c:393
static void ScreenToWindow(HWND hWnd, POINT *pt)
Definition: ncscrollbar.c:16
PWND_DATA ThemeGetWndData(HWND hWnd)
Definition: themehooks.c:17
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
#define GET_Y_LPARAM(lp)
Definition: windowsx.h:300
#define GET_X_LPARAM(lp)
Definition: windowsx.h:299
BOOL WINAPI IsWindow(_In_opt_ HWND)
#define MSGF_SCROLLBAR
Definition: winuser.h:1178
BOOL WINAPI TranslateMessage(_In_ const MSG *)
BOOL WINAPI GetMessageW(_Out_ LPMSG, _In_opt_ HWND, _In_ UINT, _In_ UINT)
HWND WINAPI GetCapture(void)
Definition: message.c:2881
BOOL WINAPI CallMsgFilterW(_In_ LPMSG, _In_ INT)
BOOL WINAPI ClientToScreen(_In_ HWND, _Inout_ LPPOINT)
LRESULT WINAPI DispatchMessageW(_In_ const MSG *)

Referenced by NC_TrackScrollBar().

◆ ThemeDrawScrollBar()

void ThemeDrawScrollBar ( PDRAW_CONTEXT  pcontext,
INT  nBar,
POINT pt 
)

Definition at line 318 of file ncscrollbar.c.

319{
320 SCROLLBARINFO sbi;
321
322 if (((nBar == SB_VERT) && !(pcontext->wi.dwStyle & WS_VSCROLL)) ||
323 ((nBar == SB_HORZ) && !(pcontext->wi.dwStyle & WS_HSCROLL)))
324 {
325 return;
326 }
327
328 sbi.cbSize = sizeof(sbi);
329 GetScrollBarInfo(pcontext->hWnd, SCROLL_getObjectId(nBar), &sbi);
330 ThemeDrawScrollBarEx(pcontext, nBar, &sbi, pt);
331}
void ThemeDrawScrollBarEx(PDRAW_CONTEXT pcontext, INT nBar, PSCROLLBARINFO psbi, POINT *pt)
Definition: ncscrollbar.c:276
#define WS_VSCROLL
Definition: pedump.c:627
#define WS_HSCROLL
Definition: pedump.c:628
DWORD dwStyle
Definition: winuser.h:3769

Referenced by ThemeHandleNcMouseLeave(), ThemeHandleNcMouseMove(), and ThemePaintWindow().

◆ ThemeDrawScrollBarEx()

void ThemeDrawScrollBarEx ( PDRAW_CONTEXT  pcontext,
INT  nBar,
PSCROLLBARINFO  psbi,
POINT pt 
)

Definition at line 276 of file ncscrollbar.c.

277{
278 SCROLLINFO si;
279 BOOL vertical;
280 enum SCROLL_HITTEST htHot = SCROLL_NOWHERE;
281 PWND_DATA pwndData;
282
283 if (!(pwndData = ThemeGetWndData(pcontext->hWnd)))
284 return;
285
286 if (pwndData->SCROLL_TrackingWin)
287 return;
288
289 /* Retrieve scrollbar info */
290 si.cbSize = sizeof(si);
291 si.fMask = SIF_ALL ;
292 GetScrollInfo(pcontext->hWnd, nBar, &si);
293 vertical = SCROLL_IsVertical(pcontext->hWnd, nBar);
296 {
297 psbi->xyThumbTop = 0;
298 }
299
300 /* The scrollbar rect is in screen coordinates */
301 OffsetRect(&psbi->rcScrollBar, -pcontext->wi.rcWindow.left, -pcontext->wi.rcWindow.top);
302
303 if(pt)
304 {
305 ScreenToWindow(pcontext->hWnd, pt);
306 htHot = SCROLL_HitTest(pcontext->hWnd, psbi, vertical, *pt, FALSE);
307 }
308
309 /* do not draw if the scrollbar rectangle is empty */
310 if(IsRectEmpty(&psbi->rcScrollBar)) return;
311
312 /* Draw the scrollbar */
313 SCROLL_DrawArrows( pcontext, psbi, vertical, 0, htHot );
314 SCROLL_DrawInterior( pcontext, psbi, psbi->xyThumbTop, vertical, 0, htHot );
315}
BOOL WINAPI IsRectEmpty(_In_ LPCRECT)

Referenced by DrawWindowForNCPreview(), and ThemeDrawScrollBar().