Changeset 3152
- Timestamp:
- Mar 18, 2000, 5:10:57 PM (25 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/changelog ¶
r3151 r3152 1 /* $Id: changelog,v 1.815 2000-03-18 15:14:29 sandervl Exp $ */ 1 /* $Id: changelog,v 1.816 2000-03-18 16:10:02 cbratschi Exp $ */ 2 3 2000-03-18: Christoph Bratschi <cbratschi@datacomm.ch> 4 - USER32: merged with Corel WINE 20000317 5 added GCL_HICONSM support 6 fixed messagebox with no icon 7 - COMCTL32: merged with Corel WINE 20000317 + bug fixes 2 8 3 9 2000-03-18: Sander van Leeuwen <sandervl@xs4all.nl> -
TabularUnified trunk/include/win/listview.h ¶
r2894 r3152 73 73 EDITLABEL_ITEM *pedititem; 74 74 75 WPARAM charCode; 76 CHAR szSearchParam[ MAX_PATH ]; 77 DWORD timeSinceLastKeyPress; 78 INT nSearchParamLength; 75 79 } LISTVIEW_INFO; 76 80 -
TabularUnified trunk/include/win/rebar.h ¶
r2121 r3152 1 /* $Id: rebar.h,v 1. 3 1999-12-18 19:52:26 achimhaExp $ */1 /* $Id: rebar.h,v 1.4 2000-03-18 16:10:55 cbratschi Exp $ */ 2 2 3 3 /* … … 12 12 typedef struct tagREBAR_BAND 13 13 { 14 COMCTL32_HEADER header; 15 14 16 UINT fStyle; 15 17 COLORREF clrFore; … … 26 28 UINT cyIntegral; 27 29 UINT cxIdeal; 28 LPARAM 30 LPARAM lParam; 29 31 UINT cxHeader; 30 32 … … 37 39 RECT rcChild; /* calculated child rectangle */ 38 40 39 LPWSTR 41 LPWSTR lpText; 40 42 HWND hwndPrevParent; 41 43 } REBAR_BAND; … … 43 45 typedef struct tagREBAR_INFO 44 46 { 47 COMCTL32_HEADER header; 48 45 49 COLORREF clrBk; /* background color */ 46 50 COLORREF clrText; /* text color */ … … 48 52 UINT uNumBands; /* number of bands in the rebar */ 49 53 HWND hwndToolTip; /* handle to the tool tip control */ 50 HWND hwndNotify; /* notification window (parent) */51 54 HFONT hFont; /* handle to the rebar's font */ 52 55 SIZE imageSize; /* image size (image list) */ … … 54 57 SIZE calcSize; /* calculated rebar size */ 55 58 BOOL bAutoResize; /* auto resize deadlock flag */ 56 BOOL bUnicode; /* Unicode flag */57 59 HCURSOR hcurArrow; /* handle to the arrow cursor */ 58 60 HCURSOR hcurHorz; /* handle to the EW cursor */ 59 61 HCURSOR hcurVert; /* handle to the NS cursor */ 60 62 HCURSOR hcurDrag; /* handle to the drag cursor */ 61 INT iVersion; /* version number */62 63 63 64 REBAR_BAND *bands; /* pointer to the array of rebar bands */ 64 65 65 } REBAR_INFO; 66 66 -
TabularUnified trunk/include/win/status.h ¶
r4 r3152 1 /* $Id: status.h,v 1. 1 1999-05-24 20:19:19 ktkExp $ */1 /* $Id: status.h,v 1.2 2000-03-18 16:10:55 cbratschi Exp $ */ 2 2 3 3 /* … … 12 12 typedef struct 13 13 { 14 INT 15 INT 16 RECT 17 LPWSTR 18 HICON 14 INT x; 15 INT style; 16 RECT bound; 17 LPWSTR text; 18 HICON hIcon; 19 19 } STATUSWINDOWPART; 20 20 21 21 typedef struct 22 22 { 23 UINT16 numParts; 24 UINT16 textHeight; 23 COMCTL32_HEADER header; 24 25 UINT numParts; 26 UINT textHeight; 25 27 UINT height; 26 28 BOOL simple; … … 28 30 HFONT hFont; 29 31 HFONT hDefaultFont; 30 COLORREF clrBk; /* background color */ 31 BOOL bUnicode; /* unicode flag */ 32 STATUSWINDOWPART part0; /* simple window */ 33 STATUSWINDOWPART *parts; 32 COLORREF clrBk; /* background color */ 33 STATUSWINDOWPART part0; /* simple window */ 34 STATUSWINDOWPART *parts; 34 35 } STATUSWINDOWINFO; 35 36 -
TabularUnified trunk/include/win/tab.h ¶
r265 r3152 1 /* $Id: tab.h,v 1. 2 1999-07-04 19:03:36 sandervlExp $ */1 /* $Id: tab.h,v 1.3 2000-03-18 16:10:56 cbratschi Exp $ */ 2 2 3 3 /* … … 26 26 typedef struct tagTAB_INFO 27 27 { 28 COMCTL32_HEADER header; 29 28 30 UINT uNumItem; /* number of tab items */ 29 31 INT tabHeight; /* height of the tab row */ -
TabularUnified 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 -
TabularUnified trunk/include/win/tooltips.h ¶
r3143 r3152 1 /* $Id: tooltips.h,v 1. 2 2000-03-17 17:10:53cbratschi Exp $ */1 /* $Id: tooltips.h,v 1.3 2000-03-18 16:10:57 cbratschi Exp $ */ 2 2 3 3 /* … … 33 33 typedef struct tagTOOLTIPS_INFO 34 34 { 35 WCHAR szTipText[INFOTIPSIZE]; 35 COMCTL32_HEADER header; 36 37 WCHAR szTipText[INFOTIPSIZE]; 36 38 BOOL bActive; 37 39 BOOL bTrackActive; 38 40 UINT uNumTools; 39 COLORREF 40 COLORREF 41 COLORREF clrBk; 42 COLORREF clrText; 41 43 HFONT hFont; 42 44 INT xTrackPos; -
TabularUnified trunk/include/win/trackbar.h ¶
r3143 r3152 1 /* $Id: trackbar.h,v 1. 4 2000-03-17 17:10:53cbratschi Exp $ */1 /* $Id: trackbar.h,v 1.5 2000-03-18 16:10:57 cbratschi Exp $ */ 2 2 3 3 /* … … 41 41 } TRACKBAR_INFO; 42 42 43 44 43 #define TB_REFRESH_TIMER 1 45 44 #define TB_REFRESH_DELAY 1 46 47 48 45 49 46 extern VOID TRACKBAR_Register (VOID); -
TabularUnified trunk/include/win/updown.h ¶
r499 r3152 1 /* $Id: updown.h,v 1. 2 1999-08-14 17:23:24 achimhaExp $ */1 /* $Id: updown.h,v 1.3 2000-03-18 16:10:57 cbratschi Exp $ */ 2 2 3 3 /* … … 17 17 typedef struct 18 18 { 19 COMCTL32_HEADER header; 20 19 21 UINT AccelCount; /* Number of elements in AccelVect */ 20 UDACCEL* 22 UDACCEL* AccelVect; /* Vector containing AccelCount elements */ 21 23 INT Base; /* Base to display nr in the buddy window */ 22 24 INT CurVal; /* Current up-down value */
Note:
See TracChangeset
for help on using the changeset viewer.