updown.c 36.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 75 76 77 78 79
#define DEFAULT_WIDTH	    14 /* default width of the ctrl */
#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 89
#define FLAG_INCR	0x01
#define FLAG_DECR	0x02
#define FLAG_MOUSEIN	0x04
#define FLAG_PRESSED	0x08
#define FLAG_ARROW	(FLAG_INCR | FLAG_DECR)
Alexandre Julliard's avatar
Alexandre Julliard committed
90

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

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

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

102 103
static const WCHAR BUDDY_UPDOWN_HWND[] = { 'b', 'u', 'd', 'd', 'y', 'U', 'p', 'D', 'o', 'w', 'n', 'H', 'W', 'N', 'D', 0 };
static const WCHAR BUDDY_SUPERCLASS_WNDPROC[] = { 'b', 'u', 'd', 'd', 'y', 'S', 'u', 'p', 'p', 'e', 'r', 
104
						  'C', 'l', 'a', 's', 's', 'W', 'n', 'd', 'P', 'r', 'o', 'c', 0 };
105
static void UPDOWN_DoAction (UPDOWN_INFO *infoPtr, int delta, int action);
Alexandre Julliard's avatar
Alexandre Julliard committed
106

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

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

Alexandre Julliard's avatar
Alexandre Julliard committed
125 126 127 128
/***********************************************************************
 *           UPDOWN_InBounds
 * Tests if a given value 'val' is between the Min&Max limits
 */
129
static BOOL UPDOWN_InBounds(const UPDOWN_INFO *infoPtr, int val)
Alexandre Julliard's avatar
Alexandre Julliard committed
130
{
131 132 133 134
    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
135 136 137 138
}

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

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

159
/***********************************************************************
160
 * UPDOWN_HasBuddyBorder
161 162 163 164
 *
 * 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.
 */
165
static BOOL UPDOWN_HasBuddyBorder(const UPDOWN_INFO *infoPtr)
166
{
167
    return  ( ((infoPtr->dwStyle & (UDS_ALIGNLEFT | UDS_ALIGNRIGHT)) != 0) &&
168
	      UPDOWN_IsBuddyEdit(infoPtr) );
169 170
}

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

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

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

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

205 206 207 208 209
    /*
     * 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.
     */
210
    if (infoPtr->dwStyle & UDS_HORZ) {
211 212
        int len = rect->right - rect->left + 1; /* compute the width */
        if (arrow & FLAG_INCR)
213
            rect->left = rect->left + len/2;
214
        if (arrow & FLAG_DECR)
215
            rect->right =  rect->left + len/2 - (theme ? 0 : 1);
216
    } else {
217 218
        int len = rect->bottom - rect->top + 1; /* compute the height */
        if (arrow & FLAG_INCR)
219
            rect->bottom =  rect->top + len/2 - (theme ? 0 : 1);
220
        if (arrow & FLAG_DECR)
221 222
            rect->top =  rect->top + len/2;
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
223 224 225 226 227
}

/***********************************************************************
 *           UPDOWN_GetArrowFromPoint
 * Returns the rectagle (for the up or down arrow) that contains pt.
228 229
 * 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
230
 */
