Ignore:
Timestamp:
Aug 27, 2002, 11:30:50 AM (23 years ago)
Author:
sandervl
Message:

PF: Added support for WS_EX_TOPMOST

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.cpp

    r9101 r9143  
    1 /* $Id: win32wbase.cpp,v 1.336 2002-08-23 15:06:01 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.337 2002-08-27 09:30:50 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    365365                    return FALSE;
    366366            }
     367            if (window->getExStyle() & WS_EX_TOPMOST)
     368                 cs->dwExStyle |= WS_EX_TOPMOST;         
     369
    367370            RELEASE_WNDOBJ(window);
    368371            /* Windows does this for overlapped windows
     
    36113614                setExStyle(ss.styleNew);
    36123615                SendMessageA(getWindowHandle(),WM_STYLECHANGED,GWL_EXSTYLE,(LPARAM)&ss);
     3616                OSLibSetWindowStyle(getOS2FrameWindowHandle(), getOS2WindowHandle(), getStyle(), getExStyle());
    36133617                oldval = ss.styleOld;
    36143618                break;
Note: See TracChangeset for help on using the changeset viewer.