2 * Tab control class extra info
4 * Copyright 1998 Anders Carlsson
10 typedef struct tagTAB_ITEM
18 RECT rect; /* bounding rectangle of the item */
21 typedef struct tagTAB_INFO
23 UINT uNumItem; /* number of tab items */
24 INT nHeight; /* height of the tab row */
25 HFONT hFont; /* handle to the current font */
26 HCURSOR hcurArrow; /* handle to the current cursor */
27 HIMAGELIST himl; /* handle to a image list (may be 0) */
28 HWND hwndToolTip; /* handle to tab's tooltip */
30 INT iSelected; /* the currently selected item */
31 INT uFocus; /* item which has the focus */
32 TAB_ITEM *items; /* pointer to an array of TAB_ITEM's */
34 BOOL DoRedraw; /* flag for redrawing when tab contents is changed*/
38 extern VOID TAB_Register (VOID);
39 extern VOID TAB_Unregister (VOID);
41 #endif /* __WINE_TAB_H */