Ignore:
Timestamp:
Sep 5, 1999, 2:03:34 PM (26 years ago)
Author:
sandervl
Message:

Dialog update

File:
1 edited

Legend:

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

    r821 r833  
    1 /* $Id: win32dlg.h,v 1.4 1999-09-04 19:42:29 sandervl Exp $ */
     1/* $Id: win32dlg.h,v 1.5 1999-09-05 12:03:33 sandervl Exp $ */
    22/*
    33 * Win32 Dialog Code for OS/2
     
    6767       LRESULT  DefDlgProcW(UINT Msg, WPARAM wParam, LPARAM lParam);
    6868
    69        LRESULT  DefDlg_Epilog(UINT msg, BOOL fResult);
     69Win32BaseWindow *getDlgItem(int id);
     70
     71         HWND   getNextDlgTabItem(HWND hwndCtrl, BOOL fPrevious);
     72         BOOL   endDialog(int retval);
    7073
    7174virtual  ULONG  MsgOS2Create(HWND hwndOS2, ULONG initParam);
     
    7376virtual  LONG   SetWindowLongA(int index, ULONG value);
    7477virtual  ULONG  GetWindowLongA(int index);
     78
     79static   ULONG  GetDialogBaseUnits()  { return MAKELONG(xBaseUnit, yBaseUnit); };
    7580
    7681protected:
     
    8388       
    8489        LRESULT DefDlg_Proc(UINT msg, WPARAM wParam, LPARAM lParam);
     90        LRESULT DefDlg_Epilog(UINT msg, BOOL fResult);
     91
    8592        BOOL    setDefButton(HWND hwndNew );
    8693        HWND    findDefButton();
     
    110117
    111118/* Built-in class names (see _Undocumented_Windows_ p.418) */
    112 #define DIALOG_CLASS_NAME    "#32770"  /* Dialog */
    113 #define DIALOG_CLASS_ATOM    32770     /* Dialog */
     119#define DIALOG_CLASS_NAMEA    "#32770"  /* Dialog */
     120#define DIALOG_CLASS_NAMEW   L"#32770"  /* Dialog */
     121#define DIALOG_CLASS_ATOM       32770   /* Dialog */
    114122
    115123BOOL DIALOG_Register();
Note: See TracChangeset for help on using the changeset viewer.