mirror of
https://github.com/reactos/wine.git
synced 2025-02-17 19:39:00 +00:00
![Alexandre Julliard](/assets/img/avatar_default.png)
Sun Mar 2 14:57:37 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [*/*] Completed transition to new Win32 types. * [tools/build.c] Changed CallTo16_regs to take a CONTEXT argument. * [memory/virtual.c] Rewrote Virtual* functions. Implemented CreateFileMapping and OpenFileMapping. Broke MapViewOfFile ;-) * [win32/k32obj.c] Implemented named objects. Sun Mar 2 00:33:21 1997 Mikolaj Zalewski <zmikolaj@free.polbox.pl> * [misc/ole2nls.c] [resources/sysres_Pl.c] Added Polish language support. Sat Mar 1 13:31:25 1997 David Faure <david.faure@ifhamy.insa-lyon.fr> * [windows/keyboard.c] Wrote VkKeyScan and tested with Winword. Works ok except for dead chars. Fri Feb 28 09:34:03 1997 John Harvey <john@division.co.uk> * [graphics/win16drv/font.c] [graphics/win16drv/init.c] [graphics/win16drv/obects.c] Added start of SelectObject call for printer driver. Write should now run with the printer driver enabled. Wed Feb 26 20:03:32 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [debugger/*.c] Re-added a disassembly command (list serves another functionality now). * [loader/pe_resource.c] Added # support. * [misc/ole2nls.c] GetStringType* added. * [objects/color.c] VGA16 fixes. * [windows/class.c] Look for global widget classes too in GetClassInfo32. * [windows/sysmetrics.c] [include/windows.h] Added Win32 sysmetrics. Sat Feb 22 23:56:29 1997 Jukka Iivonen <iivonen@cc.helsinki.fi> * [documentation/languages] The fourth case updated. * [if1632/ntdll.spec] Added some is* and to* functions. Sat Feb 22 23:05:47 1997 Morten Welinder <terra@diku.dk> * [configure.in] Add tests for wait4 and waitpid. * [loader/signal.c] Clean up OS-dependent code. I hope I got it right, :-) * [tools/wineconf] Recognise vfat file systems. Ignore floppy drives specified in /etc/fstab. * [files/*] Fix function names in error messages. Sat Feb 22 06:15:13 1997 Pablo Saratxaga <srtxg@chanae.stben.be> * [windows/keyboard.c] [windows/message.c] Support for more latin alphabet dead keys for iso-8859-{1,2,3,4,9} characters sets. Fri Feb 21 20:37:50 1997 Huw D M Davies <h.davies1@physics.oxford.ac.uk> * [controls/edit.c] Fix incorrect arg order in LOCAL_Alloc() call. Fri Feb 21 18:19:17 1997 Andrew Taylor <andrew@riscan.com> * [multimedia/mmsystem.c] [multimedia/mcistring.c] Fixed bug related to device IDs returned by multimedia system. Implemented mciGetDeviceID. Sat Feb 15 00:58:19 1997 Jimen Ching <jching@aloha.com> * [debugger/dbg.y] Do not dereference invalid expressions.
373 lines
11 KiB
C
373 lines
11 KiB
C
/*
|
|
* Default dialog procedure
|
|
*
|
|
* Copyright 1993, 1996 Alexandre Julliard
|
|
*
|
|
*/
|
|
|
|
#include "windows.h"
|
|
#include "dialog.h"
|
|
#include "win.h"
|
|
#include "winproc.h"
|
|
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_SetFocus
|
|
*
|
|
* Set the focus to a control of the dialog, selecting the text if
|
|
* the control is an edit dialog.
|
|
*/
|
|
static void DEFDLG_SetFocus( HWND32 hwndDlg, HWND32 hwndCtrl )
|
|
{
|
|
HWND32 hwndPrev = GetFocus32();
|
|
|
|
if (IsChild32( hwndDlg, hwndPrev ))
|
|
{
|
|
if (SendMessage16( hwndPrev, WM_GETDLGCODE, 0, 0 ) & DLGC_HASSETSEL)
|
|
SendMessage16( hwndPrev, EM_SETSEL16, TRUE, MAKELONG( -1, 0 ) );
|
|
}
|
|
if (SendMessage16( hwndCtrl, WM_GETDLGCODE, 0, 0 ) & DLGC_HASSETSEL)
|
|
SendMessage16( hwndCtrl, EM_SETSEL16, FALSE, MAKELONG( 0, -1 ) );
|
|
SetFocus32( hwndCtrl );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_SaveFocus
|
|
*/
|
|
static BOOL32 DEFDLG_SaveFocus( HWND32 hwnd, DIALOGINFO *infoPtr )
|
|
{
|
|
HWND32 hwndFocus = GetFocus32();
|
|
|
|
if (!hwndFocus || !IsChild32( hwnd, hwndFocus )) return FALSE;
|
|
infoPtr->hwndFocus = hwndFocus;
|
|
/* Remove default button */
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_RestoreFocus
|
|
*/
|
|
static BOOL32 DEFDLG_RestoreFocus( HWND32 hwnd, DIALOGINFO *infoPtr )
|
|
{
|
|
if (!infoPtr->hwndFocus || IsIconic32(hwnd)) return FALSE;
|
|
if (!IsWindow32( infoPtr->hwndFocus )) return FALSE;
|
|
DEFDLG_SetFocus( hwnd, infoPtr->hwndFocus );
|
|
infoPtr->hwndFocus = 0;
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_FindDefButton
|
|
*
|
|
* Find the current default push-button.
|
|
*/
|
|
static HWND32 DEFDLG_FindDefButton( HWND32 hwndDlg )
|
|
{
|
|
HWND32 hwndChild = GetWindow32( hwndDlg, GW_CHILD );
|
|
while (hwndChild)
|
|
{
|
|
if (SendMessage16( hwndChild, WM_GETDLGCODE, 0, 0 ) & DLGC_DEFPUSHBUTTON)
|
|
break;
|
|
hwndChild = GetWindow32( hwndChild, GW_HWNDNEXT );
|
|
}
|
|
return hwndChild;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_SetDefButton
|
|
*
|
|
* Set the new default button to be hwndNew.
|
|
*/
|
|
static BOOL32 DEFDLG_SetDefButton( HWND32 hwndDlg, DIALOGINFO *dlgInfo,
|
|
HWND32 hwndNew )
|
|
{
|
|
if (hwndNew &&
|
|
!(SendMessage16(hwndNew, WM_GETDLGCODE, 0, 0 ) & DLGC_UNDEFPUSHBUTTON))
|
|
return FALSE; /* Destination is not a push button */
|
|
|
|
if (dlgInfo->idResult) /* There's already a default pushbutton */
|
|
{
|
|
HWND32 hwndOld = GetDlgItem32( hwndDlg, dlgInfo->idResult );
|
|
if (SendMessage32A( hwndOld, WM_GETDLGCODE, 0, 0) & DLGC_DEFPUSHBUTTON)
|
|
SendMessage32A( hwndOld, BM_SETSTYLE32, BS_PUSHBUTTON, TRUE );
|
|
}
|
|
if (hwndNew)
|
|
{
|
|
SendMessage32A( hwndNew, BM_SETSTYLE32, BS_DEFPUSHBUTTON, TRUE );
|
|
dlgInfo->idResult = GetDlgCtrlID32( hwndNew );
|
|
}
|
|
else dlgInfo->idResult = 0;
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_Proc
|
|
*
|
|
* Implementation of DefDlgProc(). Only handle messages that need special
|
|
* handling for dialogs.
|
|
*/
|
|
static LRESULT DEFDLG_Proc( HWND32 hwnd, UINT32 msg, WPARAM32 wParam,
|
|
LPARAM lParam, DIALOGINFO *dlgInfo )
|
|
{
|
|
HWND32 hwndDefId;
|
|
|
|
switch(msg)
|
|
{
|
|
case WM_ERASEBKGND:
|
|
FillWindow( hwnd, hwnd, (HDC16)wParam, (HBRUSH16)CTLCOLOR_DLG );
|
|
return 1;
|
|
|
|
case WM_NCDESTROY:
|
|
|
|
/* Free dialog heap (if created) */
|
|
if (dlgInfo->hDialogHeap)
|
|
{
|
|
GlobalUnlock16(dlgInfo->hDialogHeap);
|
|
GlobalFree16(dlgInfo->hDialogHeap);
|
|
dlgInfo->hDialogHeap = 0;
|
|
}
|
|
|
|
/* Delete font */
|
|
if (dlgInfo->hUserFont)
|
|
{
|
|
DeleteObject32( dlgInfo->hUserFont );
|
|
dlgInfo->hUserFont = 0;
|
|
}
|
|
|
|
/* Delete menu */
|
|
if (dlgInfo->hMenu)
|
|
{
|
|
DestroyMenu32( dlgInfo->hMenu );
|
|
dlgInfo->hMenu = 0;
|
|
}
|
|
|
|
/* Delete window procedure */
|
|
WINPROC_FreeProc( dlgInfo->dlgProc );
|
|
dlgInfo->dlgProc = (HWINDOWPROC)0;
|
|
dlgInfo->fEnd = TRUE; /* just in case */
|
|
|
|
/* Window clean-up */
|
|
return DefWindowProc32A( hwnd, msg, wParam, lParam );
|
|
|
|
case WM_SHOWWINDOW:
|
|
if (!wParam) DEFDLG_SaveFocus( hwnd, dlgInfo );
|
|
return DefWindowProc32A( hwnd, msg, wParam, lParam );
|
|
|
|
case WM_ACTIVATE:
|
|
if (wParam) DEFDLG_RestoreFocus( hwnd, dlgInfo );
|
|
else DEFDLG_SaveFocus( hwnd, dlgInfo );
|
|
return 0;
|
|
|
|
case WM_SETFOCUS:
|
|
DEFDLG_RestoreFocus( hwnd, dlgInfo );
|
|
return 0;
|
|
|
|
case DM_SETDEFID:
|
|
if (dlgInfo->fEnd) return 1;
|
|
DEFDLG_SetDefButton( hwnd, dlgInfo,
|
|
wParam ? GetDlgItem32( hwnd, wParam ) : 0 );
|
|
return 1;
|
|
|
|
case DM_GETDEFID:
|
|
if (dlgInfo->fEnd) return 0;
|
|
if (dlgInfo->idResult)
|
|
return MAKELONG( dlgInfo->idResult, DC_HASDEFID );
|
|
hwndDefId = DEFDLG_FindDefButton( hwnd );
|
|
if (hwndDefId)
|
|
return MAKELONG( GetDlgCtrlID32( hwndDefId ), DC_HASDEFID);
|
|
return 0;
|
|
|
|
case WM_NEXTDLGCTL:
|
|
{
|
|
HWND32 hwndDest = (HWND32)wParam;
|
|
if (!lParam)
|
|
hwndDest = GetNextDlgTabItem32(hwnd, GetFocus32(), wParam);
|
|
if (hwndDest) DEFDLG_SetFocus( hwnd, hwndDest );
|
|
DEFDLG_SetDefButton( hwnd, dlgInfo, hwndDest );
|
|
}
|
|
return 0;
|
|
|
|
case WM_GETFONT:
|
|
return dlgInfo->hUserFont;
|
|
|
|
case WM_CLOSE:
|
|
EndDialog32( hwnd, TRUE );
|
|
DestroyWindow32( hwnd );
|
|
return 0;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_Signoff
|
|
*/
|
|
static LRESULT DEFDLG_Signoff(DIALOGINFO* dlgInfo, UINT32 msg, BOOL16 fResult)
|
|
{
|
|
/* see SDK 3.1 */
|
|
|
|
if ((msg >= WM_CTLCOLORMSGBOX && msg <= WM_CTLCOLORSTATIC) ||
|
|
msg == WM_CTLCOLOR || msg == WM_COMPAREITEM ||
|
|
msg == WM_VKEYTOITEM || msg == WM_CHARTOITEM ||
|
|
msg == WM_QUERYDRAGICON || msg == WM_INITDIALOG)
|
|
return fResult;
|
|
|
|
return dlgInfo->msgResult;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* DefDlgProc16 (USER.308)
|
|
*/
|
|
LRESULT DefDlgProc16( HWND16 hwnd, UINT16 msg, WPARAM16 wParam, LPARAM lParam )
|
|
{
|
|
DIALOGINFO * dlgInfo;
|
|
BOOL16 result = FALSE;
|
|
WND * wndPtr = WIN_FindWndPtr( hwnd );
|
|
|
|
if (!wndPtr) return 0;
|
|
dlgInfo = (DIALOGINFO *)&wndPtr->wExtra;
|
|
dlgInfo->msgResult = 0;
|
|
|
|
if (dlgInfo->dlgProc) /* Call dialog procedure */
|
|
result = (BOOL16)CallWindowProc16( (WNDPROC16)dlgInfo->dlgProc,
|
|
hwnd, msg, wParam, lParam );
|
|
|
|
/* Check if window was destroyed by dialog procedure */
|
|
|
|
if (!result && IsWindow32(hwnd))
|
|
{
|
|
/* callback didn't process this message */
|
|
|
|
switch(msg)
|
|
{
|
|
case WM_ERASEBKGND:
|
|
case WM_SHOWWINDOW:
|
|
case WM_ACTIVATE:
|
|
case WM_SETFOCUS:
|
|
case DM_SETDEFID:
|
|
case DM_GETDEFID:
|
|
case WM_NEXTDLGCTL:
|
|
case WM_GETFONT:
|
|
case WM_CLOSE:
|
|
case WM_NCDESTROY:
|
|
return DEFDLG_Proc( (HWND32)hwnd, msg,
|
|
(WPARAM32)wParam, lParam, dlgInfo );
|
|
case WM_INITDIALOG:
|
|
case WM_VKEYTOITEM:
|
|
case WM_COMPAREITEM:
|
|
case WM_CHARTOITEM:
|
|
break;
|
|
|
|
default:
|
|
return DefWindowProc16( hwnd, msg, wParam, lParam );
|
|
}
|
|
}
|
|
return DEFDLG_Signoff(dlgInfo, msg, result);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DefDlgProc32A (USER32.119)
|
|
*/
|
|
LRESULT DefDlgProc32A( HWND32 hwnd, UINT32 msg, WPARAM32 wParam, LPARAM lParam)
|
|
{
|
|
DIALOGINFO * dlgInfo;
|
|
BOOL16 result = FALSE;
|
|
WND * wndPtr = WIN_FindWndPtr( hwnd );
|
|
|
|
if (!wndPtr) return 0;
|
|
dlgInfo = (DIALOGINFO *)&wndPtr->wExtra;
|
|
dlgInfo->msgResult = 0;
|
|
|
|
if (dlgInfo->dlgProc) /* Call dialog procedure */
|
|
result = (BOOL16)CallWindowProc32A( (WNDPROC32)dlgInfo->dlgProc,
|
|
hwnd, msg, wParam, lParam );
|
|
|
|
/* Check if window was destroyed by dialog procedure */
|
|
|
|
if (!result && IsWindow32(hwnd))
|
|
{
|
|
/* callback didn't process this message */
|
|
|
|
switch(msg)
|
|
{
|
|
case WM_ERASEBKGND:
|
|
case WM_SHOWWINDOW:
|
|
case WM_ACTIVATE:
|
|
case WM_SETFOCUS:
|
|
case DM_SETDEFID:
|
|
case DM_GETDEFID:
|
|
case WM_NEXTDLGCTL:
|
|
case WM_GETFONT:
|
|
case WM_CLOSE:
|
|
case WM_NCDESTROY:
|
|
return DEFDLG_Proc( (HWND32)hwnd, msg,
|
|
(WPARAM32)wParam, lParam, dlgInfo );
|
|
case WM_INITDIALOG:
|
|
case WM_VKEYTOITEM:
|
|
case WM_COMPAREITEM:
|
|
case WM_CHARTOITEM:
|
|
break;
|
|
|
|
default:
|
|
return DefWindowProc32A( hwnd, msg, wParam, lParam );
|
|
}
|
|
}
|
|
return DEFDLG_Signoff(dlgInfo, msg, result);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DefDlgProc32W (USER32.120)
|
|
*/
|
|
LRESULT DefDlgProc32W( HWND32 hwnd, UINT32 msg, WPARAM32 wParam, LPARAM lParam)
|
|
{
|
|
DIALOGINFO * dlgInfo;
|
|
BOOL16 result = FALSE;
|
|
WND * wndPtr = WIN_FindWndPtr( hwnd );
|
|
|
|
if (!wndPtr) return 0;
|
|
dlgInfo = (DIALOGINFO *)&wndPtr->wExtra;
|
|
dlgInfo->msgResult = 0;
|
|
|
|
if (dlgInfo->dlgProc) /* Call dialog procedure */
|
|
result = (BOOL16)CallWindowProc32W( (WNDPROC32)dlgInfo->dlgProc,
|
|
hwnd, msg, wParam, lParam );
|
|
|
|
/* Check if window was destroyed by dialog procedure */
|
|
|
|
if (!result && IsWindow32(hwnd))
|
|
{
|
|
/* callback didn't process this message */
|
|
|
|
switch(msg)
|
|
{
|
|
case WM_ERASEBKGND:
|
|
case WM_SHOWWINDOW:
|
|
case WM_ACTIVATE:
|
|
case WM_SETFOCUS:
|
|
case DM_SETDEFID:
|
|
case DM_GETDEFID:
|
|
case WM_NEXTDLGCTL:
|
|
case WM_GETFONT:
|
|
case WM_CLOSE:
|
|
case WM_NCDESTROY:
|
|
return DEFDLG_Proc( (HWND32)hwnd, msg,
|
|
(WPARAM32)wParam, lParam, dlgInfo );
|
|
case WM_INITDIALOG:
|
|
case WM_VKEYTOITEM:
|
|
case WM_COMPAREITEM:
|
|
case WM_CHARTOITEM:
|
|
break;
|
|
|
|
default:
|
|
return DefWindowProc32W( hwnd, msg, wParam, lParam );
|
|
}
|
|
}
|
|
return DEFDLG_Signoff(dlgInfo, msg, result);
|
|
}
|