Changeset 3350
- Timestamp:
- Apr 8, 2000, 8:31:07 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/changelog
r3349 r3350 1 /* $Id: changelog,v 1.875 2000-04-08 09:17:15 sandervl Exp $ */ 1 /* $Id: changelog,v 1.876 2000-04-08 18:30:41 cbratschi Exp $ */ 2 3 2000-04-08: Christoph Bratschi <cbratschi@datacomm.ch> 4 - COMCTL32: added new styles and functionality, bug fixes 2 5 3 6 2000-04-08: Sander van Leeuwen <sandervl@xs4all.nl> -
trunk/include/win/commctrl.h
r3242 r3350 1 /* $Id: commctrl.h,v 1.2 6 2000-03-26 16:29:38cbratschi Exp $ */1 /* $Id: commctrl.h,v 1.27 2000-04-08 18:30:10 cbratschi Exp $ */ 2 2 /* 3 3 * Common controls definitions … … 2466 2466 #define LVHT_TOLEFT 0x0040 2467 2467 2468 #define LVSCW_AUTOSIZE 0xFFFF//-1 2469 #define LVSCW_AUTOSIZE_USEHEADER 0xFFFE//-2 2470 2468 2471 #define LVM_FIRST 0x1000 2469 2472 #define LVM_GETBKCOLOR (LVM_FIRST+0) -
trunk/include/win/header.h
r2894 r3350 1 /* $Id: header.h,v 1. 8 2000-02-25 16:58:33cbratschi Exp $ */1 /* $Id: header.h,v 1.9 2000-04-08 18:30:11 cbratschi Exp $ */ 2 2 3 3 /* … … 61 61 } HEADER_INFO; 62 62 63 extern DWORD HEADER_GetExpandedColumnTextWidth(HWND hwnd,INT iItem); 64 extern LRESULT HEADER_GetItemRect(HWND hwnd,WPARAM wParam,LPARAM lParam); 63 65 64 66 extern VOID HEADER_Register (VOID); -
trunk/src/user32/win32wbasenonclient.cpp
r3341 r3350 1 /* $Id: win32wbasenonclient.cpp,v 1.2 1 2000-04-07 12:55:16 sandervlExp $ */1 /* $Id: win32wbasenonclient.cpp,v 1.22 2000-04-08 18:31:07 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 (non-client methods) … … 1012 1012 // As we don't need to clip anything when that occurs, this workaround 1013 1013 // solves the problem. 1014 if(rectClip.right == getWindowWidth() && rectClip.bottom == getWindowHeight()) 1015 { 1016 1017 1014 if(rectClip.right == getWindowWidth() && rectClip.bottom == getWindowHeight()) 1015 { 1016 clip = 0; 1017 rectClip = rect; 1018 1018 } 1019 1019 } … … 1056 1056 rect.top += GetSystemMetrics(SM_CYCAPTION); 1057 1057 } 1058 if( !clip || IntersectRect( &rfuzz, &r, &rectClip ) ) 1058 if( !clip || IntersectRect( &rfuzz, &r, &rectClip ) ) 1059 1059 DrawCaption(hdc,&r,active); 1060 1060 } … … 1087 1087 r.top = r.bottom - GetSystemMetrics(SM_CYHSCROLL) + 1; 1088 1088 FillRect( hdc, &r, GetSysColorBrush(COLOR_SCROLLBAR) ); 1089 //CB: todo: child window have sometimes a size grip (i.e. Notepad)1089 //CB: todo: child windows have sometimes a size grip (i.e. Notepad) 1090 1090 // WS_SIZEBOX isn't set in these cases 1091 1091 if (!(dwStyle & WS_CHILD)) … … 1320 1320 } 1321 1321 #ifdef DEBUG 1322 //SvL: Do NOT turn this into a dprintf. 1322 //SvL: Do NOT turn this into a dprintf. 1323 1323 else 1324 1324 if (wParam == SC_PUTMARK)
Note:
See TracChangeset
for help on using the changeset viewer.