Changeset 3152 for trunk/include/win/toolbar.h
- Timestamp:
- Mar 18, 2000, 5:10:57 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/toolbar.h
r2125 r3152 1 /* $Id: toolbar.h,v 1. 5 1999-12-18 20:52:07 achimhaExp $ */1 /* $Id: toolbar.h,v 1.6 2000-03-18 16:10:56 cbratschi Exp $ */ 2 2 3 3 /* … … 35 35 typedef struct tagTOOLBAR_INFO 36 36 { 37 DWORD dwStructSize; /* size of TBBUTTON struct */ 37 COMCTL32_HEADER header; 38 39 DWORD dwStructSize; /* size of TBBUTTON struct */ 38 40 INT nHeight; /* height of the toolbar */ 39 41 INT nWidth; /* width of the toolbar */ … … 50 52 INT nNumBitmaps; /* number of bitmaps */ 51 53 INT nNumStrings; /* number of strings */ 52 BOOL bUnicode; /* ASCII (FALSE) or Unicode (TRUE)? */53 54 BOOL bCaptured; /* mouse captured? */ 54 55 INT nButtonDown; … … 61 62 HIMAGELIST himlDis; /* disabled image list */ 62 63 HWND hwndToolTip; /* handle to tool tip control */ 63 HWND hwndNotify; /* handle to the window that gets notifications */64 64 BOOL bTransparent; /* background transparency flag */ 65 65 BOOL bAutoSize; /* auto size deadlock indicator */ 66 66 BOOL bAnchor; /* anchor highlight enabled */ 67 DWORD 68 DWORD 67 DWORD dwExStyle; /* extended toolbar style */ 68 DWORD dwDTFlags; /* DrawText flags */ 69 69 70 COLORREF 70 COLORREF clrInsertMark; /* insert mark color */ 71 71 RECT rcBound; /* bounding rectangle */ 72 INT iVersion;73 72 74 73 TBUTTON_INFO *buttons; /* pointer to button array */ 75 74 LPWSTR *strings; /* pointer to string array */ 75 76 76 //Customize dialog 77 77 HWND hwndToolbar; … … 79 79 INT nNumOldButtons; 80 80 INT nMaxCustomID; 81 BOOL changed; 81 82 } TOOLBAR_INFO; 82 83
Note:
See TracChangeset
for help on using the changeset viewer.