231
static INT UPDOWN_GetArrowFromPoint (const UPDOWN_INFO *infoPtr, RECT *rect, POINT pt)
Alexandre Julliard's avatar
Alexandre Julliard committed
232
{
233 234 235 236 237
    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
238

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


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

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

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

/***********************************************************************
 *           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
263
 *   FALSE - if an error occurred
Alexandre Julliard's avatar
Alexandre Julliard committed
264
 */
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
265
static BOOL UPDOWN_GetBuddyInt (UPDOWN_INFO *infoPtr)
Alexandre Julliard's avatar
Alexandre Julliard committed
266
{
267 268
    WCHAR txt[20], sep, *src, *dst;
    int newVal;
Alexandre Julliard's avatar
Alexandre Julliard committed
269

270
    if (!((infoPtr->dwStyle & UDS_SETBUDDYINT) && IsWindow(infoPtr->Buddy)))
271
        return FALSE;
Alexandre Julliard's avatar
Alexandre Julliard committed
272

273 274 275 276 277 278
    /*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 */
279 280 281 282
        /* 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
283

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

        /* 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 */
292
        newVal = strtolW(txt, &src, infoPtr->Base);
293 294
        if(*src || !UPDOWN_InBounds (infoPtr, newVal)) return FALSE;
    }
295

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


/***********************************************************************
 *           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
307
 *   FALSE - if an error occurred
Alexandre Julliard's avatar
Alexandre Julliard committed
308
 */
309
static BOOL UPDOWN_SetBuddyInt (const UPDOWN_INFO *infoPtr)
Alexandre Julliard's avatar
Alexandre Julliard committed
310
{
311 312 313
    WCHAR fmt[3] = { '%', 'd', '\0' };
    WCHAR txt[20];
    int len;
Alexandre Julliard's avatar
Alexandre Julliard committed
314

315 316
    if (!((infoPtr->dwStyle & UDS_SETBUDDYINT) && IsWindow(infoPtr->Buddy))) 
        return FALSE;
Alexandre Julliard's avatar
Alexandre Julliard committed
317

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

320 321 322 323
    /*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;
    }
324

325 326
    /* Regular window, so set caption to the number */
    if (infoPtr->Base == 16) fmt[1] = 'X';
327
    len = wsprintfW(txt, fmt, infoPtr->CurVal);
Alexandre Julliard's avatar
Alexandre Julliard committed
328 329


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

336 337 338 339 340 341 342 343 344
	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
345
    }
346

347
    return SetWindowTextW(infoPtr->Buddy, txt);
348
}
Alexandre Julliard's avatar
Alexandre Julliard committed
349

350 351 352 353 354
/***********************************************************************
 * UPDOWN_DrawBuddyBackground
 *
 * Draw buddy background for visual integration.
 */
355
static BOOL UPDOWN_DrawBuddyBackground (const UPDOWN_INFO *infoPtr, HDC hdc)
356 357 358 359 360 361 362 363 364 365 366 367
{
    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
368
/***********************************************************************
369
 * UPDOWN_Draw
Alexandre Julliard's avatar
Alexandre Julliard committed
370
 *
Alexandre Julliard's avatar
Alexandre Julliard committed
371 372
 * Draw the arrows. The background need not be erased.
 */
373
static LRESULT UPDOWN_Draw (const UPDOWN_INFO *infoPtr, HDC hdc)
Alexandre Julliard's avatar
Alexandre Julliard committed
374
{
375
    BOOL uPressed, uHot, dPressed, dHot;
376
    RECT rect;
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
    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));
    }
396 397

    /* Draw the common border between ourselves and our buddy */
398 399 400 401 402 403 404
    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));
        }
405
    }
406

407
    /* Draw the incr button */
408
    UPDOWN_GetArrowRect (infoPtr, &rect, FLAG_INCR);
409 410 411 412 413 414 415 416 417
    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
418

419
    /* Draw the decr button */
420
    UPDOWN_GetArrowRect(infoPtr, &rect, FLAG_DECR);
421 422 423 424 425 426 427 428 429
    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) );
    }
430 431

    return 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
432 433 434
}

/***********************************************************************
435
 * UPDOWN_Paint
Alexandre Julliard's avatar
Alexandre Julliard committed
436
 *
437
 * Asynchronous drawing (must ONLY be used in WM_PAINT).
Alexandre Julliard's avatar
Alexandre Julliard committed
438 439
 * Calls UPDOWN_Draw.
 */
440
static LRESULT UPDOWN_Paint (const UPDOWN_INFO *infoPtr, HDC hdc)
Alexandre Julliard's avatar
Alexandre Julliard committed
441
{
442 443 444 445 446 447
    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
448
}
Alexandre Julliard's avatar
Alexandre Julliard committed
449

Alexandre Julliard's avatar
Alexandre Julliard committed
450
/***********************************************************************
451
 * UPDOWN_KeyPressed
Alexandre Julliard's avatar
Alexandre Julliard committed
452
 *
453
 * Handle key presses (up & down) when we have to do so
Alexandre Julliard's avatar
Alexandre Julliard committed
454
 */
455
static LRESULT UPDOWN_KeyPressed(UPDOWN_INFO *infoPtr, int key)
Alexandre Julliard's avatar
Alexandre Julliard committed
456
{
457
    int arrow;
458

459 460 461
    if (key == VK_UP) arrow = FLAG_INCR;
    else if (key == VK_DOWN) arrow = FLAG_DECR;
    else return 1;
462

463 464 465 466 467 468 469 470 471 472
    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;
}

