mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
99 lines
3 KiB
C
Executable file
99 lines
3 KiB
C
Executable file
/* -*-mode: C; fill-column: 77; c-basic-offset: 4; -*- */
|
|
/*
|
|
* Copyright 2002-2004 by Eric House (fixin@peak.org). All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "cestrbx.h"
|
|
#include "cemain.h"
|
|
#include "ceutil.h"
|
|
|
|
static void
|
|
stuffTextInField( HWND hDlg, StrBoxInit* init )
|
|
{
|
|
XP_U16 nBytes = stream_getSize(init->stream);
|
|
XP_U16 len;
|
|
XP_UCHAR* sbuf;
|
|
wchar_t* wbuf;
|
|
CEAppGlobals* globals = init->globals;
|
|
|
|
sbuf = XP_MALLOC( globals->mpool, nBytes );
|
|
stream_getBytes( init->stream, sbuf, nBytes );
|
|
|
|
len = MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED, sbuf, nBytes,
|
|
NULL, 0 );
|
|
wbuf = XP_MALLOC( globals->mpool, (len+1) * sizeof(*wbuf) );
|
|
XP_MEMSET( wbuf, 0, (len+1) * sizeof(*wbuf) );
|
|
MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED, sbuf, nBytes,
|
|
wbuf, len );
|
|
XP_FREE( globals->mpool, sbuf );
|
|
|
|
SetDlgItemText( hDlg, ID_EDITTEXT, wbuf );
|
|
XP_FREE( globals->mpool, wbuf );
|
|
} /* stuffTextInField */
|
|
|
|
LRESULT CALLBACK
|
|
StrBox(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
CEAppGlobals* globals = NULL;
|
|
StrBoxInit* init;
|
|
XP_U16 id;
|
|
|
|
if ( message == WM_INITDIALOG ) {
|
|
SetWindowLong( hDlg, GWL_USERDATA, (long)lParam );
|
|
init = (StrBoxInit*)lParam;
|
|
|
|
globals = init->globals;
|
|
|
|
if ( !!init->title ) {
|
|
SendMessage( hDlg, WM_SETTEXT, 0, (long)init->title );
|
|
}
|
|
|
|
if ( !init->isQuery ) {
|
|
ceShowOrHide( hDlg, IDCANCEL, XP_FALSE );
|
|
/* also want to expand the text box to the bottom */
|
|
ceCenterCtl( hDlg, IDOK );
|
|
}
|
|
init->textIsSet = XP_FALSE; /* postpone to avoid highlight. */
|
|
|
|
return TRUE;
|
|
} else {
|
|
init = (StrBoxInit*)GetWindowLong( hDlg, GWL_USERDATA );
|
|
|
|
if ( !!init ) {
|
|
switch (message) {
|
|
|
|
case WM_COMMAND:
|
|
if ( !init->textIsSet ) {
|
|
stuffTextInField( hDlg, init );
|
|
init->textIsSet = XP_TRUE;
|
|
}
|
|
|
|
id = LOWORD(wParam);
|
|
switch( id ) {
|
|
|
|
case IDOK:
|
|
case IDCANCEL:
|
|
init->result = id;
|
|
EndDialog(hDlg, id);
|
|
return TRUE;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return FALSE;
|
|
} /* StrBox */
|