Ignore:
Timestamp:
Jul 20, 1999, 9:42:36 AM (26 years ago)
Author:
sandervl
Message:

Accelerator support (not working) + bugfixes

File:
1 edited

Legend:

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

    r340 r342  
    1 /* $Id: win32wnd.h,v 1.15 1999-07-19 18:40:44 sandervl Exp $ */
     1/* $Id: win32wnd.h,v 1.16 1999-07-20 07:42:36 sandervl Exp $ */
    22/*
    33 * Win32 Window Code for OS/2
     
    1818#include <gen_object.h>
    1919#include <win32wndchild.h>
     20#include <winres.h>
    2021
    2122class Win32Window;
     
    8788         void   setWindowId(DWORD id)           { windowId = id; };
    8889         ULONG  getWindowHeight()               { return rectClient.bottom - rectClient.top; };
     90         BOOL   isChild();
    8991
    9092         DWORD  getFlags()                      { return flags; };
    9193         void   setFlags(DWORD newflags)        { flags = newflags; };
    9294
     95         ULONG  GetAccelTable()                     { return (ULONG) acceltableResource; };
     96         BOOL   SetAccelTable(ULONG hAccel);
     97
     98         ULONG  GetMenu()                           { return (ULONG) menuResource; };
    9399         BOOL   SetMenu(ULONG hMenu);
     100
    94101         BOOL   ShowWindow(ULONG nCmdShow);
    95102         BOOL   SetWindowPos(HWND hwndInsertAfter, int x, int y, int cx, int cy, UINT fuFlags);
     
    182189   Win32Window *owner;                 
    183190
     191 Win32Resource *acceltableResource;
     192 Win32Resource *menuResource;
     193
    184194        char   *windowName;
    185195        ULONG   wndNameLength;
Note: See TracChangeset for help on using the changeset viewer.