/***********************************************************************
473
 * UPDOWN_Buddy_SubclassProc used to handle messages sent to the buddy
474 475
 *                           control.
 */
476
static LRESULT CALLBACK
477 478
UPDOWN_Buddy_SubclassProc(HWND  hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
479
    WNDPROC superClassWndProc = (WNDPROC)GetPropW(hwnd, BUDDY_SUPERCLASS_WNDPROC);
480

481
    TRACE("hwnd=%p, wndProc=%p, uMsg=%04x, wParam=%08lx, lParam=%08lx\n",
482
          hwnd, superClassWndProc, uMsg, wParam, lParam);
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
483

484
    if (uMsg == WM_KEYDOWN) {
485
        HWND upDownHwnd = GetPropW(hwnd, BUDDY_UPDOWN_HWND);
486

487
	UPDOWN_KeyPressed(UPDOWN_GetInfoPtr(upDownHwnd), (int)wParam);
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
488
    }
489 490

    return CallWindowProcW( superClassWndProc, hwnd, uMsg, wParam, lParam);
Alexandre Julliard's avatar
Alexandre Julliard committed
491 492 493 494
}

/***********************************************************************
 *           UPDOWN_SetBuddy
495 496
 *
 * Sets bud as a new Buddy.
497
 * Then, it should subclass the buddy
Alexandre Julliard's avatar
Alexandre Julliard committed
498 499 500 501 502
 * If window has the UDS_ARROWKEYS, it subcalsses the buddy window to
 * 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.
 */
503
static HWND UPDOWN_SetBuddy (UPDOWN_INFO* infoPtr, HWND bud)
Alexandre Julliard's avatar
Alexandre Julliard committed
504
{
505 506
    static const WCHAR editW[] = { 'E', 'd', 'i', 't', 0 };
    static const WCHAR listboxW[] = { 'L', 'i', 's', 't', 'b', 'o', 'x', 0 };
507 508
    RECT  budRect;  /* new coord for the buddy */
    int   x, width;  /* new x position and width for the up-down */
509
    WNDPROC baseWndProc;
510
    WCHAR buddyClass[40];
511
    HWND ret;
512

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

515 516
    ret = infoPtr->Buddy;

517
    /* there is already a body assigned */
518
    if (infoPtr->Buddy)  RemovePropW(infoPtr->Buddy, BUDDY_UPDOWN_HWND);
519

520 521 522
    if(!IsWindow(bud))
        bud = 0;

523
    /* Store buddy window handle */
524
    infoPtr->Buddy = bud;
525

526
    if(bud) {
527

528
        /* keep upDown ctrl hwnd in a buddy property */
529
        SetPropW( bud, BUDDY_UPDOWN_HWND, infoPtr->Self);
530

531 532
        /* Store buddy window class type */
        infoPtr->BuddyType = BUDDY_TYPE_UNKNOWN;
533 534
        if (GetClassNameW(bud, buddyClass, COUNT_OF(buddyClass))) {
            if (lstrcmpiW(buddyClass, editW) == 0)
535
                infoPtr->BuddyType = BUDDY_TYPE_EDIT;
536
            else if (lstrcmpiW(buddyClass, listboxW) == 0)
537 538
                infoPtr->BuddyType = BUDDY_TYPE_LISTBOX;
        }
539

540
        if(infoPtr->dwStyle & UDS_ARROWKEYS){
541 542 543
            /* Note that I don't clear the BUDDY_SUPERCLASS_WNDPROC property
               when we reset the upDown ctrl buddy to another buddy because it is not
               good to break the window proc chain. */
544
            if (!GetPropW(bud, BUDDY_SUPERCLASS_WNDPROC)) {
545
                baseWndProc = (WNDPROC)SetWindowLongPtrW(bud, GWLP_WNDPROC, (LPARAM)UPDOWN_Buddy_SubclassProc);
546
                SetPropW(bud, BUDDY_SUPERCLASS_WNDPROC, (HANDLE)baseWndProc);
547 548
            }
        }
549

550 551 552 553 554
        /* 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 */
555
        if  (infoPtr->dwStyle & UDS_ALIGNLEFT) {
556 557
            x  = budRect.left;
            budRect.left += DEFAULT_WIDTH + DEFAULT_XSEP;
558
        } else if (infoPtr->dwStyle & UDS_ALIGNRIGHT) {
559 560 561
            budRect.right -= DEFAULT_WIDTH + DEFAULT_XSEP;
            x  = budRect.right+DEFAULT_XSEP;
        } else {
562 563
            /* nothing to do */
            return ret;
564
        }
565

566
        /* first adjust the buddy to accommodate the up/down */
567 568 569 570 571 572 573 574 575 576 577 578
        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.
579
         * We nudge the control or change its size to overlap.
580 581
         */
        if (UPDOWN_HasBuddyBorder(infoPtr)) {
582
            if(infoPtr->dwStyle & UDS_ALIGNLEFT)
583 584 585 586
                width += DEFAULT_BUDDYBORDER;
            else
                x -= DEFAULT_BUDDYBORDER;
        }
587

588
        SetWindowPos(infoPtr->Self, 0, x,
589 590 591 592 593 594 595 596 597
                     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);
598
    }
599
    return ret;
600
}
Alexandre Julliard's avatar
Alexandre Julliard committed
601 602 603 604

