Mon Nov 1 14:40:21 1993 julliard@di.epfl.ch (Alexandre Julliard) * [if1632/user.spec] Removed some duplicate entries. * [include/dialog.h] [windows/dialog.c] Implemented dialog units and fonts. Added preliminary loading of dialog resources. Preliminary implementation of DialogBox(). Implemented Get/SetDlgItem* functions. * [windows/win.c] Implemented WM_PARENTNOTIFY message. Implemented CreateWindowEx() and GetWindow(). Completed DestroyWindow(). Mon Nov 1 18:19:34 1993 Erik Bos * [loader/signal.c] Added support for int 0x11 & 0x12. * [loader/int21.c] Improved function handling. Sun Oct 31 12:38:09 1993 David Metcalfe <david@prism.demon.co.uk> * [objects/font.c] Implemented GetCharWidth(). Wed Oct 27 09:56:06 1993 John Brezak <brezak@ch.hp.com> * [Makefile] Use GNU malloc. * [include/int21.h include/wine.h] Change sc_eflags to sc_efl . * [include/wine.h] Fix misplaced #endif Include <signal.h> for NetBSD * [loader/int21.c] Don't include <sys/vfs.h> in NetBSD Do include <sys/mount.h> in NetBSD Cleanup some lint. Mon Oct 26 17:59:01 1993 Erik Bos * [include/int21.h] Added. * [loader/int21.c] Added support for many dos ints. * [misc/file.c] [include/files.h] Moved OPEN_MAX and DosDriveStruct to files.h. Sun Oct 24 13:36:50 1993 David Metcalfe <david@prism.demon.co.uk> * [controls/button.c] Implemented CHECKBOX, AUTOCHECKBOX, 3STATE, AUTO3STATE, RADIOBUTTON, AUTORADIOBUTTON, GROUPBOX controls, together with a preliminary USERBUTTON control. * [objects/text.c] Corrected bugs in TEXT_NextLine() and added handling of prefix character. * [controls/button.c] Disabled focus handling by commenting out SetFocus() calls until serious bug can be found. Oct 20, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte) * [controls/listbox.c] Listbox control window Painting cleanup, new messages processed. * [controls/scroll.c] Scroll bar control window Painting cleanup. * [controls/combo.c] Combo box control window Painting cleanup. Tue Oct 12 17:50:11 1993 julliard@di.epfl.ch (Alexandre Julliard) * [objects/color.c] [objects/palette.c] [windows/syscolor.c] Better support for the private color map. Using a private map is now the default. * [windows/win.c] Bug fix. * [include/dialog.h] [windows/dialog.c] Implemented CreateDialog*() and IsDialogMessage(). * [misc/xt.c] [windows/defwnd.c] Moved DefWindowProc() to defwnd.c. Added WM_NCCREATE, WM_NCDESTROY and WM_CTLCOLOR handling. * [windows/defdlg.c] Started the implementation of DefDlgProc(). * [windows/win.c] Added WM_NCCREATE and WM_NCDESTROY messages. Implemented IsChild(). Tue Oct 12 17:50:20 1993 David Metcalfe <david@prism.demon.co.uk> * [windows/focus.c] Implemented GetFocus() and SetFocus(). * [windows/event.c] Added processing of FocusIn and FocusOut events. * [windows/graphics.c] Added DrawFocusRect(). Sat Oct 9 14:36:57 1993 Erik Bos * [loader/int1a.c] Added more function handling. Wed Oct 6 12:21:22 1993 Erik Bos * [loader/signal.c] Split signal.c into int1a.c, int21.c and signal.c. Tue Oct 5 22:12:40 1993 David Metcalfe * [controls/static.c] [control/widgets.c] Static control class. * [objects/text.c] Added processing of additional DT_ flags to DrawText(). * [windows/win.c] [misc/xt.c] Added SetWindowText() and WM_SETTEXT processing. Tue Oct 5 22:12:40 1993 Martin Ayotte * [controls/listbox.c] Listbox control window * [controls/scroll.c] Scroll bar control window * [controls/combo.c] Combo box control window * [include/combo.h] Combo box definitions * [include/listbox.h] Listbox definitions * [include/scroll.h] Scroll bar definitions Sat Oct 2 09:35:54 1993 Bob Amstadt (bob at pooh) * [if1632/callback.c] Fixed bug in MakeProcInstance(). * [debugger/info.c] Changed x/w and x/b to display in hex. * [debugger/i386-pinsn.c] Added code to properly unassemble 16-bit indexing. Fri Oct 1 08:29:05 1993 Bob Amstadt (bob at pooh) * [loader/files.c] [misc/profile.c] System initialization file is now called "wine.ini" and can be located in the current directory, the user's home directory, or any directories specified in the WINEPATH environment variable. * [tools/build.c] [if1632/call.S] [include/regfunc.h] Changed register function stack to match sigcontext structure. Thu Sep 30 22:30:21 1993 Bob Amstadt (bob at pooh) * [loader/files.c] Created function to search a path for files to load. * [loader/wine.c] Modified exe and dll file loading to search through path specified by the environment variable WINEPATH. Thu Sep 30 22:30:21 1993 Eric Youngdale * [loader/signal.c] Bug fix. Thu Sep 30 22:30:21 1993 John Brezak * [debugger/dbg.y] [debugger/debug.l] [debugger/dtest.c] [debugger/obstack.h] Updates to allow debugger to function under NetBSD.
639 lines
17 KiB
C
639 lines
17 KiB
C
/*
|
|
* Dialog functions
|
|
*
|
|
* Copyright 1993 Alexandre Julliard
|
|
*/
|
|
|
|
static char Copyright[] = "Copyright Alexandre Julliard, 1993";
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "windows.h"
|
|
#include "dialog.h"
|
|
#include "win.h"
|
|
|
|
|
|
/* Dialog base units */
|
|
static WORD xBaseUnit = 0, yBaseUnit = 0;
|
|
|
|
|
|
/***********************************************************************
|
|
* DIALOG_Init
|
|
*
|
|
* Initialisation of the dialog manager.
|
|
*/
|
|
BOOL DIALOG_Init()
|
|
{
|
|
TEXTMETRIC tm;
|
|
HDC hdc;
|
|
|
|
/* Calculate the dialog base units */
|
|
|
|
if (!(hdc = GetDC( 0 ))) return FALSE;
|
|
GetTextMetrics( hdc, &tm );
|
|
ReleaseDC( 0, hdc );
|
|
xBaseUnit = tm.tmAveCharWidth;
|
|
yBaseUnit = tm.tmHeight;
|
|
#ifdef DEBUG_DIALOG
|
|
printf( "DIALOG_Init: base units = %d,%d\n", xBaseUnit, yBaseUnit );
|
|
#endif
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DIALOG_GetControl
|
|
*
|
|
* Return the class and text of the control pointed to by ptr,
|
|
* and return a pointer to the next control.
|
|
*/
|
|
static DLGCONTROLHEADER * DIALOG_GetControl( DLGCONTROLHEADER * ptr,
|
|
char ** class, char ** text )
|
|
{
|
|
unsigned char * p = (unsigned char *)ptr;
|
|
p += 14; /* size of control header */
|
|
if (*p & 0x80)
|
|
{
|
|
switch(*p++)
|
|
{
|
|
case 0x80: *class = "BUTTON"; break;
|
|
case 0x81: *class = "EDIT"; break;
|
|
case 0x82: *class = "STATIC"; break;
|
|
case 0x83: *class = "LISTBOX"; break;
|
|
case 0x84: *class = "SCROLLBAR"; break;
|
|
case 0x85: *class = "COMBOBOX"; break;
|
|
default: *class = ""; break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
*class = p;
|
|
p += strlen(p) + 1;
|
|
}
|
|
*text = p;
|
|
p += strlen(p) + 2;
|
|
return (DLGCONTROLHEADER *)p;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DIALOG_ParseTemplate
|
|
*
|
|
* Fill a DLGTEMPLATE structure from the dialog template.
|
|
*/
|
|
static void DIALOG_ParseTemplate( LPCSTR template, DLGTEMPLATE * result )
|
|
{
|
|
int i;
|
|
unsigned char * p = (unsigned char *)template;
|
|
|
|
result->header = (DLGTEMPLATEHEADER *)p;
|
|
p += 13;
|
|
result->menuName = p;
|
|
if (*p == 0xff) p += 3;
|
|
else p += strlen(p) + 1;
|
|
|
|
if (*p) result->className = p;
|
|
else result->className = DIALOG_CLASS_NAME;
|
|
p += strlen(p) + 1;
|
|
|
|
result->caption = p;
|
|
p += strlen(p) + 1;
|
|
|
|
if (result->header->style & DS_SETFONT)
|
|
{
|
|
result->pointSize = *(WORD *)p; p += sizeof(WORD);
|
|
result->faceName = p; p += strlen(p) + 1;
|
|
}
|
|
result->controls = NULL;
|
|
if (!result->header->nbItems) return;
|
|
result->controls = (DLGCONTROL *) malloc( result->header->nbItems * sizeof(DLGCONTROL) );
|
|
if (!result->controls) return;
|
|
|
|
for (i = 0; i < result->header->nbItems; i++)
|
|
{
|
|
result->controls[i].header = (DLGCONTROLHEADER *)p;
|
|
p = (char *)DIALOG_GetControl( result->controls[i].header,
|
|
&result->controls[i].class,
|
|
&result->controls[i].text );
|
|
}
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DIALOG_DisplayTemplate
|
|
*/
|
|
#ifdef DEBUG_DIALOG
|
|
static void DIALOG_DisplayTemplate( DLGTEMPLATE * result )
|
|
{
|
|
int i;
|
|
DLGCONTROL * ctrl = result->controls;
|
|
|
|
printf( "DIALOG %d, %d, %d, %d\n", result->header->x, result->header->y,
|
|
result->header->cx, result->header->cy );
|
|
printf( " STYLE %08x\n", result->header->style );
|
|
printf( " CAPTION '%s'\n", result->caption );
|
|
printf( " CLASS '%s'\n", result->className );
|
|
if (result->menuName[0] == 0xff)
|
|
printf( " MENU %d\n", result->menuName[1] + 256*result->menuName[2] );
|
|
else printf( " MENU '%s'\n", result->menuName );
|
|
if (result->header->style & DS_SETFONT)
|
|
printf( " FONT %d,'%s'\n", result->pointSize, result->faceName );
|
|
|
|
printf( " BEGIN\n" );
|
|
|
|
for (i = 0; i < result->header->nbItems; i++, ctrl++)
|
|
{
|
|
printf( " %s '%s' %d, %d, %d, %d, %d, %08x\n",
|
|
ctrl->class, ctrl->text, ctrl->header->id,
|
|
ctrl->header->x, ctrl->header->y, ctrl->header->cx,
|
|
ctrl->header->cy, ctrl->header->style );
|
|
}
|
|
|
|
printf( " END\n" );
|
|
}
|
|
#endif /* DEBUG_DIALOG */
|
|
|
|
|
|
/***********************************************************************
|
|
* CreateDialog (USER.89)
|
|
*/
|
|
HWND CreateDialog( HINSTANCE hInst, LPCSTR dlgTemplate,
|
|
HWND owner, FARPROC dlgProc )
|
|
{
|
|
return CreateDialogParam( hInst, dlgTemplate, owner, dlgProc, 0 );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CreateDialogParam (USER.241)
|
|
*/
|
|
HWND CreateDialogParam( HINSTANCE hInst, LPCSTR dlgTemplate,
|
|
HWND owner, FARPROC dlgProc, LPARAM param )
|
|
{
|
|
HWND hwnd = 0;
|
|
HANDLE hres, hmem;
|
|
LPCSTR data;
|
|
int size;
|
|
|
|
#ifdef DEBUG_DIALOG
|
|
printf( "CreateDialogParam: %d,'%s',%d,%p,%d\n",
|
|
hInst, dlgTemplate, owner, dlgProc, param );
|
|
#endif
|
|
|
|
#if 0
|
|
if (!(hres = FindResource( hInst, dlgTemplate, RT_DIALOG ))) return 0;
|
|
if (!(hmem = LoadResource( hInst, hres ))) return 0;
|
|
if (!(data = LockResource( hmem ))) hwnd = 0;
|
|
else hwnd = CreateDialogIndirectParam(hInst, data, owner, dlgProc, param);
|
|
FreeResource( hmem );
|
|
#else
|
|
hmem = RSC_LoadResource( hInst, dlgTemplate, 0x8005, &size );
|
|
data = (LPCSTR) GlobalLock( hmem );
|
|
hwnd = CreateDialogIndirectParam( hInst, data, owner, dlgProc, param );
|
|
GlobalFree( hmem );
|
|
#endif
|
|
return hwnd;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CreateDialogIndirect (USER.219)
|
|
*/
|
|
HWND CreateDialogIndirect( HINSTANCE hInst, LPCSTR dlgTemplate,
|
|
HWND owner, FARPROC dlgProc )
|
|
{
|
|
return CreateDialogIndirectParam( hInst, dlgTemplate, owner, dlgProc, 0 );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CreateDialogIndirectParam (USER.242)
|
|
*/
|
|
HWND CreateDialogIndirectParam( HINSTANCE hInst, LPCSTR dlgTemplate,
|
|
HWND owner, FARPROC dlgProc, LPARAM param )
|
|
{
|
|
HMENU hMenu = 0;
|
|
HFONT hFont = 0;
|
|
HWND hwnd;
|
|
WND * wndPtr;
|
|
DLGTEMPLATE template;
|
|
DIALOGINFO * dlgInfo;
|
|
WORD xUnit = xBaseUnit;
|
|
WORD yUnit = yBaseUnit;
|
|
|
|
if (!dlgTemplate) return 0;
|
|
DIALOG_ParseTemplate( dlgTemplate, &template );
|
|
|
|
#ifdef DEBUG_DIALOG
|
|
DIALOG_DisplayTemplate( &template );
|
|
#endif
|
|
|
|
/* Load menu */
|
|
|
|
if (template.menuName[0])
|
|
{
|
|
if (template.menuName[0] != 0xff)
|
|
hMenu = LoadMenu( hInst, template.menuName );
|
|
else
|
|
hMenu = LoadMenu( hInst, MAKEINTRESOURCE( template.menuName[1] +
|
|
256*template.menuName[2] ));
|
|
}
|
|
|
|
/* Create custom font if needed */
|
|
|
|
if (template.header->style & DS_SETFONT)
|
|
{
|
|
hFont = CreateFont( template.pointSize, 0, 0, 0, FW_DONTCARE,
|
|
FALSE, FALSE, FALSE, DEFAULT_CHARSET, 0, 0,
|
|
DEFAULT_QUALITY, FF_DONTCARE, template.faceName );
|
|
if (hFont)
|
|
{
|
|
TEXTMETRIC tm;
|
|
HFONT oldFont;
|
|
HDC hdc;
|
|
|
|
hdc = GetDC( 0 );
|
|
oldFont = SelectObject( hdc, hFont );
|
|
GetTextMetrics( hdc, &tm );
|
|
SelectObject( hdc, oldFont );
|
|
ReleaseDC( 0, hdc );
|
|
xUnit = tm.tmAveCharWidth;
|
|
yUnit = tm.tmHeight;
|
|
}
|
|
}
|
|
|
|
/* Create dialog main window */
|
|
|
|
hwnd = CreateWindow( template.className, template.caption,
|
|
template.header->style & ~WS_VISIBLE,
|
|
template.header->x * xUnit / 4,
|
|
template.header->y * yUnit / 8,
|
|
template.header->cx * xUnit / 4,
|
|
template.header->cy * yUnit / 8,
|
|
owner, hMenu, hInst,
|
|
NULL );
|
|
if (!hwnd)
|
|
{
|
|
if (hFont) DeleteObject( hFont );
|
|
if (hMenu) DestroyMenu( hMenu );
|
|
if (template.controls) free( template.controls );
|
|
return 0;
|
|
}
|
|
|
|
/* Create control windows */
|
|
|
|
if (hwnd && template.header->nbItems)
|
|
{
|
|
int i;
|
|
DLGCONTROL * ctrl = template.controls;
|
|
for (i = 0; i < template.header->nbItems; i++, ctrl++)
|
|
{
|
|
CreateWindowEx( WS_EX_NOPARENTNOTIFY,
|
|
ctrl->class, ctrl->text, ctrl->header->style,
|
|
ctrl->header->x * xUnit / 4,
|
|
ctrl->header->y * yUnit / 8,
|
|
ctrl->header->cx * xUnit / 4,
|
|
ctrl->header->cy * yUnit / 8,
|
|
hwnd, ctrl->header->id, hInst, NULL );
|
|
}
|
|
}
|
|
|
|
/* Initialise dialog extra data */
|
|
|
|
wndPtr = WIN_FindWndPtr( hwnd );
|
|
dlgInfo = (DIALOGINFO *)wndPtr->wExtra;
|
|
dlgInfo->dlgProc = dlgProc;
|
|
dlgInfo->hUserFont = hFont;
|
|
dlgInfo->hMenu = hMenu;
|
|
dlgInfo->xBaseUnit = xUnit;
|
|
dlgInfo->yBaseUnit = yUnit;
|
|
dlgInfo->hwndFocus = GetNextDlgTabItem( hwnd,
|
|
GetWindow(wndPtr->hwndChild, GW_HWNDLAST), FALSE );
|
|
|
|
/* Send initialisation messages and set focus */
|
|
|
|
if (dlgInfo->hUserFont)
|
|
SendMessage( hwnd, WM_SETFONT, dlgInfo->hUserFont, 0);
|
|
SendMessage( hwnd, WM_INITDIALOG, dlgInfo->hwndFocus, param );
|
|
if (SendMessage( hwnd, WM_INITDIALOG, dlgInfo->hwndFocus, param ))
|
|
SetFocus( dlgInfo->hwndFocus );
|
|
|
|
/* Display dialog */
|
|
|
|
if (template.header->style & WS_VISIBLE) ShowWindow( hwnd, SW_SHOW );
|
|
|
|
if (template.controls) free( template.controls );
|
|
return hwnd;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DialogBox (USER.87)
|
|
*/
|
|
int DialogBox( HINSTANCE hInst, LPCSTR dlgTemplate,
|
|
HWND owner, FARPROC dlgProc )
|
|
{
|
|
HWND hwnd;
|
|
WND * wndPtr;
|
|
DIALOGINFO * dlgInfo;
|
|
MSG msg;
|
|
int retval;
|
|
|
|
#ifdef DEBUG_DIALOG
|
|
printf( "DialogBox: %d,'%s',%d,%p\n", hInst, dlgTemplate, owner, dlgProc );
|
|
#endif
|
|
|
|
hwnd = CreateDialog( hInst, dlgTemplate, owner, dlgProc );
|
|
if (!hwnd) return -1;
|
|
wndPtr = WIN_FindWndPtr( hwnd );
|
|
dlgInfo = (DIALOGINFO *)wndPtr->wExtra;
|
|
while (GetMessage (&msg, 0, 0, 0))
|
|
{
|
|
if (!IsDialogMessage( hwnd, &msg))
|
|
{
|
|
TranslateMessage(&msg);
|
|
DispatchMessage(&msg);
|
|
}
|
|
if (dlgInfo->fEnd) break;
|
|
}
|
|
retval = dlgInfo->msgResult;
|
|
DestroyWindow( hwnd );
|
|
return retval;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* EndDialog (USER.88)
|
|
*/
|
|
void EndDialog( HWND hwnd, short retval )
|
|
{
|
|
WND * wndPtr = WIN_FindWndPtr( hwnd );
|
|
DIALOGINFO * dlgInfo = (DIALOGINFO *)wndPtr->wExtra;
|
|
dlgInfo->msgResult = retval;
|
|
dlgInfo->fEnd = TRUE;
|
|
#ifdef DEBUG_DIALOG
|
|
printf( "EndDialog: %d %d\n", hwnd, retval );
|
|
#endif
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* IsDialogMessage (USER.90)
|
|
*/
|
|
BOOL IsDialogMessage( HWND hwndDlg, LPMSG msg )
|
|
{
|
|
WND * wndPtr;
|
|
|
|
if (!(wndPtr = WIN_FindWndPtr( hwndDlg ))) return FALSE;
|
|
if ((hwndDlg != msg->hwnd) && !IsChild( hwndDlg, msg->hwnd )) return FALSE;
|
|
|
|
if (msg->message != WM_KEYDOWN)
|
|
{
|
|
SendMessage( msg->hwnd, msg->message, msg->wParam, msg->lParam );
|
|
}
|
|
else
|
|
{
|
|
int dlgCode = SendMessage( msg->hwnd, WM_GETDLGCODE, 0, 0 );
|
|
/* Process key message */
|
|
/* .... */
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/****************************************************************
|
|
* GetDlgCtrlID (USER.277)
|
|
*/
|
|
int GetDlgCtrlID( HWND hwnd )
|
|
{
|
|
WND *wndPtr = WIN_FindWndPtr(hwnd);
|
|
if (wndPtr) return wndPtr->wIDmenu;
|
|
else return 0;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetDlgItem (USER.91)
|
|
*/
|
|
HWND GetDlgItem( HWND hwndDlg, WORD id )
|
|
{
|
|
HWND curChild;
|
|
WND * childPtr;
|
|
WND * wndPtr;
|
|
|
|
if (!(wndPtr = WIN_FindWndPtr( hwndDlg ))) return 0;
|
|
curChild = wndPtr->hwndChild;
|
|
while(curChild)
|
|
{
|
|
childPtr = WIN_FindWndPtr( curChild );
|
|
if (childPtr->wIDmenu == id) return curChild;
|
|
curChild = childPtr->hwndNext;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* SendDlgItemMessage (USER.101)
|
|
*/
|
|
LONG SendDlgItemMessage(HWND hwnd, WORD id, UINT msg, WORD wParam, LONG lParam)
|
|
{
|
|
HWND hwndCtrl = GetDlgItem( hwnd, id );
|
|
if (hwndCtrl) return SendMessage( hwndCtrl, msg, wParam, lParam );
|
|
else return 0;
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* SetDlgItemText (USER.92)
|
|
*/
|
|
void SetDlgItemText( HWND hwnd, WORD id, LPSTR lpString )
|
|
{
|
|
SendDlgItemMessage( hwnd, id, WM_SETTEXT, 0, (DWORD)lpString );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetDlgItemText (USER.93)
|
|
*/
|
|
int GetDlgItemText( HWND hwnd, WORD id, LPSTR str, WORD max )
|
|
{
|
|
return (int)SendDlgItemMessage( hwnd, id, WM_GETTEXT, max, (DWORD)str );
|
|
}
|
|
|
|
|
|
/*******************************************************************
|
|
* SetDlgItemInt (USER.94)
|
|
*/
|
|
void SetDlgItemInt( HWND hwnd, WORD id, WORD value, BOOL fSigned )
|
|
{
|
|
HANDLE hText = LocalAlloc( LMEM_MOVEABLE, 10 );
|
|
char * str = (char *) LocalLock( hText );
|
|
|
|
if (fSigned) sprintf( str, "%d", value );
|
|
else sprintf( str, "%u", value );
|
|
SendDlgItemMessage( hwnd, id, WM_SETTEXT, 0, (DWORD)str );
|
|
LocalUnlock( hText );
|
|
LocalFree( hText );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetDlgItemInt (USER.95)
|
|
*/
|
|
WORD GetDlgItemInt( HWND hwnd, WORD id, BOOL * translated, BOOL fSigned )
|
|
{
|
|
int len;
|
|
HANDLE hText;
|
|
long result;
|
|
char * str;
|
|
|
|
if (translated) *translated = FALSE;
|
|
if (!(len = SendDlgItemMessage( hwnd, id, WM_GETTEXTLENGTH, 0, 0 )))
|
|
return 0;
|
|
if (!(hText = LocalAlloc(LMEM_MOVEABLE, len+1 )))
|
|
return 0;
|
|
str = (char *) LocalLock( hText );
|
|
if (SendDlgItemMessage( hwnd, id, WM_GETTEXT, len+1, (DWORD)str ))
|
|
{
|
|
char * endptr;
|
|
result = strtol( str, &endptr, 10 );
|
|
if (endptr && (endptr != str)) /* Conversion was successful */
|
|
{
|
|
if (fSigned)
|
|
{
|
|
if ((result < -32767) || (result > 32767)) result = 0;
|
|
else if (translated) *translated = TRUE;
|
|
}
|
|
else
|
|
{
|
|
if ((result < 0) || (result > 65535)) result = 0;
|
|
else if (translated) *translated = TRUE;
|
|
}
|
|
}
|
|
}
|
|
LocalUnlock( hText );
|
|
LocalFree( hText );
|
|
return (WORD)result;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CheckDlgButton (USER.97)
|
|
*/
|
|
void CheckDlgButton( HWND hwnd, WORD id, WORD check )
|
|
{
|
|
SendDlgItemMessage( hwnd, id, BM_SETCHECK, check, 0 );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* IsDlgButtonChecked (USER.98)
|
|
*/
|
|
WORD IsDlgButtonChecked( HWND hwnd, WORD id )
|
|
{
|
|
return (WORD)SendDlgItemMessage( hwnd, id, BM_GETCHECK, 0, 0 );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CheckRadioButton (USER.96)
|
|
*/
|
|
void CheckRadioButton( HWND hwndDlg, WORD firstID, WORD lastID, WORD checkID )
|
|
{
|
|
HWND button = GetDlgItem( hwndDlg, firstID );
|
|
while (button != 0)
|
|
{
|
|
WND * wndPtr = WIN_FindWndPtr( button );
|
|
if (!wndPtr) break;
|
|
SendMessage( button, BM_SETCHECK, (wndPtr->wIDmenu == checkID), 0 );
|
|
if (wndPtr->wIDmenu == lastID) break;
|
|
button = wndPtr->hwndNext;
|
|
}
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetDialogBaseUnits (USER.243)
|
|
*/
|
|
DWORD GetDialogBaseUnits()
|
|
{
|
|
return MAKELONG( xBaseUnit, yBaseUnit );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* MapDialogRect (USER.103)
|
|
*/
|
|
void MapDialogRect( HWND hwnd, LPRECT rect )
|
|
{
|
|
DIALOGINFO * dlgInfo;
|
|
WND * wndPtr = WIN_FindWndPtr( hwnd );
|
|
if (!wndPtr) return;
|
|
dlgInfo = (DIALOGINFO *)wndPtr->wExtra;
|
|
rect->left = (rect->left * dlgInfo->xBaseUnit) / 4;
|
|
rect->right = (rect->right * dlgInfo->xBaseUnit) / 4;
|
|
rect->top = (rect->top * dlgInfo->yBaseUnit) / 8;
|
|
rect->bottom = (rect->bottom * dlgInfo->yBaseUnit) / 8;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetNextDlgGroupItem (USER.227)
|
|
*/
|
|
HWND GetNextDlgGroupItem( HWND hwndDlg, HWND hwndCtrl, BOOL fPrevious )
|
|
{
|
|
HWND hwnd, hwndLast;
|
|
WND * dlgPtr, * ctrlPtr, * wndPtr;
|
|
|
|
if (!(dlgPtr = WIN_FindWndPtr( hwndDlg ))) return 0;
|
|
if (!(ctrlPtr = WIN_FindWndPtr( hwndCtrl ))) return 0;
|
|
if (ctrlPtr->hwndParent != hwndDlg) return 0;
|
|
|
|
hwndLast = hwndCtrl;
|
|
hwnd = ctrlPtr->hwndNext;
|
|
while (1)
|
|
{
|
|
if (!hwnd) hwnd = dlgPtr->hwndChild;
|
|
if (hwnd == hwndCtrl) break;
|
|
wndPtr = WIN_FindWndPtr( hwnd );
|
|
if (wndPtr->dwStyle & WS_TABSTOP)
|
|
{
|
|
hwndLast = hwnd;
|
|
if (!fPrevious) break;
|
|
}
|
|
hwnd = wndPtr->hwndNext;
|
|
}
|
|
return hwndLast;
|
|
return 0;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetNextDlgTabItem (USER.228)
|
|
*/
|
|
HWND GetNextDlgTabItem( HWND hwndDlg, HWND hwndCtrl, BOOL fPrevious )
|
|
{
|
|
HWND hwnd, hwndLast;
|
|
WND * dlgPtr, * ctrlPtr, * wndPtr;
|
|
|
|
if (!(dlgPtr = WIN_FindWndPtr( hwndDlg ))) return 0;
|
|
if (!(ctrlPtr = WIN_FindWndPtr( hwndCtrl ))) return 0;
|
|
if (ctrlPtr->hwndParent != hwndDlg) return 0;
|
|
|
|
hwndLast = hwndCtrl;
|
|
hwnd = ctrlPtr->hwndNext;
|
|
while (1)
|
|
{
|
|
if (!hwnd) hwnd = dlgPtr->hwndChild;
|
|
if (hwnd == hwndCtrl) break;
|
|
wndPtr = WIN_FindWndPtr( hwnd );
|
|
if (wndPtr->dwStyle & WS_TABSTOP)
|
|
{
|
|
hwndLast = hwnd;
|
|
if (!fPrevious) break;
|
|
}
|
|
hwnd = wndPtr->hwndNext;
|
|
}
|
|
return hwndLast;
|
|
}
|