Changeset 11923


Ignore:
Timestamp:
Oct 17, 1999, 5:28:44 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
tags/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified tags/trunk/ChangeLog

    r11922 r11923  
    1  /* $Id: ChangeLog,v 1.332 1999-10-17 12:19:13 cbratschi Exp $ */
    2 
     1 /* $Id: ChangeLog,v 1.333 1999-10-17 15:28:44 sandervl Exp $ */
     2
     3 99-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
     4        - USER32: Ported AdjustWindowRectEx from Wine (990815)
     5                  Changed GetClientRect to return rectangle stored in
     6                  window object.
     7                  Ported (Begin/End)DeferWindowPos from Wine (990815)
     8                  Ported GetWindow from Wine (990815)
     9                  Fixed dialog control creation bug (create ascii controls when
     10                  parent window is ascii)
    311 99-10-17: Christoph Bratschi <cbratschi@datacomm.ch>
    412        - USER32: replaced OS/2 scrollbars by WINE scrollbars
     
    917
    1018 99-10-17: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
    11     - KERNEL32: Removed exception throwing from Pe2Lx classes.
    12                 Implemented TLS support in Pe2Lx classes.
     19        - KERNEL32: Removed exception throwing from Pe2Lx classes.
     20                    Implemented TLS support in Pe2Lx classes.
    1321
    1422 99-10-16: Yuri Dario <mc6530@mclink.it>
     
    8997                  has titlebar. (too many Opera windows in tasklist)
    9098                  Clear unsupported frame styles (i.e. no titlebar & minimize/maximize button)
    91                   Fixed MapOS2ToWin32Rectl & GetWindowRect.
     99                  Fixed MapOS2ToWin32Rectl & GetWindowRect. 
    92100                  Removed code that adds bordersize during SetWindowPos & window
    93101                  creation. Fixed listbox code instead. (use window rectangle
  • TabularUnified tags/trunk/include/win/winpos.h

    r10645 r11923  
    1 /* $Id: winpos.h,v 1.1 1999-05-24 20:19:22 ktk Exp $ */
     1/* $Id: winpos.h,v 1.2 1999-10-17 15:26:12 sandervl Exp $ */
    22
    33/*
     
    1010#define __WINE_WINPOS_H
    1111
     12#ifndef __WIN32OS2__
    1213#include "win.h"
    1314#include "wine/winuser16.h" /* for WINDOWPOS16 */
     15#endif //__WIN32OS2__
    1416
    1517#define DWP_MAGIC  ((INT)('W' | ('P' << 8) | ('O' << 16) | ('S' << 24)))
     
    2931} DWP;
    3032
    31 extern BOOL WINPOS_RedrawIconTitle( HWND hWnd );
    32 extern BOOL WINPOS_ShowIconTitle( WND* pWnd, BOOL bShow );
    33 extern void   WINPOS_GetMinMaxInfo( WND* pWnd, POINT *maxSize,
    34                                     POINT *maxPos, POINT *minTrack,
    35                                     POINT *maxTrack );
    36 extern UINT WINPOS_MinMaximize( WND* pWnd, UINT16 cmd, LPRECT16 lpPos);
    37 extern BOOL WINPOS_SetActiveWindow( HWND hWnd, BOOL fMouse,
    38                                       BOOL fChangeFocus );
    39 extern BOOL WINPOS_ChangeActiveWindow( HWND hwnd, BOOL mouseMsg );
    40 extern LONG WINPOS_SendNCCalcSize(HWND hwnd, BOOL calcValidRect,
    41                                   RECT *newWindowRect, RECT *oldWindowRect,
    42                                   RECT *oldClientRect, WINDOWPOS *winpos,
    43                                   RECT *newClientRect );
    44 extern LONG WINPOS_HandleWindowPosChanging16(WND *wndPtr, WINDOWPOS16 *winpos);
    45 extern LONG WINPOS_HandleWindowPosChanging(WND *wndPtr, WINDOWPOS *winpos);
    46 extern INT16 WINPOS_WindowFromPoint( WND* scopeWnd, POINT16 pt, WND **ppWnd );
    47 extern void WINPOS_CheckInternalPos( WND* wndPtr );
    48 extern BOOL WINPOS_ActivateOtherWindow(WND* pWnd);
    49 extern BOOL WINPOS_CreateInternalPosAtom(void);
    50 
    5133#endif  /* __WINE_WINPOS_H */
Note: See TracChangeset for help on using the changeset viewer.