updown.c 37.7 KB
Newer Older
1
/*
Alexandre Julliard's avatar
Alexandre Julliard committed
2 3
 * Updown control
 *
4
 * Copyright 1997, 2002 Dimitrie O. Paun
Alexandre Julliard's avatar
Alexandre Julliard committed
5
 *
6 7 8 9 10 11 12 13 14 15 16 17
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19
 *
20 21 22 23 24 25 26 27 28
 * NOTE
 * 
 * This code was audited for completeness against the documented features
 * of Comctl32.dll version 6.0 on Sep. 9, 2002, by Dimitrie O. Paun.
 * 
 * Unless otherwise noted, we believe this code to be complete, as per
 * the specification mentioned above.
 * If you discover missing features, or bugs, please note them below.
 * 
Alexandre Julliard's avatar
Alexandre Julliard committed
29 30 31
 */

#include <stdlib.h>
32
#include <string.h>
33
#include <stdarg.h>
34
#include <stdio.h>
35

36
#include "windef.h"
37
#include "winbase.h"
38
#include "wingdi.h"
39
#include "winuser.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
40
#include "winnls.h"
41
#include "commctrl.h"
42
#include "comctl32.h"
43 44
#include "uxtheme.h"
#include "tmschema.h"
45
#include "wine/unicode.h"
46
#include "wine/debug.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
47

48
WINE_DEFAULT_DEBUG_CHANNEL(updown);
49

50 51
typedef struct
{
52
    HWND      Self;            /* Handle to this up-down control */
53
    HWND      Notify;          /* Handle to the parent window */
54
    DWORD     dwStyle;         /* The GWL_STYLE for this window */
55 56 57 58 59 60 61 62
    UINT      AccelCount;      /* Number of elements in AccelVect */
    UDACCEL*  AccelVect;       /* Vector containing AccelCount elements */
    INT       AccelIndex;      /* Current accel index, -1 if not accel'ing */
    INT       Base;            /* Base to display nr in the buddy window */
    INT       CurVal;          /* Current up-down value */
    INT       MinVal;          /* Minimum up-down value */
    INT       MaxVal;          /* Maximum up-down value */
    HWND      Buddy;           /* Handle to the buddy window */
63
    INT       BuddyType;       /* Remembers the buddy type BUDDY_TYPE_* */
64
    INT       Flags;           /* Internal Flags FLAG_* */
65
    BOOL      UnicodeFormat;   /* Marks the use of Unicode internally */
66 67
} UPDOWN_INFO;

Alexandre Julliard's avatar
Alexandre Julliard committed
68 69
/* Control configuration constants */

70 71 72
#define INITIAL_DELAY	500    /* initial timer until auto-inc kicks in */
#define AUTOPRESS_DELAY	250    /* time to keep arrow pressed on KEY_DOWN */
#define REPEAT_DELAY	50     /* delay between auto-increments */
Alexandre Julliard's avatar
Alexandre Julliard committed
73

74
#define DEFAULT_WIDTH	    16 /* default width of the ctrl */
75 76 77 78 79
#define DEFAULT_XSEP         0 /* default separation between buddy and ctrl */
#define DEFAULT_ADDTOP       0 /* amount to extend above the buddy window */
#define DEFAULT_ADDBOT       0 /* amount to extend below the buddy window */
#define DEFAULT_BUDDYBORDER  2 /* Width/height of the buddy border */
#define DEFAULT_BUDDYSPACER  2 /* Spacer between the buddy and the ctrl */
80 81
#define DEFAULT_BUDDYBORDER_THEMED  1 /* buddy border when theming is enabled */
#define DEFAULT_BUDDYSPACER_THEMED  0 /* buddy spacer when theming is enabled */
Alexandre Julliard's avatar
Alexandre Julliard committed
82 83 84

/* Work constants */

85 86 87 88
#define FLAG_INCR	0x01
#define FLAG_DECR	0x02
#define FLAG_MOUSEIN	0x04
#define FLAG_PRESSED	0x08
89
#define FLAG_BUDDYINT	0x10 /* UDS_SETBUDDYINT was set on creation */
90
#define FLAG_ARROW	(FLAG_INCR | FLAG_DECR)
Alexandre Julliard's avatar
Alexandre Julliard committed
91

92 93 94 95
#define BUDDY_TYPE_UNKNOWN 0
#define BUDDY_TYPE_LISTBOX 1
#define BUDDY_TYPE_EDIT    2

96 97 98 99
#define TIMER_AUTOREPEAT   1
#define TIMER_ACCEL        2
#define TIMER_AUTOPRESS    3

100
#define UPDOWN_GetInfoPtr(hwnd) ((UPDOWN_INFO *)GetWindowLongPtrW (hwnd,0))
101
#define COUNT_OF(a) (sizeof(a)/sizeof(a[0]))
Alexandre Julliard's avatar
Alexandre Julliard committed
102

103 104 105
/* id used for SetWindowSubclass */
#define BUDDY_SUBCLASSID   1

106
static void UPDOWN_DoAction (UPDOWN_INFO *infoPtr, int delta, int action);
Alexandre Julliard's avatar
Alexandre Julliard committed
107

108 109 110 111
/***********************************************************************
 *           UPDOWN_IsBuddyEdit
 * Tests if our buddy is an edit control.
 */
112
static inline BOOL UPDOWN_IsBuddyEdit(const UPDOWN_INFO *infoPtr)
113 114 115 116 117 118 119 120
{
    return infoPtr->BuddyType == BUDDY_TYPE_EDIT;
}

/***********************************************************************
 *           UPDOWN_IsBuddyListbox
 * Tests if our buddy is a listbox control.
 */
121
static inline BOOL UPDOWN_IsBuddyListbox(const UPDOWN_INFO *infoPtr)
122 123 124 125
{
    return infoPtr->BuddyType == BUDDY_TYPE_LISTBOX;
}

Alexandre Julliard's avatar
Alexandre Julliard committed
126 127 128 129
/***********************************************************************
 *           UPDOWN_InBounds
 * Tests if a given value 'val' is between the Min&Max limits
 */
130
static BOOL UPDOWN_InBounds(const UPDOWN_INFO *infoPtr, int val)
Alexandre Julliard's avatar
Alexandre Julliard committed
131
{
132 133 134 135
    if(infoPtr->MaxVal > infoPtr->MinVal)
        return (infoPtr->MinVal <= val) && (val <= infoPtr->MaxVal);
    else
        return (infoPtr->MaxVal <= val) && (val <= infoPtr->MinVal);
Alexandre Julliard's avatar
Alexandre Julliard committed
136 137 138 139
}

