Ignore:
Timestamp:
Jan 12, 2000, 1:41:20 PM (26 years ago)
Author:
sandervl
Message:

menu, resize/move fixes + ported Wine messagebox code

File:
1 edited

Legend:

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

    r2410 r2415  
    1 /* $Id: win32wbase.cpp,v 1.34 2000-01-11 17:34:43 cbratschi Exp $ */
     1/* $Id: win32wbase.cpp,v 1.35 2000-01-12 12:40:47 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    10231023}
    10241024//******************************************************************************
    1025 //TODO: Depending on menu type, we should send WM_INITMENU or WM_INITPOPUPMENU
    1026 //TODO: PM sends it for each submenu that gets activated; Windows only for the first
    1027 //      submenu; once the menu bar is active, moving the cursor doesn't generate other
    1028 //      WM_INITMENU msgs. Not really a problem, but might need to fix this later on.
    1029 //******************************************************************************
    1030 ULONG Win32BaseWindow::MsgInitMenu(MSG *msg)
    1031 {
    1032     return SendInternalMessageA(msg->message, msg->wParam, msg->lParam);
    1033 }
    1034 //******************************************************************************
    10351025//******************************************************************************
    10361026ULONG Win32BaseWindow::MsgNCPaint()
     
    10611051
    10621052    return rc;
    1063   } else return 0;
     1053  }
     1054  else return 0;
    10641055}
    10651056//******************************************************************************
     
    11001091    SendInternalMessageA(WM_GETTEXT, wndNameLength, (LPARAM)windowNameA);
    11011092    return windowNameA;
    1102 }
    1103 //******************************************************************************
    1104 //******************************************************************************
    1105 ULONG  Win32BaseWindow::MsgContextMenu(ULONG x,ULONG y)
    1106 {
    1107   return SendInternalMessageA(WM_CONTEXTMENU,Win32Hwnd,MAKELPARAM(x,y));
    11081093}
    11091094//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.