71 lines
2.3 KiB
C
71 lines
2.3 KiB
C
/*
|
|
* Toolbar class extra info
|
|
*
|
|
* Copyright 1998 Eric Kohl
|
|
*/
|
|
|
|
#ifndef __WINE_TOOLBAR_H
|
|
#define __WINE_TOOLBAR_H
|
|
|
|
|
|
typedef struct tagTBUTTON_INFO
|
|
{
|
|
INT32 iBitmap;
|
|
INT32 idCommand;
|
|
BYTE fsState;
|
|
BYTE fsStyle;
|
|
DWORD dwData;
|
|
INT32 iString;
|
|
|
|
INT32 nRow;
|
|
RECT32 rect;
|
|
} TBUTTON_INFO;
|
|
|
|
|
|
typedef struct tagTOOLBAR_INFO
|
|
{
|
|
DWORD dwStructSize; /* size of TBBUTTON struct */
|
|
INT32 nHeight; /* height of the toolbar */
|
|
INT32 nWidth; /* width of the toolbar */
|
|
INT32 nButtonHeight;
|
|
INT32 nButtonWidth;
|
|
INT32 nBitmapHeight;
|
|
INT32 nBitmapWidth;
|
|
INT32 nIndent;
|
|
INT32 nRows; /* number of button rows */
|
|
INT32 nMaxTextRows; /* maximum number of text rows */
|
|
INT32 cxMin; /* minimum button width */
|
|
INT32 cxMax; /* maximum button width */
|
|
INT32 nNumButtons; /* number of buttons */
|
|
INT32 nNumBitmaps; /* number of bitmaps */
|
|
INT32 nNumStrings; /* number of strings */
|
|
BOOL32 bUnicode; /* ASCII (FALSE) or Unicode (TRUE)? */
|
|
BOOL32 bCaptured; /* mouse captured? */
|
|
INT32 nButtonDown;
|
|
INT32 nOldHit;
|
|
INT32 nHotItem; /* index of the "hot" item */
|
|
HFONT32 hFont; /* text font */
|
|
HIMAGELIST himlStd; /* standard image list */
|
|
HIMAGELIST himlDef; /* default image list */
|
|
HIMAGELIST himlHot; /* hot image list */
|
|
HIMAGELIST himlDis; /* disabled image list */
|
|
HWND32 hwndToolTip; /* handle to tool tip control */
|
|
HWND32 hwndNotify; /* handle to the window that gets notifications */
|
|
BOOL32 bTransparent; /* background transparency flag */
|
|
BOOL32 bAutoSize; /* auto size deadlock indicator */
|
|
DWORD dwExStyle; /* extended toolbar style */
|
|
DWORD dwDTFlags; /* DrawText flags */
|
|
|
|
COLORREF clrInsertMark; /* insert mark color */
|
|
RECT32 rcBound; /* bounding rectangle */
|
|
|
|
TBUTTON_INFO *buttons; /* pointer to button array */
|
|
LPWSTR *strings; /* pointer to string array */
|
|
} TOOLBAR_INFO;
|
|
|
|
|
|
extern VOID TOOLBAR_Register (VOID);
|
|
extern VOID TOOLBAR_Unregister (VOID);
|
|
|
|
#endif /* __WINE_TOOLBAR_H */
|