mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
e2bfa4c722
Thu May 16 13:35:31 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [*/*.c] Renamed RECT, POINT and SIZE structures to RECT16, POINT16 and SIZE16. Implemented Win32 version of most functions that take these types as parameters. * [configure] Patched autoconf to attempt to correctly detect -lnsl and -lsocket. Please check this out. * [controls/button.c] Added support for Win32 BM_* messages. * [controls/menu.c] Avoid sending extra WM_MENUSELECT messages. This avoids crashes with Excel. * [memory.heap.c] [include/heap.h] Added support for SEGPTRs in Win32 heaps. Added a few macros to make using SEGPTRs easier. They are a bit slower than MAKE_SEGPTR, but they work with Win32. * [memory/atom.c] Implemented Win32 atom functions. * [memory/local.c] Fixed LocalReAlloc() changes to avoid copying the whole block twice. * [win32/memory.c] Use /dev/zero instead of MAP_ANON for VirtualAlloc(). * [windows/class.c] Properly implemented the Win32 class functions. * [windows/winproc.c] (New file) New file handling the message translation between Win16 and Win32. Mon May 13 18:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu> * [windows/mdi.c] [windows/menu.c] Improved WM_MDICREATE and WM_MDICASCADE handling. * [windows/event.c] [objects/bitblt.c] Handle GraphicsExpose event for BitBlt from screen to screen. * [windows/event.c] [windows/win.c] [windows/nonclient.c] Bunch of fixes for problems with -managed. * [windows/win.c] [windows/winpos.c] Changed conditions for WM_SIZE, WM_MOVE, and WM_GETMINMAXINFO in CreateWindow. * [windows/win.c] [windows/queue.c] [misc/user.c] Do not send WM_PARENTNOTIFY when in AppExit and call WH_SHELL on window creation/destruction. * [objects/palette.c] Crude RealizePalette(). At least something is visible in LviewPro. Sun May 12 02:05:00 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk> * [if1632/gdi32.spec] Added Rectangle (use win16 version). * [if1632/kernel32.spec] Added GetWindowsDirectoryA (use win16 GetWindowsDirectory). * [if1632/user32.spec] Added GetSubMenu, MoveWindow, SetScrollPos, SetScrollRange (use win16 versions). Added SetWindowsHookExA (empty stub for now). * [include/handle32.h] Changed #include <malloc.h> to #include <stdlib.h> to prevent hate message from FreeBSD compiler. * [win32/newfns.c] Added new function SetWindowsHookEx32A (empty stub for now). * [win32/user32.c] Removed redundant debugging printf statement. Sun May 12 01:24:57 1996 Huw D. M. Davies <h.davies1@physics.oxford.ac.uk> * [memory/local.c] Avoid creating adjacent free blocks. Free the block in LocalReAlloc() before allocating a new one. Fixed LocalReAlloc() for discarded blocks. Fri May 10 23:05:12 1996 Jukka Iivonen <iivonen@cc.helsinki.fi> * [resources/sysres_Fi.rc] ChooseFont and ChooseColor dialogs updated. Fri May 10 17:19:33 1996 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [files/drive.c,if1632/kernel.spec] GetCurrentDirectory(),SetCurrentDirectory() implemented. * [if1632/advapi32.spec] [if1632/kernel.spec] [if1632/shell.spec] [include/windows.h] [include/winreg.h] [loader/main.c] [misc/main.c] [misc/shell.c] [misc/registry.c] Registry fixes: - loads win95 registry databases, - save only updated keys on default, - now adhers to the new function naming standard, - minor cleanups. Tue May 7 22:36:13 1996 Albrecht Kleine <kleine@ak.sax.de> * [combo.c] Added WM_COMMAND-handling for interaction between EDIT and COMBOLBOX and synchronized mine with Greg Kreider's works. * [commdlg.c] Bugfix in ChooseFont: font size handling.
223 lines
6.0 KiB
C
223 lines
6.0 KiB
C
/*
|
|
* Default dialog procedure
|
|
*
|
|
* Copyright 1993 Alexandre Julliard
|
|
*
|
|
*/
|
|
|
|
#include "windows.h"
|
|
#include "dialog.h"
|
|
#include "win.h"
|
|
#include "stddebug.h"
|
|
/* #define DEBUG_DIALOG */
|
|
#include "debug.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( HWND hwndDlg, HWND hwndCtrl )
|
|
{
|
|
HWND hwndPrev = GetFocus();
|
|
|
|
if (IsChild( hwndDlg, hwndPrev ))
|
|
{
|
|
if (SendMessage( hwndPrev, WM_GETDLGCODE, 0, 0 ) & DLGC_HASSETSEL)
|
|
SendMessage( hwndPrev, EM_SETSEL, TRUE, MAKELONG( -1, 0 ) );
|
|
}
|
|
if (SendMessage( hwndCtrl, WM_GETDLGCODE, 0, 0 ) & DLGC_HASSETSEL)
|
|
SendMessage( hwndCtrl, EM_SETSEL, FALSE, MAKELONG( 0, -1 ) );
|
|
SetFocus( hwndCtrl );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_SaveFocus
|
|
*/
|
|
static BOOL DEFDLG_SaveFocus( HWND hwnd, DIALOGINFO *infoPtr )
|
|
{
|
|
HWND hwndFocus = GetFocus();
|
|
|
|
if (!hwndFocus || !IsChild( hwnd, hwndFocus )) return FALSE;
|
|
if (!infoPtr->hwndFocus) return FALSE; /* Already saved */
|
|
infoPtr->hwndFocus = hwndFocus;
|
|
/* Remove default button */
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_RestoreFocus
|
|
*/
|
|
static BOOL DEFDLG_RestoreFocus( HWND hwnd, DIALOGINFO *infoPtr )
|
|
{
|
|
if (!infoPtr->hwndFocus || IsIconic(hwnd)) return FALSE;
|
|
if (!IsWindow( infoPtr->hwndFocus )) return FALSE;
|
|
DEFDLG_SetFocus( hwnd, infoPtr->hwndFocus );
|
|
infoPtr->hwndFocus = 0;
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
#ifdef SUPERFLUOUS_FUNCTIONS
|
|
/***********************************************************************
|
|
* DEFDLG_FindDefButton
|
|
*
|
|
* Find the current default push-button.
|
|
*/
|
|
static HWND DEFDLG_FindDefButton( HWND hwndDlg )
|
|
{
|
|
HWND hwndChild = GetWindow( hwndDlg, GW_CHILD );
|
|
while (hwndChild)
|
|
{
|
|
if (SendMessage( hwndChild, WM_GETDLGCODE, 0, 0 ) & DLGC_DEFPUSHBUTTON)
|
|
break;
|
|
hwndChild = GetWindow( hwndChild, GW_HWNDNEXT );
|
|
}
|
|
return hwndChild;
|
|
}
|
|
#endif
|
|
|
|
|
|
/***********************************************************************
|
|
* DEFDLG_SetDefButton
|
|
*
|
|
* Set the new default button to be hwndNew.
|
|
*/
|
|
static BOOL DEFDLG_SetDefButton( HWND hwndDlg, DIALOGINFO *dlgInfo,
|
|
HWND hwndNew )
|
|
{
|
|
if (hwndNew &&
|
|
!(SendMessage( hwndNew, WM_GETDLGCODE, 0, 0 ) & DLGC_UNDEFPUSHBUTTON))
|
|
return FALSE; /* Destination is not a push button */
|
|
|
|
if (dlgInfo->msgResult) /* There's already a default pushbutton */
|
|
{
|
|
HWND hwndOld = GetDlgItem( hwndDlg, dlgInfo->msgResult );
|
|
if (SendMessage( hwndOld, WM_GETDLGCODE, 0, 0 ) & DLGC_DEFPUSHBUTTON)
|
|
SendMessage( hwndOld, BM_SETSTYLE16, BS_PUSHBUTTON, TRUE );
|
|
}
|
|
if (hwndNew)
|
|
{
|
|
SendMessage( hwndNew, BM_SETSTYLE16, BS_DEFPUSHBUTTON, TRUE );
|
|
dlgInfo->msgResult = GetDlgCtrlID( hwndNew );
|
|
}
|
|
else dlgInfo->msgResult = 0;
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DefDlgProc (USER.308)
|
|
*/
|
|
LRESULT DefDlgProc( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
|
|
{
|
|
DIALOGINFO * dlgInfo;
|
|
BOOL 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 = (BOOL)CallWindowProc16( dlgInfo->dlgProc, hwnd,
|
|
msg, wParam, lParam );
|
|
|
|
/* Check if window destroyed by dialog procedure */
|
|
wndPtr = WIN_FindWndPtr( hwnd );
|
|
if (!wndPtr) return result;
|
|
}
|
|
|
|
if (!result) switch(msg)
|
|
{
|
|
case WM_INITDIALOG:
|
|
break;
|
|
|
|
case WM_ERASEBKGND:
|
|
FillWindow( hwnd, hwnd, (HDC)wParam, (HBRUSH)CTLCOLOR_DLG );
|
|
return TRUE;
|
|
|
|
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)
|
|
{
|
|
DeleteObject( dlgInfo->hUserFont );
|
|
dlgInfo->hUserFont = 0;
|
|
}
|
|
|
|
/* Delete menu */
|
|
if (dlgInfo->hMenu)
|
|
{
|
|
DestroyMenu( dlgInfo->hMenu );
|
|
dlgInfo->hMenu = 0;
|
|
}
|
|
|
|
/* Window clean-up */
|
|
DefWindowProc( hwnd, msg, wParam, lParam );
|
|
break;
|
|
|
|
case WM_SHOWWINDOW:
|
|
if (!wParam) DEFDLG_SaveFocus( hwnd, dlgInfo );
|
|
return DefWindowProc( hwnd, msg, wParam, lParam );
|
|
|
|
case WM_ACTIVATE:
|
|
if (wParam) DEFDLG_RestoreFocus( hwnd, dlgInfo );
|
|
else DEFDLG_SaveFocus( hwnd, dlgInfo );
|
|
break;
|
|
|
|
case WM_SETFOCUS:
|
|
DEFDLG_RestoreFocus( hwnd, dlgInfo );
|
|
break;
|
|
|
|
case DM_SETDEFID:
|
|
if (dlgInfo->fEnd) return TRUE;
|
|
DEFDLG_SetDefButton( hwnd, dlgInfo,
|
|
wParam ? GetDlgItem( hwnd, wParam ) : 0 );
|
|
return TRUE;
|
|
|
|
case DM_GETDEFID:
|
|
if (dlgInfo->fEnd || !dlgInfo->msgResult) return 0;
|
|
return MAKELONG( dlgInfo->msgResult, DC_HASDEFID );
|
|
|
|
case WM_NEXTDLGCTL:
|
|
{
|
|
HWND hwndDest = (HWND)wParam;
|
|
if (!lParam)
|
|
{
|
|
HWND hwndPrev = GetFocus();
|
|
if (!hwndPrev) /* Set focus to the first item */
|
|
hwndDest = DIALOG_GetFirstTabItem( hwnd );
|
|
else
|
|
hwndDest = GetNextDlgTabItem( hwnd, hwndPrev, wParam );
|
|
}
|
|
if (hwndDest) DEFDLG_SetFocus( hwnd, hwndDest );
|
|
DEFDLG_SetDefButton( hwnd, dlgInfo, hwndDest );
|
|
}
|
|
break;
|
|
|
|
case WM_CLOSE:
|
|
EndDialog( hwnd, TRUE );
|
|
DestroyWindow( hwnd );
|
|
return 0;
|
|
|
|
default:
|
|
return DefWindowProc( hwnd, msg, wParam, lParam );
|
|
}
|
|
|
|
return result;
|
|
}
|