Ensure that the WM_ENTERIDLE message is not sent if the wake-up event
[wine] / include / tab.h
1 /*
2  * Tab control class extra info
3  *
4  * Copyright 1998 Anders Carlsson
5  */
6
7 #ifndef __WINE_TAB_H  
8 #define __WINE_TAB_H
9
10 #include "commctrl.h"
11 #include "windef.h"
12
13 typedef struct tagTAB_ITEM
14 {
15   UINT   mask;
16   DWORD  dwState;
17   LPSTR  pszText;
18   INT    cchTextMax;
19   INT    iImage;
20   LPARAM lParam;
21   RECT   rect;    /* bounding rectangle of the item relative to the
22                    * leftmost item (the leftmost item, 0, would have a 
23                    * "left" member of 0 in this rectangle) */
24 } TAB_ITEM;
25
26 typedef struct tagTAB_INFO
27 {
28   UINT       uNumItem;        /* number of tab items */
29   INT        tabHeight;       /* height of the tab row */
30   INT        tabWidth;        /* width of tabs */
31   HFONT      hFont;           /* handle to the current font */
32   HCURSOR    hcurArrow;       /* handle to the current cursor */
33   HIMAGELIST himl;            /* handle to a image list (may be 0) */
34   HWND       hwndToolTip;     /* handle to tab's tooltip */
35   UINT       cchTextMax;
36   INT        leftmostVisible; /* Used for scrolling, this member contains
37                                * the index of the first visible item */
38   INT        iSelected;       /* the currently selected item */
39   INT        uFocus;          /* item which has the focus */
40   TAB_ITEM*  items;           /* pointer to an array of TAB_ITEM's */
41   BOOL       DoRedraw;        /* flag for redrawing when tab contents is changed*/
42   BOOL       needsScrolling;  /* TRUE if the size of the tabs is greater than 
43                                * the size of the control */
44   HWND       hwndUpDown;      /* Updown control used for scrolling */
45 } TAB_INFO;
46
47
48 extern VOID TAB_Register (VOID);
49 extern VOID TAB_Unregister (VOID);
50
51 #endif  /* __WINE_TAB_H */