Changeset 3350


Ignore:
Timestamp:
Apr 8, 2000, 8:31:07 PM (26 years ago)
Author:
cbratschi
Message:

* empty log message *

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
    25
    36 2000-04-08: Sander van Leeuwen <sandervl@xs4all.nl>
  • trunk/include/win/commctrl.h

    r3242 r3350  
    1 /* $Id: commctrl.h,v 1.26 2000-03-26 16:29:38 cbratschi Exp $ */
     1/* $Id: commctrl.h,v 1.27 2000-04-08 18:30:10 cbratschi Exp $ */
    22/*
    33 * Common controls definitions
     
    24662466#define LVHT_TOLEFT             0x0040
    24672467
     2468#define LVSCW_AUTOSIZE              0xFFFF//-1
     2469#define LVSCW_AUTOSIZE_USEHEADER    0xFFFE//-2
     2470
    24682471#define LVM_FIRST               0x1000
    24692472#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:33 cbratschi Exp $ */
     1/* $Id: header.h,v 1.9 2000-04-08 18:30:11 cbratschi Exp $ */
    22
    33/*
     
    6161} HEADER_INFO;
    6262
     63extern DWORD HEADER_GetExpandedColumnTextWidth(HWND hwnd,INT iItem);
     64extern LRESULT HEADER_GetItemRect(HWND hwnd,WPARAM wParam,LPARAM lParam);
    6365
    6466extern VOID HEADER_Register (VOID);
  • trunk/src/user32/win32wbasenonclient.cpp

    r3341 r3350  
    1 /* $Id: win32wbasenonclient.cpp,v 1.21 2000-04-07 12:55:16 sandervl Exp $ */
     1/* $Id: win32wbasenonclient.cpp,v 1.22 2000-04-08 18:31:07 cbratschi Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2 (non-client methods)
     
    10121012    //     As we don't need to clip anything when that occurs, this workaround
    10131013    //     solves the problem.
    1014     if(rectClip.right == getWindowWidth() && rectClip.bottom == getWindowHeight()) 
    1015     {
    1016         clip = 0;
    1017         rectClip = rect;
     1014    if(rectClip.right == getWindowWidth() && rectClip.bottom == getWindowHeight())
     1015    {
     1016        clip = 0;
     1017        rectClip = rect;
    10181018    }
    10191019  }
     
    10561056      rect.top += GetSystemMetrics(SM_CYCAPTION);
    10571057    }
    1058     if( !clip || IntersectRect( &rfuzz, &r, &rectClip ) ) 
     1058    if( !clip || IntersectRect( &rfuzz, &r, &rectClip ) )
    10591059      DrawCaption(hdc,&r,active);
    10601060  }
     
    10871087    r.top  = r.bottom - GetSystemMetrics(SM_CYHSCROLL) + 1;
    10881088    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)
    10901090    //    WS_SIZEBOX isn't set in these cases
    10911091    if (!(dwStyle & WS_CHILD))
     
    13201320        }
    13211321#ifdef DEBUG
    1322         //SvL: Do NOT turn this into a dprintf.
     1322        //SvL: Do NOT turn this into a dprintf.
    13231323        else
    13241324        if (wParam == SC_PUTMARK)
Note: See TracChangeset for help on using the changeset viewer.