/***********************************************************************
 *           UPDOWN_OffsetVal
140
 * Change the current value by delta.
141
 * It returns TRUE is the value was changed successfully, or FALSE
142
 * if the value was not changed, as it would go out of bounds.
Alexandre Julliard's avatar
Alexandre Julliard committed
143
 */
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
144
static BOOL UPDOWN_OffsetVal(UPDOWN_INFO *infoPtr, int delta)
Alexandre Julliard's avatar
Alexandre Julliard committed
145
{
146 147
    /* check if we can do the modification first */
    if(!UPDOWN_InBounds (infoPtr, infoPtr->CurVal+delta)) {
148
        if (infoPtr->dwStyle & UDS_WRAP) {
149 150 151 152 153
            delta += (delta < 0 ? -1 : 1) *
		     (infoPtr->MaxVal < infoPtr->MinVal ? -1 : 1) *
		     (infoPtr->MinVal - infoPtr->MaxVal) +
		     (delta < 0 ? 1 : -1);
        } else return FALSE;
154
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
155

156 157
    infoPtr->CurVal += delta;
    return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
158 159
}

160
/***********************************************************************
161
 * UPDOWN_HasBuddyBorder
162 163 164 165
 *
 * When we have a buddy set and that we are aligned on our buddy, we
 * want to draw a sunken edge to make like we are part of that control.
 */
166
static BOOL UPDOWN_HasBuddyBorder(const UPDOWN_INFO *infoPtr)
167
{
168
    return  ( ((infoPtr->dwStyle & (UDS_ALIGNLEFT | UDS_ALIGNRIGHT)) != 0) &&
169
	      UPDOWN_IsBuddyEdit(infoPtr) );
170 171
}

Alexandre Julliard's avatar
Alexandre Julliard committed
172
/***********************************************************************
Alexandre Julliard's avatar
Alexandre Julliard committed
173
 *           UPDOWN_GetArrowRect
Alexandre Julliard's avatar
Alexandre Julliard committed
174 175
 * wndPtr   - pointer to the up-down wnd
 * rect     - will hold the rectangle
176 177
 * arrow    - FLAG_INCR to get the "increment" rect (up or right)
 *            FLAG_DECR to get the "decrement" rect (down or left)
178
 *            If both flags are present, the envelope is returned.
Alexandre Julliard's avatar
Alexandre Julliard committed
179
 */
180
static void UPDOWN_GetArrowRect (const UPDOWN_INFO* infoPtr, RECT *rect, int arrow)
Alexandre Julliard's avatar
Alexandre Julliard committed
181
{
182 183 184
    HTHEME theme = GetWindowTheme (infoPtr->Self);
    const int border = theme ? DEFAULT_BUDDYBORDER_THEMED : DEFAULT_BUDDYBORDER;
    const int spacer = theme ? DEFAULT_BUDDYSPACER_THEMED : DEFAULT_BUDDYSPACER;
185 186 187 188 189 190 191
    GetClientRect (infoPtr->Self, rect);

    /*
     * Make sure we calculate the rectangle to fit even if we draw the
     * border.
     */
    if (UPDOWN_HasBuddyBorder(infoPtr)) {
192
        if (infoPtr->dwStyle & UDS_ALIGNLEFT)
193
            rect->left += border;
194
        else
195
            rect->right -= border;
196

197
        InflateRect(rect, 0, -border);
198 199
    }

200
    /* now figure out if we need a space away from the buddy */
201 202
    if (IsWindow(infoPtr->Buddy) ) {
	if (infoPtr->dwStyle & UDS_ALIGNLEFT) rect->right -= spacer;
203
	else if (infoPtr->dwStyle & UDS_ALIGNRIGHT) rect->left += spacer;
204
    }
205

206 207 208 209 210
    /*
     * We're calculating the midpoint to figure-out where the
     * separation between the buttons will lay. We make sure that we
     * round the uneven numbers by adding 1.
     */
211
    if (infoPtr->dwStyle & UDS_HORZ) {
212 213
        int len = rect->right - rect->left + 1; /* compute the width */
        if (arrow & FLAG_INCR)
214
            rect->left = rect->left + len/2;
215
        if (arrow & FLAG_DECR)
216
            rect->right =  rect->left + len/2 - (theme ? 0 : 1);
217
    } else {
218 219
        int len = rect->bottom - rect->top + 1; /* compute the height */
        if (arrow & FLAG_INCR)
220
            rect->bottom =  rect->top + len/2 - (theme ? 0 : 1);
221
        if (arrow & FLAG_DECR)
222 223
            rect->top =  rect->top + len/2;
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
224 225 226 227 228
}

/***********************************************************************
 *           UPDOWN_GetArrowFromPoint
 * Returns the rectagle (for the up or down arrow) that contains pt.
229 230
 * If it returns the up rect, it returns FLAG_INCR.
 * If it returns the down rect, it returns FLAG_DECR.
Alexandre Julliard's avatar
Alexandre Julliard committed
231
 */
232
static INT UPDOWN_GetArrowFromPoint (const UPDOWN_INFO *infoPtr, RECT *rect, POINT pt)
Alexandre Julliard's avatar
Alexandre Julliard committed
233
{
234 235 236 237 238
    UPDOWN_GetArrowRect (infoPtr, rect, FLAG_INCR);
    if(PtInRect(rect, pt)) return FLAG_INCR;

    UPDOWN_GetArrowRect (infoPtr, rect, FLAG_DECR);
    if(PtInRect(rect, pt)) return FLAG_DECR;
Alexandre Julliard's avatar
Alexandre Julliard committed
239

240
    return 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
241 242 243 244 245 246 247
}


/***********************************************************************
 *           UPDOWN_GetThousandSep
 * Returns the thousand sep. If an error occurs, it returns ','.
 */
248
static WCHAR UPDOWN_GetThousandSep(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
249
{
250
    WCHAR sep[2];
Alexandre Julliard's avatar
Alexandre Julliard committed
251

252 253
    if(GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_STHOUSAND, sep, 2) != 1)
        sep[0] = ',';
Alexandre Julliard's avatar
Alexandre Julliard committed
254

255
    return sep[0];
Alexandre Julliard's avatar
Alexandre Julliard committed
256 257 258 259 260 261 262 263
}

/***********************************************************************
 *           UPDOWN_GetBuddyInt
 * Tries to read the pos from the buddy window and if it succeeds,
 * it stores it in the control's CurVal
 * returns:
 *   TRUE  - if it read the integer from the buddy successfully
Andreas Mohr's avatar
Andreas Mohr committed
264
 *   FALSE - if an error occurred
Alexandre Julliard's avatar
Alexandre Julliard committed
265
 */
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
266
static BOOL UPDOWN_GetBuddyInt (UPDOWN_INFO *infoPtr)
Alexandre Julliard's avatar
Alexandre Julliard committed
267
{
268 269
    WCHAR txt[20], sep, *src, *dst;
    int newVal;
Alexandre Julliard's avatar
Alexandre Julliard committed
270

271
    if (!((infoPtr->Flags & FLAG_BUDDYINT) && IsWindow(infoPtr->Buddy)))
272
        return FALSE;
Alexandre Julliard's avatar
Alexandre Julliard committed
273

274 275 276 277 278 279
    /*if the buddy is a list window, we must set curr index */
    if (UPDOWN_IsBuddyListbox(infoPtr)) {
        newVal = SendMessageW(infoPtr->Buddy, LB_GETCARETINDEX, 0, 0);
        if(newVal < 0) return FALSE;
    } else {
        /* we have a regular window, so will get the text */
280 281 282 283
        /* note that a zero-length string is a legitimate value for 'txt',
         * and ought to result in a successful conversion to '0'. */
        if (GetWindowTextW(infoPtr->Buddy, txt, COUNT_OF(txt)) < 0)
            return FALSE;
Alexandre Julliard's avatar
Alexandre Julliard committed
284

285
        sep = UPDOWN_GetThousandSep();
286 287 288 289 290 291 292

        /* now get rid of the separators */
        for(src = dst = txt; *src; src++)
            if(*src != sep) *dst++ = *src;
        *dst = 0;

        /* try to convert the number and validate it */
293
        newVal = strtolW(txt, &src, infoPtr->Base);
294 295
        if(*src || !UPDOWN_InBounds (infoPtr, newVal)) return FALSE;
    }
296

297 298 299
    TRACE("new value(%d) from buddy (old=%d)\n", newVal, infoPtr->CurVal);
    infoPtr->CurVal = newVal;
    return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
300 301 302 303 304 305 306 307
}


/***********************************************************************
 *           UPDOWN_SetBuddyInt
 * Tries to set the pos to the buddy window based on current pos
 * returns:
 *   TRUE  - if it set the caption of the  buddy successfully
Andreas Mohr's avatar
Andreas Mohr committed
308
 *   FALSE - if an error occurred
Alexandre Julliard's avatar
Alexandre Julliard committed
309
 */
310
static BOOL UPDOWN_SetBuddyInt (const UPDOWN_INFO *infoPtr)
Alexandre Julliard's avatar
Alexandre Julliard committed
311
{
312 313 314
    static const WCHAR fmt_hex[] = { '0', 'x', '%', '0', '4', 'X', 0 };
    static const WCHAR fmt_dec_oct[] = { '%', 'd', '\0' };
    const WCHAR *fmt;
315
    WCHAR txt[20], txt_old[20] = { 0 };
316
    int len;
Alexandre Julliard's avatar
Alexandre Julliard committed
317

318
    if (!((infoPtr->Flags & FLAG_BUDDYINT) && IsWindow(infoPtr->Buddy)))
319
        return FALSE;
Alexandre Julliard's avatar
Alexandre Julliard committed
320

321
    TRACE("set new value(%d) to buddy.\n", infoPtr->CurVal);
Alexandre Julliard's avatar
Alexandre Julliard committed
322

323 324 325 326
    /*if the buddy is a list window, we must set curr index */
    if (UPDOWN_IsBuddyListbox(infoPtr)) {
        return SendMessageW(infoPtr->Buddy, LB_SETCURSEL, infoPtr->CurVal, 0) != LB_ERR;
    }
327

328
    /* Regular window, so set caption to the number */
329
    fmt = (infoPtr->Base == 16) ? fmt_hex : fmt_dec_oct;
330
    len = wsprintfW(txt, fmt, infoPtr->CurVal);
Alexandre Julliard's avatar
Alexandre Julliard committed
331 332


Francois Gouget's avatar
Francois Gouget committed
333
    /* Do thousands separation if necessary */
334
    if ((infoPtr->Base == 10) && !(infoPtr->dwStyle & UDS_NOTHOUSANDS) && (len > 3)) {
335 336 337
        WCHAR tmp[COUNT_OF(txt)], *src = tmp, *dst = txt;
        WCHAR sep = UPDOWN_GetThousandSep();
	int start = len % 3;
338

339 340 341 342 343 344 345 346 347
	memcpy(tmp, txt, sizeof(txt));
	if (start == 0) start = 3;
	dst += start;
	src += start;
        for (len=0; *src; len++) {
	    if (len % 3 == 0) *dst++ = sep;
	    *dst++ = *src++;
        }
        *dst = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
348
    }
349

350 351 352 353
    /* if nothing changed exit earlier */
    GetWindowTextW(infoPtr->Buddy, txt_old, sizeof(txt_old)/sizeof(WCHAR));
    if (lstrcmpiW(txt_old, txt) == 0) return 0;

354
    return SetWindowTextW(infoPtr->Buddy, txt);
355
}
Alexandre Julliard's avatar
Alexandre Julliard committed
356

357 358 359 360 361
/***********************************************************************
 * UPDOWN_DrawBuddyBackground
 *
 * Draw buddy background for visual integration.
 */
362
static BOOL UPDOWN_DrawBuddyBackground (const UPDOWN_INFO *infoPtr, HDC hdc)
363 364 365 366 367 368 369 370 371 372 373 374
{
    RECT br;
    HTHEME buddyTheme = GetWindowTheme (infoPtr->Buddy);
    if (!buddyTheme) return FALSE;

    GetClientRect (infoPtr->Buddy, &br);
    MapWindowPoints (infoPtr->Buddy, infoPtr->Self, (POINT*)&br, 2);
    /* FIXME: take disabled etc. into account */
    DrawThemeBackground (buddyTheme, hdc, 0, 0, &br, NULL);
    return TRUE;
}

Alexandre Julliard's avatar
Alexandre Julliard committed
375
/***********************************************************************
376
 * UPDOWN_Draw
Alexandre Julliard's avatar
Alexandre Julliard committed
377
 *
Alexandre Julliard's avatar
Alexandre Julliard committed
378 379
 * Draw the arrows. The background need not be erased.
 */
380
static LRESULT UPDOWN_Draw (const UPDOWN_INFO *infoPtr, HDC hdc)
Alexandre Julliard's avatar
Alexandre Julliard committed
381
{
382
    BOOL uPressed, uHot, dPressed, dHot;
383
    RECT rect;
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
    HTHEME theme = GetWindowTheme (infoPtr->Self);
    int uPart = 0, uState = 0, dPart = 0, dState = 0;
    BOOL needBuddyBg = FALSE;

    uPressed = (infoPtr->Flags & FLAG_PRESSED) && (infoPtr->Flags & FLAG_INCR);
    uHot = (infoPtr->Flags & FLAG_INCR) && (infoPtr->Flags & FLAG_MOUSEIN);
    dPressed = (infoPtr->Flags & FLAG_PRESSED) && (infoPtr->Flags & FLAG_DECR);
    dHot = (infoPtr->Flags & FLAG_DECR) && (infoPtr->Flags & FLAG_MOUSEIN);
    if (theme) {
        uPart = (infoPtr->dwStyle & UDS_HORZ) ? SPNP_UPHORZ : SPNP_UP;
        uState = (infoPtr->dwStyle & WS_DISABLED) ? DNS_DISABLED 
            : (uPressed ? DNS_PRESSED : (uHot ? DNS_HOT : DNS_NORMAL));
        dPart = (infoPtr->dwStyle & UDS_HORZ) ? SPNP_DOWNHORZ : SPNP_DOWN;
        dState = (infoPtr->dwStyle & WS_DISABLED) ? DNS_DISABLED 
            : (dPressed ? DNS_PRESSED : (dHot ? DNS_HOT : DNS_NORMAL));
        needBuddyBg = IsWindow (infoPtr->Buddy)
            && (IsThemeBackgroundPartiallyTransparent (theme, uPart, uState)
              || IsThemeBackgroundPartiallyTransparent (theme, dPart, dState));
    }
403 404

    /* Draw the common border between ourselves and our buddy */
405 406 407 408 409 410 411
    if (UPDOWN_HasBuddyBorder(infoPtr) || needBuddyBg) {
        if (!theme || !UPDOWN_DrawBuddyBackground (infoPtr, hdc)) {
            GetClientRect(infoPtr->Self, &rect);
	    DrawEdge(hdc, &rect, EDGE_SUNKEN,
		     BF_BOTTOM | BF_TOP |
		     (infoPtr->dwStyle & UDS_ALIGNLEFT ? BF_LEFT : BF_RIGHT));
        }
412
    }
413

414
    /* Draw the incr button */
415
    UPDOWN_GetArrowRect (infoPtr, &rect, FLAG_INCR);
416 417 418 419 420 421 422 423 424
    if (theme) {
        DrawThemeBackground(theme, hdc, uPart, uState, &rect, NULL);
    } else {
        DrawFrameControl(hdc, &rect, DFC_SCROLL,
            (infoPtr->dwStyle & UDS_HORZ ? DFCS_SCROLLRIGHT : DFCS_SCROLLUP) |
            ((infoPtr->dwStyle & UDS_HOTTRACK) && uHot ? DFCS_HOT : 0) |
            (uPressed ? DFCS_PUSHED : 0) |
            (infoPtr->dwStyle & WS_DISABLED ? DFCS_INACTIVE : 0) );
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
425

426
    /* Draw the decr button */
427
    UPDOWN_GetArrowRect(infoPtr, &rect, FLAG_DECR);
428 429 430 431 432 433 434 435 436
    if (theme) {
        DrawThemeBackground(theme, hdc, dPart, dState, &rect, NULL);
    } else {
        DrawFrameControl(hdc, &rect, DFC_SCROLL,
            (infoPtr->dwStyle & UDS_HORZ ? DFCS_SCROLLLEFT : DFCS_SCROLLDOWN) |
            ((infoPtr->dwStyle & UDS_HOTTRACK) && dHot ? DFCS_HOT : 0) |
            (dPressed ? DFCS_PUSHED : 0) |
            (infoPtr->dwStyle & WS_DISABLED ? DFCS_INACTIVE : 0) );
    }
437 438

    return 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
439 440 441
}

/***********************************************************************
442
 * UPDOWN_Paint
Alexandre Julliard's avatar
Alexandre Julliard committed
443
 *
444
 * Asynchronous drawing (must ONLY be used in WM_PAINT).
Alexandre Julliard's avatar
Alexandre Julliard committed
445 446
 * Calls UPDOWN_Draw.
 */
447
static LRESULT UPDOWN_Paint (const UPDOWN_INFO *infoPtr, HDC hdc)
Alexandre Julliard's avatar
Alexandre Julliard committed
448
{
449 450 451 452 453 454
    PAINTSTRUCT ps;
    if (hdc) return UPDOWN_Draw (infoPtr, hdc);
    hdc = BeginPaint (infoPtr->Self, &ps);
    UPDOWN_Draw (infoPtr, hdc);
    EndPaint (infoPtr->Self, &ps);
    return 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
455
}
Alexandre Julliard's avatar
Alexandre Julliard committed
456

Alexandre Julliard's avatar
Alexandre Julliard committed
457
/***********************************************************************
458
 * UPDOWN_KeyPressed
Alexandre Julliard's avatar
Alexandre Julliard committed
459
 *
460
 * Handle key presses (up & down) when we have to do so
Alexandre Julliard's avatar
Alexandre Julliard committed
461
 */
462
static LRESULT UPDOWN_KeyPressed(UPDOWN_INFO *infoPtr, int key)
Alexandre Julliard's avatar
Alexandre Julliard committed
463
{
464
    int arrow;
465

466 467 468
    if (key == VK_UP) arrow = FLAG_INCR;
    else if (key == VK_DOWN) arrow = FLAG_DECR;
    else return 1;
469

470 471 472 473 474 475 476 477 478
    UPDOWN_GetBuddyInt (infoPtr);
    infoPtr->Flags &= ~FLAG_ARROW;
    infoPtr->Flags |= FLAG_PRESSED | arrow;
    InvalidateRect (infoPtr->Self, NULL, FALSE);
    SetTimer(infoPtr->Self, TIMER_AUTOPRESS, AUTOPRESS_DELAY, 0);
    UPDOWN_DoAction (infoPtr, 1, arrow);
    return 0;
}

479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
/***********************************************************************
 * UPDOWN_SetRange
 *
 * Handle UDM_SETRANGE, UDM_SETRANGE32
 *
 * FIXME: handle Max == Min properly:
 *        - arrows should be disabled (without WS_DISABLED set),
 *          visually they can't be pressed and don't respond;
 *        - all input messages should still pass in.
 */
static LRESULT UPDOWN_SetRange(UPDOWN_INFO *infoPtr, INT Max, INT Min)
{
    infoPtr->MaxVal = Max;
    infoPtr->MinVal = Min;

    TRACE("UpDown Ctrl new range(%d to %d), hwnd=%p\n",
           infoPtr->MinVal, infoPtr->MaxVal, infoPtr->Self);

    return 0;
}

500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
/***********************************************************************
 * UPDOWN_MouseWheel
 *
 * Handle mouse wheel scrolling
 */
static LRESULT UPDOWN_MouseWheel(UPDOWN_INFO *infoPtr, WPARAM wParam)
{
    int iWheelDelta = GET_WHEEL_DELTA_WPARAM(wParam) / WHEEL_DELTA;

    if (wParam & (MK_SHIFT | MK_CONTROL))
        return 0;

    if (iWheelDelta != 0)
    {
        UPDOWN_GetBuddyInt(infoPtr);
        UPDOWN_DoAction(infoPtr, abs(iWheelDelta), iWheelDelta > 0 ? FLAG_INCR : FLAG_DECR);
    }

    return 1;
}


522
/***********************************************************************
523
 * UPDOWN_Buddy_SubclassProc used to handle messages sent to the buddy
524 525
 *                           control.
 */
526
static LRESULT CALLBACK
527 528
UPDOWN_Buddy_SubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam,
                          UINT_PTR uId, DWORD_PTR ref_data)
529
{
530
    UPDOWN_INFO *infoPtr = UPDOWN_GetInfoPtr((HWND)ref_data);
531

532 533
    TRACE("hwnd=%p, uMsg=%04x, wParam=%08lx, lParam=%08lx\n",
          hwnd, uMsg, wParam, lParam);
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
534

535 536 537 538
    switch(uMsg)
    {
    case WM_KEYDOWN:
	UPDOWN_KeyPressed(infoPtr, (int)wParam);
539
	if ((wParam == VK_UP) || (wParam == VK_DOWN)) return 0;
540 541 542 543 544
	break;

    case WM_MOUSEWHEEL:
	UPDOWN_MouseWheel(infoPtr, (int)wParam);
	break;
545

546 547
    default:
	break;
548
    }
549

550
    return DefSubclassProc(hwnd, uMsg, wParam, lParam);
Alexandre Julliard's avatar
Alexandre Julliard committed
551 552 553 554
}

/***********************************************************************
 *           UPDOWN_SetBuddy
555 556
 *
 * Sets bud as a new Buddy.
557
 * Then, it should subclass the buddy
Anders Jonsson's avatar
Anders Jonsson committed
558
 * If window has the UDS_ARROWKEYS, it subclasses the buddy window to
Alexandre Julliard's avatar
Alexandre Julliard committed
559 560 561 562
 * process the UP/DOWN arrow keys.
 * If window has the UDS_ALIGNLEFT or UDS_ALIGNRIGHT style
 * the size/pos of the buddy and the control are adjusted accordingly.
 */
563
static HWND UPDOWN_SetBuddy (UPDOWN_INFO* infoPtr, HWND bud)
Alexandre Julliard's avatar
Alexandre Julliard committed
564
{
565 566
    RECT  budRect;  /* new coord for the buddy */
    int   x, width;  /* new x position and width for the up-down */
567
    WCHAR buddyClass[40];
568
    HWND ret;
569

570
    TRACE("(hwnd=%p, bud=%p)\n", infoPtr->Self, bud);
571

572 573
    ret = infoPtr->Buddy;

574 575 576 577
    /* there is already a buddy assigned */
    if (infoPtr->Buddy) RemoveWindowSubclass(infoPtr->Buddy, UPDOWN_Buddy_SubclassProc,
                                             BUDDY_SUBCLASSID);
    if (!IsWindow(bud)) bud = NULL;
578

579
    /* Store buddy window handle */
580
    infoPtr->Buddy = bud;
581

582 583 584
    if(bud) {
        /* Store buddy window class type */
        infoPtr->BuddyType = BUDDY_TYPE_UNKNOWN;
585
        if (GetClassNameW(bud, buddyClass, COUNT_OF(buddyClass))) {
586
            if (lstrcmpiW(buddyClass, WC_EDITW) == 0)
587
                infoPtr->BuddyType = BUDDY_TYPE_EDIT;
588
            else if (lstrcmpiW(buddyClass, WC_LISTBOXW) == 0)
589 590
                infoPtr->BuddyType = BUDDY_TYPE_LISTBOX;
        }
591

592 593 594
        if (infoPtr->dwStyle & UDS_ARROWKEYS)
            SetWindowSubclass(bud, UPDOWN_Buddy_SubclassProc, BUDDY_SUBCLASSID,
                              (DWORD_PTR)infoPtr->Self);
595

596 597 598 599 600
        /* Get the rect of the buddy relative to its parent */
        GetWindowRect(infoPtr->Buddy, &budRect);
        MapWindowPoints(HWND_DESKTOP, GetParent(infoPtr->Buddy), (POINT *)(&budRect.left), 2);

        /* now do the positioning */
601
        if  (infoPtr->dwStyle & UDS_ALIGNLEFT) {
602 603
            x  = budRect.left;
            budRect.left += DEFAULT_WIDTH + DEFAULT_XSEP;
604
        } else if (infoPtr->dwStyle & UDS_ALIGNRIGHT) {
605 606 607
            budRect.right -= DEFAULT_WIDTH + DEFAULT_XSEP;
            x  = budRect.right+DEFAULT_XSEP;
        } else {
608 609
            /* nothing to do */
            return ret;
610
        }
611

612
        /* first adjust the buddy to accommodate the up/down */
613 614 615 616 617 618 619 620 621 622 623 624
        SetWindowPos(infoPtr->Buddy, 0, budRect.left, budRect.top,
                     budRect.right  - budRect.left, budRect.bottom - budRect.top,
                     SWP_NOACTIVATE|SWP_NOZORDER);

        /* now position the up/down */
        /* Since the UDS_ALIGN* flags were used, */
        /* we will pick the position and size of the window. */
        width = DEFAULT_WIDTH;

        /*
         * If the updown has a buddy border, it has to overlap with the buddy
         * to look as if it is integrated with the buddy control.
625
         * We nudge the control or change its size to overlap.
626 627
         */
        if (UPDOWN_HasBuddyBorder(infoPtr)) {
628
            if(infoPtr->dwStyle & UDS_ALIGNLEFT)
629 630 631 632
                width += DEFAULT_BUDDYBORDER;
            else
                x -= DEFAULT_BUDDYBORDER;
        }
633

634
        SetWindowPos(infoPtr->Self, 0, x,
635 636 637 638 639 640 641 642 643
                     budRect.top - DEFAULT_ADDTOP, width,
                     budRect.bottom - budRect.top + DEFAULT_ADDTOP + DEFAULT_ADDBOT,
                     SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOZORDER);
    } else {
        RECT rect;
        GetWindowRect(infoPtr->Self, &rect);
        MapWindowPoints(HWND_DESKTOP, GetParent(infoPtr->Self), (POINT *)&rect, 2);
        SetWindowPos(infoPtr->Self, 0, rect.left, rect.top, DEFAULT_WIDTH, rect.bottom - rect.top,
                     SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOZORDER);
644
    }
645
    return ret;
646
}
Alexandre Julliard's avatar
Alexandre Julliard committed
647 648 649 650

/***********************************************************************
 *           UPDOWN_DoAction
 *
651
 * This function increments/decrements the CurVal by the
652 653
 * 'delta' amount according to the 'action' flag which can be a
 * combination of FLAG_INCR and FLAG_DECR
Alexandre Julliard's avatar
Alexandre Julliard committed
654
 * It notifies the parent as required.
Anders Jonsson's avatar
Anders Jonsson committed
655
 * It handles wrapping and non-wrapping correctly.
Alexandre Julliard's avatar
Alexandre Julliard committed
656 657
 * It is assumed that delta>0
 */
658
static void UPDOWN_DoAction (UPDOWN_INFO *infoPtr, int delta, int action)
Alexandre Julliard's avatar
Alexandre Julliard committed
659
{
660 661
    NM_UPDOWN ni;

662
    TRACE("%d by %d\n", action, delta);
663 664

    /* check if we can do the modification first */
665 666
    delta *= (action & FLAG_INCR ? 1 : -1) * (infoPtr->MaxVal < infoPtr->MinVal ? -1 : 1);
    if ( (action & FLAG_INCR) && (action & FLAG_DECR) ) delta = 0;
667

668 669
    TRACE("current %d, delta: %d\n", infoPtr->CurVal, delta);

670 671 672 673
    /* We must notify parent now to obtain permission */
    ni.iPos = infoPtr->CurVal;
    ni.iDelta = delta;
    ni.hdr.hwndFrom = infoPtr->Self;
674
    ni.hdr.idFrom   = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
675
    ni.hdr.code = UDN_DELTAPOS;
676
    if (!SendMessageW(infoPtr->Notify, WM_NOTIFY, ni.hdr.idFrom, (LPARAM)&ni)) {
677 678 679 680
        /* Parent said: OK to adjust */

        /* Now adjust value with (maybe new) delta */
        if (UPDOWN_OffsetVal (infoPtr, ni.iDelta)) {
681 682
            TRACE("new %d, delta: %d\n", infoPtr->CurVal, ni.iDelta);

683
            /* Now take care about our buddy */
684
            UPDOWN_SetBuddyInt (infoPtr);
685 686
        }
    }
687

688
    /* Also, notify it. This message is sent in any case. */
689
    SendMessageW( infoPtr->Notify, (infoPtr->dwStyle & UDS_HORZ) ? WM_HSCROLL : WM_VSCROLL,
690
		  MAKELONG(SB_THUMBPOSITION, infoPtr->CurVal), (LPARAM)infoPtr->Self);
Alexandre Julliard's avatar
Alexandre Julliard committed
691 692 693 694 695 696 697 698
}

/***********************************************************************
 *           UPDOWN_IsEnabled
 *
 * Returns TRUE if it is enabled as well as its buddy (if any)
 *         FALSE otherwise
 */
699
static BOOL UPDOWN_IsEnabled (const UPDOWN_INFO *infoPtr)
Alexandre Julliard's avatar
Alexandre Julliard committed
700
{
701
    if (!IsWindowEnabled(infoPtr->Self))
702 703 704 705
        return FALSE;
    if(infoPtr->Buddy)
        return IsWindowEnabled(infoPtr->Buddy);
    return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
706 707 708 709 710 711 712
}

/***********************************************************************
 *           UPDOWN_CancelMode
 *
 * Deletes any timers, releases the mouse and does  redraw if necessary.
 * If the control is not in "capture" mode, it does nothing.
713
 * If the control was not in cancel mode, it returns FALSE.
Alexandre Julliard's avatar
Alexandre Julliard committed
714 715
 * If the control was in cancel mode, it returns TRUE.
 */
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
716
static BOOL UPDOWN_CancelMode (UPDOWN_INFO *infoPtr)
Alexandre Julliard's avatar
Alexandre Julliard committed
717
{
718
    if (!(infoPtr->Flags & FLAG_PRESSED)) return FALSE;
719

720 721 722
    KillTimer (infoPtr->Self, TIMER_AUTOREPEAT);
    KillTimer (infoPtr->Self, TIMER_ACCEL);
    KillTimer (infoPtr->Self, TIMER_AUTOPRESS);
723

724 725 726
    if (GetCapture() == infoPtr->Self) {
	NMHDR hdr;
	hdr.hwndFrom = infoPtr->Self;
727
	hdr.idFrom   = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
728
	hdr.code = NM_RELEASEDCAPTURE;
729
	SendMessageW(infoPtr->Notify, WM_NOTIFY, hdr.idFrom, (LPARAM)&hdr);
730 731
	ReleaseCapture();
    }
732

733 734
    infoPtr->Flags &= ~FLAG_PRESSED;
    InvalidateRect (infoPtr->Self, NULL, FALSE);
735

736
    return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
737 738 739 740 741 742 743
}

/***********************************************************************
 *           UPDOWN_HandleMouseEvent
 *
 * Handle a mouse event for the updown.
 * 'pt' is the location of the mouse event in client or
744
 * windows coordinates.
Alexandre Julliard's avatar
Alexandre Julliard committed
745
 */
746
static void UPDOWN_HandleMouseEvent (UPDOWN_INFO *infoPtr, UINT msg, INT x, INT y)
Alexandre Julliard's avatar
Alexandre Julliard committed
747
{
748
    POINT pt = { x, y };
749
    RECT rect;
750
    int temp, arrow;
751
    TRACKMOUSEEVENT tme;
Alexandre Julliard's avatar
Alexandre Julliard committed
752

753 754
    TRACE("msg %04x point %s\n", msg, wine_dbgstr_point(&pt));

755
    switch(msg)
Alexandre Julliard's avatar
Alexandre Julliard committed
756
    {
757
        case WM_LBUTTONDOWN:  /* Initialise mouse tracking */
Alexandre Julliard's avatar
Alexandre Julliard committed
758

759 760
            /* If the buddy is an edit, will set focus to it */
	    if (UPDOWN_IsBuddyEdit(infoPtr)) SetFocus(infoPtr->Buddy);
Alexandre Julliard's avatar
Alexandre Julliard committed
761

762
            /* Now see which one is the 'active' arrow */
763 764 765 766 767 768 769 770 771
            arrow = UPDOWN_GetArrowFromPoint (infoPtr, &rect, pt);

            /* Update the flags if we are in/out */
            infoPtr->Flags &= ~(FLAG_MOUSEIN | FLAG_ARROW);
            if (arrow)
                infoPtr->Flags |= FLAG_MOUSEIN | arrow;
            else
                if (infoPtr->AccelIndex != -1) infoPtr->AccelIndex = 0;

772
	    if (infoPtr->Flags & FLAG_ARROW) {
Alexandre Julliard's avatar
Alexandre Julliard committed
773

774
            	/* Update the CurVal if necessary */
775
            	UPDOWN_GetBuddyInt (infoPtr);
776

777
            	/* Set up the correct flags */
778 779
            	infoPtr->Flags |= FLAG_PRESSED;

780 781
            	/* repaint the control */
	    	InvalidateRect (infoPtr->Self, NULL, FALSE);
782

783
            	/* process the click */
784 785
		temp = (infoPtr->AccelCount && infoPtr->AccelVect) ? infoPtr->AccelVect[0].nInc : 1;
            	UPDOWN_DoAction (infoPtr, temp, infoPtr->Flags & FLAG_ARROW);
786

787 788
            	/* now capture all mouse messages */
            	SetCapture (infoPtr->Self);
789

790 791 792
            	/* and startup the first timer */
            	SetTimer(infoPtr->Self, TIMER_AUTOREPEAT, INITIAL_DELAY, 0);
	    }
793 794 795 796 797 798
            break;

	case WM_MOUSEMOVE:
            /* save the flags to see if any got modified */
            temp = infoPtr->Flags;

799 800
            /* Now see which one is the 'active' arrow */
            arrow = UPDOWN_GetArrowFromPoint (infoPtr, &rect, pt);
801 802

            /* Update the flags if we are in/out */
803 804 805
	    infoPtr->Flags &= ~(FLAG_MOUSEIN | FLAG_ARROW);
            if(arrow) {
	        infoPtr->Flags |=  FLAG_MOUSEIN | arrow;
806 807 808
            } else {
	        if(infoPtr->AccelIndex != -1) infoPtr->AccelIndex = 0;
            }
809

810
            /* If state changed, redraw the control */
811
            if(temp != infoPtr->Flags)
812 813 814 815 816 817 818 819 820 821 822 823 824
		 InvalidateRect (infoPtr->Self, NULL, FALSE);

            /* Set up tracking so the mousein flags can be reset when the 
             * mouse leaves the control */
            tme.cbSize = sizeof( tme );
            tme.dwFlags = TME_LEAVE;
            tme.hwndTrack = infoPtr->Self;
            TrackMouseEvent (&tme);

            break;
        case WM_MOUSELEAVE:
	    infoPtr->Flags &= ~(FLAG_MOUSEIN | FLAG_ARROW);
            InvalidateRect (infoPtr->Self, NULL, FALSE);
825 826 827 828
            break;

	default:
	    ERR("Impossible case (msg=%x)!\n", msg);
Alexandre Julliard's avatar
Alexandre Julliard committed
829 830 831 832 833 834 835
    }

}

/***********************************************************************
 *           UpDownWndProc
 */
836
static LRESULT WINAPI UpDownWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
Alexandre Julliard's avatar
Alexandre Julliard committed
837
{
838
    UPDOWN_INFO *infoPtr = UPDOWN_GetInfoPtr (hwnd);
839 840
    static const WCHAR themeClass[] = {'S','p','i','n',0};
    HTHEME theme;
841

842
    TRACE("hwnd=%p msg=%04x wparam=%08lx lparam=%08lx\n", hwnd, message, wParam, lParam);
843

844
    if (!infoPtr && (message != WM_CREATE))
845
        return DefWindowProcW (hwnd, message, wParam, lParam);
846 847

    switch(message)
Alexandre Julliard's avatar
Alexandre Julliard committed
848
    {
849
        case WM_CREATE:
850 851 852
	    {
	    CREATESTRUCTW *pcs = (CREATESTRUCTW*)lParam;

853
            infoPtr = Alloc (sizeof(UPDOWN_INFO));
854
	    SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
855 856 857

	    /* initialize the info struct */
	    infoPtr->Self = hwnd;
858 859
	    infoPtr->Notify  = pcs->hwndParent;
	    infoPtr->dwStyle = pcs->style;
860 861 862
	    infoPtr->AccelCount = 0;
	    infoPtr->AccelVect = 0;
	    infoPtr->AccelIndex = -1;
863
	    infoPtr->CurVal = 0;
864 865
	    infoPtr->MinVal = 100;
	    infoPtr->MaxVal = 0;
866 867
	    infoPtr->Base  = 10; /* Default to base 10  */
	    infoPtr->Buddy = 0;  /* No buddy window yet */
868
	    infoPtr->Flags = (infoPtr->dwStyle & UDS_SETBUDDYINT) ? FLAG_BUDDYINT : 0;
869

870
            SetWindowLongW (hwnd, GWL_STYLE, infoPtr->dwStyle & ~WS_BORDER);
871 872
	    if (!(infoPtr->dwStyle & UDS_HORZ))
	        SetWindowPos (hwnd, NULL, 0, 0, DEFAULT_WIDTH, pcs->cy,
873
	                      SWP_NOOWNERZORDER | SWP_NOZORDER | SWP_NOMOVE);
874

875
            /* Do we pick the buddy win ourselves? */
876
	    if (infoPtr->dwStyle & UDS_AUTOBUDDY)
877
		UPDOWN_SetBuddy (infoPtr, GetWindow (hwnd, GW_HWNDPREV));
878

879
	    OpenThemeData (hwnd, themeClass);
880

881
	    TRACE("UpDown Ctrl creation, hwnd=%p\n", hwnd);
882
	    }
883
	    break;
884

885
	case WM_DESTROY:
886
	    Free (infoPtr->AccelVect);
Alexandre Julliard's avatar
Alexandre Julliard committed
887

888 889 890
	    if (infoPtr->Buddy)
	       RemoveWindowSubclass(infoPtr->Buddy, UPDOWN_Buddy_SubclassProc,
	                            BUDDY_SUBCLASSID);
891
	    Free (infoPtr);
892
	    SetWindowLongPtrW (hwnd, 0, 0);
893 894
            theme = GetWindowTheme (hwnd);
            CloseThemeData (theme);
895
	    TRACE("UpDown Ctrl destruction, hwnd=%p\n", hwnd);
896
	    break;
897

898
	case WM_ENABLE:
899 900 901 902 903 904
	    if (wParam) {
		infoPtr->dwStyle &= ~WS_DISABLED;
	    } else {
		infoPtr->dwStyle |= WS_DISABLED;
	    	UPDOWN_CancelMode (infoPtr);
	    }
905
	    InvalidateRect (infoPtr->Self, NULL, FALSE);
906 907
	    break;

908 909 910 911 912 913 914
        case WM_STYLECHANGED:
            if (wParam == GWL_STYLE) {
                infoPtr->dwStyle = ((LPSTYLESTRUCT)lParam)->styleNew;
	        InvalidateRect (infoPtr->Self, NULL, FALSE);
            }
            break;

915 916 917 918 919 920 921
        case WM_THEMECHANGED:
            theme = GetWindowTheme (hwnd);
            CloseThemeData (theme);
            OpenThemeData (hwnd, themeClass);
            InvalidateRect (hwnd, NULL, FALSE);
            break;

922
	case WM_TIMER:
923 924 925 926 927 928 929
	   /* is this the auto-press timer? */
	   if(wParam == TIMER_AUTOPRESS) {
		KillTimer(hwnd, TIMER_AUTOPRESS);
		infoPtr->Flags &= ~(FLAG_PRESSED | FLAG_ARROW);
		InvalidateRect(infoPtr->Self, NULL, FALSE);
	   }

930
	   /* if initial timer, kill it and start the repeat timer */
931
  	   if(wParam == TIMER_AUTOREPEAT) {
932 933
		int temp;

934
		KillTimer(hwnd, TIMER_AUTOREPEAT);
935 936 937 938 939 940 941 942
		/* if no accel info given, used default timer */
		if(infoPtr->AccelCount==0 || infoPtr->AccelVect==0) {
		    infoPtr->AccelIndex = -1;
		    temp = REPEAT_DELAY;
		} else {
		    infoPtr->AccelIndex = 0; /* otherwise, use it */
		    temp = infoPtr->AccelVect[infoPtr->AccelIndex].nSec * 1000 + 1;
		}
943
		SetTimer(hwnd, TIMER_ACCEL, temp, 0);
944 945 946 947
      	    }

	    /* now, if the mouse is above us, do the thing...*/
	    if(infoPtr->Flags & FLAG_MOUSEIN) {
948 949
		int temp;

950
		temp = infoPtr->AccelIndex == -1 ? 1 : infoPtr->AccelVect[infoPtr->AccelIndex].nInc;
951
		UPDOWN_DoAction(infoPtr, temp, infoPtr->Flags & FLAG_ARROW);
952

953
		if(infoPtr->AccelIndex != -1 && infoPtr->AccelIndex < infoPtr->AccelCount-1) {
954
		    KillTimer(hwnd, TIMER_ACCEL);
955 956 957
		    infoPtr->AccelIndex++; /* move to the next accel info */
		    temp = infoPtr->AccelVect[infoPtr->AccelIndex].nSec * 1000 + 1;
	  	    /* make sure we have at least 1ms intervals */
958
		    SetTimer(hwnd, TIMER_ACCEL, temp, 0);
959 960 961 962 963 964 965 966
		}
	    }
	    break;

	case WM_CANCELMODE:
	  return UPDOWN_CancelMode (infoPtr);

	case WM_LBUTTONUP:
967
	    if (GetCapture() != infoPtr->Self) break;
968

969 970
	    if ( (infoPtr->Flags & FLAG_MOUSEIN) &&
		 (infoPtr->Flags & FLAG_ARROW) ) {
971

972
	    	SendMessageW( infoPtr->Notify,
973
			      (infoPtr->dwStyle & UDS_HORZ) ? WM_HSCROLL : WM_VSCROLL,
974 975
                  	      MAKELONG(SB_ENDSCROLL, infoPtr->CurVal),
			      (LPARAM)hwnd);
976 977 978 979
		if (UPDOWN_IsBuddyEdit(infoPtr))
		    SendMessageW(infoPtr->Buddy, EM_SETSEL, 0, MAKELONG(0, -1));
	    }
	    UPDOWN_CancelMode(infoPtr);
980
	    break;
981

982 983
	case WM_LBUTTONDOWN:
	case WM_MOUSEMOVE:
984
        case WM_MOUSELEAVE:
985
	    if(UPDOWN_IsEnabled(infoPtr))
986
		UPDOWN_HandleMouseEvent (infoPtr, message, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
987 988
	    break;

989 990 991 992
        case WM_MOUSEWHEEL:
            UPDOWN_MouseWheel(infoPtr, wParam);
            break;

993
	case WM_KEYDOWN:
994
	    if((infoPtr->dwStyle & UDS_ARROWKEYS) && UPDOWN_IsEnabled(infoPtr))
995
		return UPDOWN_KeyPressed(infoPtr, (int)wParam);
996
	    break;
997

998
	case WM_PRINTCLIENT:
999
	case WM_PAINT:
1000
	    return UPDOWN_Paint (infoPtr, (HDC)wParam);
1001

1002 1003 1004
	case UDM_GETACCEL:
	    if (wParam==0 && lParam==0) return infoPtr->AccelCount;
	    if (wParam && lParam) {
1005
		int temp = min(infoPtr->AccelCount, wParam);
1006 1007 1008 1009 1010 1011
	        memcpy((void *)lParam, infoPtr->AccelVect, temp*sizeof(UDACCEL));
	        return temp;
      	    }
	    return 0;

	case UDM_SETACCEL:
1012 1013 1014
	{
	    unsigned temp;

1015 1016
	    TRACE("UDM_SETACCEL\n");

1017
	    if(infoPtr->AccelVect) {
1018
		Free (infoPtr->AccelVect);
1019 1020 1021 1022
		infoPtr->AccelCount = 0;
		infoPtr->AccelVect  = 0;
      	    }
	    if(wParam==0) return TRUE;
1023
	    infoPtr->AccelVect = Alloc (wParam*sizeof(UDACCEL));
1024 1025
	    if(infoPtr->AccelVect == 0) return FALSE;
	    memcpy(infoPtr->AccelVect, (void*)lParam, wParam*sizeof(UDACCEL));
1026 1027 1028 1029 1030
            infoPtr->AccelCount = wParam;

            for (temp = 0; temp < wParam; temp++)
                TRACE("%d: nSec %u nInc %u\n", temp, infoPtr->AccelVect[temp].nSec, infoPtr->AccelVect[temp].nInc);

1031
    	    return TRUE;
1032
	}
1033 1034 1035 1036
	case UDM_GETBASE:
	    return infoPtr->Base;

	case UDM_SETBASE:
1037
	    TRACE("UpDown Ctrl new base(%ld), hwnd=%p\n", wParam, hwnd);
1038
	    if (wParam==10 || wParam==16) {
1039
		WPARAM old_base = infoPtr->Base;
1040
		infoPtr->Base = wParam;
1041 1042 1043 1044 1045

		if (old_base != infoPtr->Base)
		    UPDOWN_SetBuddyInt(infoPtr);

		return old_base;
1046 1047 1048 1049
	    }
	    break;

	case UDM_GETBUDDY:
1050
	    return (LRESULT)infoPtr->Buddy;
1051 1052

	case UDM_SETBUDDY:
1053
	    return (LRESULT)UPDOWN_SetBuddy (infoPtr, (HWND)wParam);
1054 1055

	case UDM_GETPOS:
1056
	{
1057 1058
	    BOOL ret = UPDOWN_GetBuddyInt (infoPtr);
	    return MAKELONG(infoPtr->CurVal, ret ? 0 : 1);
1059
	}
1060
	case UDM_SETPOS:
1061 1062 1063
	{
	    int temp = (short)LOWORD(lParam);

1064
	    TRACE("UpDown Ctrl new value(%d), hwnd=%p\n", temp, hwnd);
1065 1066 1067 1068
	    if(!UPDOWN_InBounds(infoPtr, temp)) {
		if(temp < infoPtr->MinVal) temp = infoPtr->MinVal;
		if(temp > infoPtr->MaxVal) temp = infoPtr->MaxVal;
	    }
1069 1070
	    wParam = infoPtr->CurVal;
	    infoPtr->CurVal = temp;
1071
	    UPDOWN_SetBuddyInt (infoPtr);
1072
	    return wParam;            /* return prev value */
1073
	}
1074 1075 1076 1077
	case UDM_GETRANGE:
	    return MAKELONG(infoPtr->MaxVal, infoPtr->MinVal);

	case UDM_SETRANGE:
1078 1079 1080 1081 1082
	    /* we must have:
	    UD_MINVAL <= Max <= UD_MAXVAL
	    UD_MINVAL <= Min <= UD_MAXVAL
	    |Max-Min| <= UD_MAXVAL */
	    UPDOWN_SetRange(infoPtr, (short)lParam, (short)HIWORD(lParam));
1083
	    break;
1084 1085 1086 1087 1088 1089 1090

	case UDM_GETRANGE32:
	    if (wParam) *(LPINT)wParam = infoPtr->MinVal;
	    if (lParam) *(LPINT)lParam = infoPtr->MaxVal;
	    break;

	case UDM_SETRANGE32:
1091
	    UPDOWN_SetRange(infoPtr, (INT)lParam, (INT)wParam);
1092 1093 1094
	    break;

	case UDM_GETPOS32:
1095 1096 1097
	{
	    BOOL ret = UPDOWN_GetBuddyInt (infoPtr);
	    if ((LPBOOL)lParam) *((LPBOOL)lParam) = !ret;
1098
	    return infoPtr->CurVal;
1099
	}
1100
	case UDM_SETPOS32:
1101 1102 1103
	{
	    int temp;

1104 1105 1106 1107 1108 1109
	    if(!UPDOWN_InBounds(infoPtr, (int)lParam)) {
		if((int)lParam < infoPtr->MinVal) lParam = infoPtr->MinVal;
		if((int)lParam > infoPtr->MaxVal) lParam = infoPtr->MaxVal;
	    }
	    temp = infoPtr->CurVal;         /* save prev value   */
	    infoPtr->CurVal = (int)lParam;  /* set the new value */
1110
	    UPDOWN_SetBuddyInt (infoPtr);
1111
	    return temp;                    /* return prev value */
1112
	}
1113 1114 1115 1116 1117
	case UDM_GETUNICODEFORMAT:
	    /* we lie a bit here, we're always using Unicode internally */
	    return infoPtr->UnicodeFormat;

	case UDM_SETUNICODEFORMAT:
1118
	{
1119
	    /* do we really need to honour this flag? */
1120
	    int temp = infoPtr->UnicodeFormat;
1121 1122
	    infoPtr->UnicodeFormat = (BOOL)wParam;
	    return temp;
1123
	}
1124
	default:
1125
	    if ((message >= WM_USER) && (message < WM_APP) && !COMCTL32_IsReflectedMessage(message))
1126
		ERR("unknown msg %04x wp=%04lx lp=%08lx\n", message, wParam, lParam);
1127 1128
	    return DefWindowProcW (hwnd, message, wParam, lParam);
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
1129 1130 1131 1132

    return 0;
}

Alexandre Julliard's avatar
Alexandre Julliard committed
1133
/***********************************************************************
1134
 *		UPDOWN_Register	[Internal]
Alexandre Julliard's avatar
Alexandre Julliard committed
1135 1136 1137
 *
 * Registers the updown window class.
 */
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
1138
void UPDOWN_Register(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
1139
{
1140
    WNDCLASSW wndClass;
Alexandre Julliard's avatar
Alexandre Julliard committed
1141

1142
    ZeroMemory( &wndClass, sizeof( WNDCLASSW ) );
Huw Davies's avatar
Huw Davies committed
1143
    wndClass.style         = CS_GLOBALCLASS | CS_VREDRAW | CS_HREDRAW;
1144
    wndClass.lpfnWndProc   = UpDownWindowProc;
Alexandre Julliard's avatar
Alexandre Julliard committed
1145
    wndClass.cbClsExtra    = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
1146
    wndClass.cbWndExtra    = sizeof(UPDOWN_INFO*);
1147
    wndClass.hCursor       = LoadCursorW( 0, (LPWSTR)IDC_ARROW );
1148
    wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
1149
    wndClass.lpszClassName = UPDOWN_CLASSW;
1150

1151
    RegisterClassW( &wndClass );
Alexandre Julliard's avatar
Alexandre Julliard committed
1152 1153
}

1154 1155 1156 1157 1158 1159

/***********************************************************************
 *		UPDOWN_Unregister	[Internal]
 *
 * Unregisters the updown window class.
 */
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
1160
void UPDOWN_Unregister (void)
1161
{
1162
    UnregisterClassW (UPDOWN_CLASSW, NULL);
1163
}