/***********************************************************************
 *           UPDOWN_DoAction
 *
605
 * This function increments/decrements the CurVal by the
606 607
 * '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
608 609 610 611
 * It notifies the parent as required.
 * It handles wraping and non-wraping correctly.
 * It is assumed that delta>0
 */
612
static void UPDOWN_DoAction (UPDOWN_INFO *infoPtr, int delta, int action)
Alexandre Julliard's avatar
Alexandre Julliard committed
613
{
614 615
    NM_UPDOWN ni;

616
    TRACE("%d by %d\n", action, delta);
617 618

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

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

624 625 626 627
    /* We must notify parent now to obtain permission */
    ni.iPos = infoPtr->CurVal;
    ni.iDelta = delta;
    ni.hdr.hwndFrom = infoPtr->Self;
628
    ni.hdr.idFrom   = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
629
    ni.hdr.code = UDN_DELTAPOS;
630
    if (!SendMessageW(infoPtr->Notify, WM_NOTIFY, (WPARAM)ni.hdr.idFrom, (LPARAM)&ni)) {
631 632 633 634
        /* Parent said: OK to adjust */

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

637
            /* Now take care about our buddy */
638
            UPDOWN_SetBuddyInt (infoPtr);
639 640
        }
    }
641

642
    /* Also, notify it. This message is sent in any case. */
643
    SendMessageW( infoPtr->Notify, (infoPtr->dwStyle & UDS_HORZ) ? WM_HSCROLL : WM_VSCROLL,
644
		  MAKELONG(SB_THUMBPOSITION, infoPtr->CurVal), (LPARAM)infoPtr->Self);
Alexandre Julliard's avatar
Alexandre Julliard committed
645 646 647 648 649 650 651 652
}

/***********************************************************************
 *           UPDOWN_IsEnabled
 *
 * Returns TRUE if it is enabled as well as its buddy (if any)
 *         FALSE otherwise
 */
653
static BOOL UPDOWN_IsEnabled (const UPDOWN_INFO *infoPtr)
Alexandre Julliard's avatar
Alexandre Julliard committed
654
{
655
    if (!IsWindowEnabled(infoPtr->Self))
656 657 658 659
        return FALSE;
    if(infoPtr->Buddy)
        return IsWindowEnabled(infoPtr->Buddy);
    return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
660 661 662 663 664 665 666
}

/***********************************************************************
 *           UPDOWN_CancelMode
 *
 * Deletes any timers, releases the mouse and does  redraw if necessary.
 * If the control is not in "capture" mode, it does nothing.
667
 * If the control was not in cancel mode, it returns FALSE.
Alexandre Julliard's avatar
Alexandre Julliard committed
668 669
 * If the control was in cancel mode, it returns TRUE.
 */
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
670
static BOOL UPDOWN_CancelMode (UPDOWN_INFO *infoPtr)
Alexandre Julliard's avatar
Alexandre Julliard committed
671
{
672
    if (!(infoPtr->Flags & FLAG_PRESSED)) return FALSE;
673

674 675 676
    KillTimer (infoPtr->Self, TIMER_AUTOREPEAT);
    KillTimer (infoPtr->Self, TIMER_ACCEL);
    KillTimer (infoPtr->Self, TIMER_AUTOPRESS);
677

678 679 680
    if (GetCapture() == infoPtr->Self) {
	NMHDR hdr;
	hdr.hwndFrom = infoPtr->Self;
681
	hdr.idFrom   = GetWindowLongPtrW (infoPtr->Self, GWLP_ID);
682
	hdr.code = NM_RELEASEDCAPTURE;
683
	SendMessageW(infoPtr->Notify, WM_NOTIFY, hdr.idFrom, (LPARAM)&hdr);
684 685
	ReleaseCapture();
    }
686

687 688
    infoPtr->Flags &= ~FLAG_PRESSED;
    InvalidateRect (infoPtr->Self, NULL, FALSE);
689

690
    return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
691 692 693 694 695 696 697
}

