Ignore:
Timestamp:
Jul 25, 1999, 11:19:22 AM (26 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/win32wnd.h

    r345 r391  
    1 /* $Id: win32wnd.h,v 1.17 1999-07-20 15:46:54 sandervl Exp $ */
     1/* $Id: win32wnd.h,v 1.18 1999-07-25 09:19:22 sandervl Exp $ */
    22/*
    33 * Win32 Window Code for OS/2
     
    6666         ULONG  MsgKillFocus(HWND hwnd);
    6767         ULONG  MsgCommand(ULONG cmd, ULONG Id, HWND hwnd);
     68         ULONG  MsgSysCommand(ULONG win32sc, ULONG x, ULONG y);
     69         ULONG  MsgChar(ULONG cmd, ULONG repeatcnt, ULONG scancode, ULONG vkey, ULONG keyflags);
    6870         ULONG  MsgButton(ULONG msg, ULONG x, ULONG y);
    6971         ULONG  MsgMouseMove(ULONG keystate, ULONG x, ULONG y);
     
    8183         HWND   getWindowHandle()               { return Win32Hwnd; };
    8284         HWND   getOS2WindowHandle()            { return OS2Hwnd; };
     85         HWND   getOS2FrameWindowHandle()       { return OS2HwndFrame; };
    8386   Win32Window *getParent()                     { return (Win32Window *)ChildWindow::GetParent(); };
    8487         void   setParent(Win32Window *pwindow) { ChildWindow::SetParent((ChildWindow *)pwindow); };
     
    254257#define CMD_ACCELERATOR         3
    255258
     259#define WIN32SC_SIZE         0xf000
     260#define WIN32SC_MOVE         0xf010
     261#define WIN32SC_MINIMIZE     0xf020
     262#define WIN32SC_MAXIMIZE     0xf030
     263#define WIN32SC_NEXTWINDOW   0xf040
     264#define WIN32SC_PREVWINDOW   0xf050
     265#define WIN32SC_CLOSE        0xf060
     266#define WIN32SC_VSCROLL      0xf070
     267#define WIN32SC_HSCROLL      0xf080
     268#define WIN32SC_MOUSEMENU    0xf090
     269#define WIN32SC_KEYMENU      0xf100
     270#define WIN32SC_ARRANGE      0xf110
     271#define WIN32SC_RESTORE      0xf120
     272#define WIN32SC_TASKLIST     0xf130
     273#define WIN32SC_SCREENSAVE   0xf140
     274#define WIN32SC_HOTKEY       0xf150
     275
     276#define KEY_ALTDOWN             1
     277#define KEY_PREVDOWN            2
     278#define KEY_UP                  4
     279
    256280#endif //__cplusplus
    257281
Note: See TracChangeset for help on using the changeset viewer.