Changed the win31 style file dialog to 32 bits structures and
[wine] / include / trackbar.h
1 /*
2  * Trackbar class extra info
3  *
4  * Copyright 1998 Eric Kohl
5  */
6
7 #ifndef __WINE_TRACKBAR_H
8 #define __WINE_TRACKBAR_H
9
10 #include "windef.h"
11 #include "wingdi.h"
12
13 typedef struct tagTRACKBAR_INFO
14 {
15     INT  nRangeMin;
16     INT  nRangeMax;
17     INT  nLineSize;
18     INT  nPageSize;
19     INT  nSelMin;
20     INT  nSelMax;
21     INT  nPos;
22     UINT uThumbLen;
23     UINT uNumTics;
24     UINT  uTicFreq;
25     HWND hwndNotify;
26     HWND hwndToolTip;
27     HWND hwndBuddyLA;
28     HWND hwndBuddyRB;
29     INT  fLocation;
30     COLORREF clrBk;
31     INT  flags;
32     BOOL bFocus;
33     RECT rcChannel;
34     RECT rcSelection;
35     RECT rcThumb;
36     INT  dragPos;
37     LPLONG tics;
38 } TRACKBAR_INFO;
39
40
41 /* #define TB_REFRESH_TIMER       1 */
42 /* #define TB_REFRESH_DELAY       1 */
43
44
45
46 extern VOID TRACKBAR_Register (VOID);
47 extern VOID TRACKBAR_Unregister (VOID);
48
49 #endif  /* __WINE_TRACKBAR_H */