/***********************************************************************
 *           UPDOWN_HandleMouseEvent
 *
 * Handle a mouse event for the updown.
 * 'pt' is the location of the mouse event in client or
698
 * windows coordinates.
Alexandre Julliard's avatar
Alexandre Julliard committed
699
 */
700
static void UPDOWN_HandleMouseEvent (UPDOWN_INFO *infoPtr, UINT msg, INT x, INT y)
Alexandre Julliard's avatar
Alexandre Julliard committed
701
{
702
    POINT pt = { x, y };
703
    RECT rect;
704
    int temp, arrow;
705
    TRACKMOUSEEVENT tme;
Alexandre Julliard's avatar
Alexandre Julliard committed
706

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

709
    switch(msg)
Alexandre Julliard's avatar
Alexandre Julliard committed
710
    {
711
        case WM_LBUTTONDOWN:  /* Initialise mouse tracking */
Alexandre Julliard's avatar
Alexandre Julliard committed
712

713 714
            /* 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
715

716
            /* Now see which one is the 'active' arrow */
717 718 719 720 721 722 723 724 725
            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;

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

728
            	/* Update the CurVal if necessary */
729
            	UPDOWN_GetBuddyInt (infoPtr);
730

731
            	/* Set up the correct flags */
732 733
            	infoPtr->Flags |= FLAG_PRESSED;

734 735
            	/* repaint the control */
	    	InvalidateRect (infoPtr->Self, NULL, FALSE);
736

737
            	/* process the click */
738 739
		temp = (infoPtr->AccelCount && infoPtr->AccelVect) ? infoPtr->AccelVect[0].nInc : 1;
            	UPDOWN_DoAction (infoPtr, temp, infoPtr->Flags & FLAG_ARROW);
740

741 742
            	/* now capture all mouse messages */
            	SetCapture (infoPtr->Self);
743

744 745 746
            	/* and startup the first timer */
            	SetTimer(infoPtr->Self, TIMER_AUTOREPEAT, INITIAL_DELAY, 0);
	    }
747 748 749 750 751 752
            break;

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

753 754
            /* Now see which one is the 'active' arrow */
            arrow = UPDOWN_GetArrowFromPoint (infoPtr, &rect, pt);
755 756

            /* Update the flags if we are in/out */
757 758 759
	    infoPtr->Flags &= ~(FLAG_MOUSEIN | FLAG_ARROW);
            if(arrow) {
	        infoPtr->Flags |=  FLAG_MOUSEIN | arrow;
760 761 762
            } else {
	        if(infoPtr->AccelIndex != -1) infoPtr->AccelIndex = 0;
            }
763

764
            /* If state changed, redraw the control */
765
            if(temp != infoPtr->Flags)
766 767 768 769 770 771 772 773 774 775 776 777 778
		 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);
779 780 781 782
            break;

	default:
	    ERR("Impossible case (msg=%x)!\n", msg);
Alexandre Julliard's avatar
Alexandre Julliard committed
783 784 785 786 787 788 789
    }

}

/***********************************************************************
 *           UpDownWndProc
 */
790
static LRESULT WINAPI UpDownWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
Alexandre Julliard's avatar
Alexandre Julliard committed
791
{
792 793
    UPDOWN_INFO *infoPtr = UPDOWN_GetInfoPtr (hwnd);
    int temp;
794 795
    static const WCHAR themeClass[] = {'S','p','i','n',0};
    HTHEME theme;
796

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

799
    if (!infoPtr && (message != WM_CREATE))
800
        return DefWindowProcW (hwnd, message, wParam, lParam);
801 802

    switch(message)
Alexandre Julliard's avatar
Alexandre Julliard committed
803
    {
804
        case WM_CREATE:
805
            infoPtr = (UPDOWN_INFO*)Alloc (sizeof(UPDOWN_INFO));
806
	    SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
807 808 809

	    /* initialize the info struct */
	    infoPtr->Self = hwnd;
810 811
	    infoPtr->Notify = ((LPCREATESTRUCTW)lParam)->hwndParent;
            infoPtr->dwStyle = ((LPCREATESTRUCTW)lParam)->style;
812 813 814
	    infoPtr->AccelCount = 0;
	    infoPtr->AccelVect = 0;
	    infoPtr->AccelIndex = -1;
815
	    infoPtr->CurVal = 0;
816 817
	    infoPtr->MinVal = 100;
	    infoPtr->MaxVal = 0;
818 819 820 821
	    infoPtr->Base  = 10; /* Default to base 10  */
	    infoPtr->Buddy = 0;  /* No buddy window yet */
	    infoPtr->Flags = 0;  /* And no flags        */

822 823
            SetWindowLongW (hwnd, GWL_STYLE, infoPtr->dwStyle & ~WS_BORDER);

824
            /* Do we pick the buddy win ourselves? */
825
	    if (infoPtr->dwStyle & UDS_AUTOBUDDY)
826
		UPDOWN_SetBuddy (infoPtr, GetWindow (hwnd, GW_HWNDPREV));
827

828 829
            OpenThemeData (hwnd, themeClass);

830
	    TRACE("UpDown Ctrl creation, hwnd=%p\n", hwnd);
831
	    break;
832

833
	case WM_DESTROY:
834
	    Free (infoPtr->AccelVect);
Alexandre Julliard's avatar
Alexandre Julliard committed
835

836
	    if(infoPtr->Buddy) RemovePropW(infoPtr->Buddy, BUDDY_UPDOWN_HWND);
837

838
	    Free (infoPtr);
839
	    SetWindowLongPtrW (hwnd, 0, 0);
840 841
            theme = GetWindowTheme (hwnd);
            CloseThemeData (theme);
842
	    TRACE("UpDown Ctrl destruction, hwnd=%p\n", hwnd);
843
	    break;
844

845
	case WM_ENABLE:
846 847 848 849 850 851
	    if (wParam) {
		infoPtr->dwStyle &= ~WS_DISABLED;
	    } else {
		infoPtr->dwStyle |= WS_DISABLED;
	    	UPDOWN_CancelMode (infoPtr);
	    }
852
	    InvalidateRect (infoPtr->Self, NULL, FALSE);
853 854
	    break;

855 856 857 858 859 860 861
        case WM_STYLECHANGED:
            if (wParam == GWL_STYLE) {
                infoPtr->dwStyle = ((LPSTYLESTRUCT)lParam)->styleNew;
	        InvalidateRect (infoPtr->Self, NULL, FALSE);
            }
            break;

862 863 864 865 866 867 868
        case WM_THEMECHANGED:
            theme = GetWindowTheme (hwnd);
            CloseThemeData (theme);
            OpenThemeData (hwnd, themeClass);
            InvalidateRect (hwnd, NULL, FALSE);
            break;

869
	case WM_TIMER:
870 871 872 873 874 875 876
	   /* 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);
	   }

877
	   /* if initial timer, kill it and start the repeat timer */
878 879
  	   if(wParam == TIMER_AUTOREPEAT) {
		KillTimer(hwnd, TIMER_AUTOREPEAT);
880 881 882 883 884 885 886 887
		/* 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;
		}
888
		SetTimer(hwnd, TIMER_ACCEL, temp, 0);
889 890 891 892 893
      	    }

	    /* now, if the mouse is above us, do the thing...*/
	    if(infoPtr->Flags & FLAG_MOUSEIN) {
		temp = infoPtr->AccelIndex == -1 ? 1 : infoPtr->AccelVect[infoPtr->AccelIndex].nInc;
894
		UPDOWN_DoAction(infoPtr, temp, infoPtr->Flags & FLAG_ARROW);
895

896
		if(infoPtr->AccelIndex != -1 && infoPtr->AccelIndex < infoPtr->AccelCount-1) {
897
		    KillTimer(hwnd, TIMER_ACCEL);
898 899 900
		    infoPtr->AccelIndex++; /* move to the next accel info */
		    temp = infoPtr->AccelVect[infoPtr->AccelIndex].nSec * 1000 + 1;
	  	    /* make sure we have at least 1ms intervals */
901
		    SetTimer(hwnd, TIMER_ACCEL, temp, 0);
902 903 904 905 906 907 908 909
		}
	    }
	    break;

	case WM_CANCELMODE:
	  return UPDOWN_CancelMode (infoPtr);

	case WM_LBUTTONUP:
910
	    if (GetCapture() != infoPtr->Self) break;
911

912 913
	    if ( (infoPtr->Flags & FLAG_MOUSEIN) &&
		 (infoPtr->Flags & FLAG_ARROW) ) {
914

915
	    	SendMessageW( infoPtr->Notify,
916
			      (infoPtr->dwStyle & UDS_HORZ) ? WM_HSCROLL : WM_VSCROLL,
917 918
                  	      MAKELONG(SB_ENDSCROLL, infoPtr->CurVal),
			      (LPARAM)hwnd);
919 920 921 922
		if (UPDOWN_IsBuddyEdit(infoPtr))
		    SendMessageW(infoPtr->Buddy, EM_SETSEL, 0, MAKELONG(0, -1));
	    }
	    UPDOWN_CancelMode(infoPtr);
923
	    break;
924

925 926
	case WM_LBUTTONDOWN:
	case WM_MOUSEMOVE:
927
        case WM_MOUSELEAVE:
928
	    if(UPDOWN_IsEnabled(infoPtr))
929
		UPDOWN_HandleMouseEvent (infoPtr, message, (SHORT)LOWORD(lParam), (SHORT)HIWORD(lParam));
930 931 932
	    break;

	case WM_KEYDOWN:
933
	    if((infoPtr->dwStyle & UDS_ARROWKEYS) && UPDOWN_IsEnabled(infoPtr))
934
		return UPDOWN_KeyPressed(infoPtr, (int)wParam);
935
	    break;
936

937
	case WM_PRINTCLIENT:
938
	case WM_PAINT:
939
	    return UPDOWN_Paint (infoPtr, (HDC)wParam);
940

941 942 943 944 945 946 947 948 949 950
	case UDM_GETACCEL:
	    if (wParam==0 && lParam==0) return infoPtr->AccelCount;
	    if (wParam && lParam) {
	        temp = min(infoPtr->AccelCount, wParam);
	        memcpy((void *)lParam, infoPtr->AccelVect, temp*sizeof(UDACCEL));
	        return temp;
      	    }
	    return 0;

	case UDM_SETACCEL:
951 952
	    TRACE("UDM_SETACCEL\n");

953
	    if(infoPtr->AccelVect) {
954
		Free (infoPtr->AccelVect);
955 956 957 958
		infoPtr->AccelCount = 0;
		infoPtr->AccelVect  = 0;
      	    }
	    if(wParam==0) return TRUE;
959
	    infoPtr->AccelVect = Alloc (wParam*sizeof(UDACCEL));
960 961
	    if(infoPtr->AccelVect == 0) return FALSE;
	    memcpy(infoPtr->AccelVect, (void*)lParam, wParam*sizeof(UDACCEL));
962 963 964 965 966
            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);

967 968 969 970 971 972
    	    return TRUE;

	case UDM_GETBASE:
	    return infoPtr->Base;

	case UDM_SETBASE:
973
	    TRACE("UpDown Ctrl new base(%ld), hwnd=%p\n", wParam, hwnd);
974 975 976 977 978 979 980 981
	    if (wParam==10 || wParam==16) {
		temp = infoPtr->Base;
		infoPtr->Base = wParam;
		return temp;
	    }
	    break;

	case UDM_GETBUDDY:
982
	    return (LRESULT)infoPtr->Buddy;
983 984

	case UDM_SETBUDDY:
985
	    return (LRESULT)UPDOWN_SetBuddy (infoPtr, (HWND)wParam);
986 987 988 989 990 991

	case UDM_GETPOS:
	    temp = UPDOWN_GetBuddyInt (infoPtr);
	    return MAKELONG(infoPtr->CurVal, temp ? 0 : 1);

	case UDM_SETPOS:
992
	    temp = (short)LOWORD(lParam);
993
	    TRACE("UpDown Ctrl new value(%d), hwnd=%p\n", temp, hwnd);
994 995 996 997
	    if(!UPDOWN_InBounds(infoPtr, temp)) {
		if(temp < infoPtr->MinVal) temp = infoPtr->MinVal;
		if(temp > infoPtr->MaxVal) temp = infoPtr->MaxVal;
	    }
998 999
	    wParam = infoPtr->CurVal;
	    infoPtr->CurVal = temp;
1000
	    UPDOWN_SetBuddyInt (infoPtr);
1001
	    return wParam;            /* return prev value */
1002

1003 1004 1005 1006
	case UDM_GETRANGE:
	    return MAKELONG(infoPtr->MaxVal, infoPtr->MinVal);

	case UDM_SETRANGE:
1007 1008 1009 1010
                                                     /* we must have:     */
	    infoPtr->MaxVal = (short)(lParam);       /* UD_MINVAL <= Max <= UD_MAXVAL */
	    infoPtr->MinVal = (short)HIWORD(lParam); /* UD_MINVAL <= Min <= UD_MAXVAL */
                                                     /* |Max-Min| <= UD_MAXVAL        */
1011
	    TRACE("UpDown Ctrl new range(%d to %d), hwnd=%p\n",
1012
		  infoPtr->MinVal, infoPtr->MaxVal, hwnd);
1013
	    break;
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024

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

	case UDM_SETRANGE32:
	    infoPtr->MinVal = (INT)wParam;
	    infoPtr->MaxVal = (INT)lParam;
	    if (infoPtr->MaxVal <= infoPtr->MinVal)
		infoPtr->MaxVal = infoPtr->MinVal + 1;
1025
	    TRACE("UpDown Ctrl new range(%d to %d), hwnd=%p\n",
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
		  infoPtr->MinVal, infoPtr->MaxVal, hwnd);
	    break;

	case UDM_GETPOS32:
	    if ((LPBOOL)lParam != NULL) *((LPBOOL)lParam) = TRUE;
	    return infoPtr->CurVal;

	case UDM_SETPOS32:
	    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 */
1040
	    UPDOWN_SetBuddyInt (infoPtr);
1041 1042
	    return temp;                    /* return prev value */

1043 1044 1045 1046 1047 1048 1049 1050 1051
	case UDM_GETUNICODEFORMAT:
	    /* we lie a bit here, we're always using Unicode internally */
	    return infoPtr->UnicodeFormat;

	case UDM_SETUNICODEFORMAT:
	    /* do we really need to honour this flag? */
	    temp = infoPtr->UnicodeFormat;
	    infoPtr->UnicodeFormat = (BOOL)wParam;
	    return temp;
1052 1053

	default:
1054
	    if ((message >= WM_USER) && (message < WM_APP))
1055
		ERR("unknown msg %04x wp=%04lx lp=%08lx\n", message, wParam, lParam);
1056 1057
	    return DefWindowProcW (hwnd, message, wParam, lParam);
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
1058 1059 1060 1061

    return 0;
}

Alexandre Julliard's avatar
Alexandre Julliard committed
1062
/***********************************************************************
1063
 *		UPDOWN_Register	[Internal]
Alexandre Julliard's avatar
Alexandre Julliard committed
1064 1065 1066
 *
 * Registers the updown window class.
 */
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
1067
void UPDOWN_Register(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
1068
{
1069
    WNDCLASSW wndClass;
Alexandre Julliard's avatar
Alexandre Julliard committed
1070

1071
    ZeroMemory( &wndClass, sizeof( WNDCLASSW ) );
Huw Davies's avatar
Huw Davies committed
1072
    wndClass.style         = CS_GLOBALCLASS | CS_VREDRAW | CS_HREDRAW;
1073
    wndClass.lpfnWndProc   = UpDownWindowProc;
Alexandre Julliard's avatar
Alexandre Julliard committed
1074
    wndClass.cbClsExtra    = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
1075
    wndClass.cbWndExtra    = sizeof(UPDOWN_INFO*);
1076
    wndClass.hCursor       = LoadCursorW( 0, (LPWSTR)IDC_ARROW );
1077
    wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
1078
    wndClass.lpszClassName = UPDOWN_CLASSW;
1079

1080
    RegisterClassW( &wndClass );
Alexandre Julliard's avatar
Alexandre Julliard committed
1081 1082
}

1083 1084 1085 1086 1087 1088

/***********************************************************************
 *		UPDOWN_Unregister	[Internal]
 *
 * Unregisters the updown window class.
 */
Dimitrie O. Paun's avatar
Dimitrie O. Paun committed
1089
void UPDOWN_Unregister (void)
1090
{
1091
    UnregisterClassW (UPDOWN_CLASSW, NULL);
1092
}