1999-02-28 21:05:11 +01:00
|
|
|
/*
|
|
|
|
* COMMDLG - Font Dialog
|
|
|
|
*
|
|
|
|
* Copyright 1994 Martin Ayotte
|
|
|
|
* Copyright 1996 Albrecht Kleine
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2000-02-10 20:03:02 +01:00
|
|
|
#include <stdio.h>
|
1999-02-28 21:05:11 +01:00
|
|
|
#include <string.h>
|
2000-02-10 20:03:02 +01:00
|
|
|
#include "windef.h"
|
1999-02-28 21:05:11 +01:00
|
|
|
#include "winbase.h"
|
2003-08-20 20:22:31 +02:00
|
|
|
#include "winnls.h"
|
2000-02-10 20:03:02 +01:00
|
|
|
#include "wingdi.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winuser.h"
|
1999-02-28 21:05:11 +01:00
|
|
|
#include "wine/winbase16.h"
|
|
|
|
#include "wine/winuser16.h"
|
|
|
|
#include "heap.h"
|
|
|
|
#include "commdlg.h"
|
|
|
|
#include "dlgs.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-03-13 18:07:56 +01:00
|
|
|
#include "cderr.h"
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
2003-12-30 20:15:43 +01:00
|
|
|
#define WINE_FONTDATA "__WINE_FONTDLGDATA"
|
|
|
|
|
1999-04-25 20:31:35 +02:00
|
|
|
#include "cdlg.h"
|
|
|
|
|
2003-12-30 23:08:17 +01:00
|
|
|
/* image list with TrueType bitmaps and more */
|
|
|
|
static HIMAGELIST himlTT = 0;
|
|
|
|
#define TTBITMAP_XSIZE 20 /* x-size of the bitmaps */
|
1999-02-28 21:05:11 +01:00
|
|
|
|
|
|
|
|
2002-10-31 02:04:39 +01:00
|
|
|
INT_PTR CALLBACK FormatCharDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam,
|
2003-11-29 00:35:34 +01:00
|
|
|
LPARAM lParam);
|
2002-10-31 02:04:39 +01:00
|
|
|
INT_PTR CALLBACK FormatCharDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam,
|
2003-11-29 00:35:34 +01:00
|
|
|
LPARAM lParam);
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2003-02-15 01:02:24 +01:00
|
|
|
/* There is a table here of all charsets, and the sample text for each.
|
|
|
|
* There is a second table that translates a charset into an index into
|
|
|
|
* the first table.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CI(cs) ((IDS_CHARSET_##cs)-IDS_CHARSET_ANSI)
|
2003-12-01 23:40:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
static const WCHAR stWestern[]={'A','a','B','b','Y','y','Z','z',0}; /* Western and default */
|
|
|
|
static const WCHAR stSymbol[]={'S','y','m','b','o','l',0}; /* Symbol */
|
|
|
|
static const WCHAR stShiftJis[]={'A','a',0x3042,0x3041,0x30a2,0x30a1,0x4e9c,0x5b87,0}; /* Shift JIS */
|
|
|
|
static const WCHAR stHangul[]={0xac00,0xb098,0xb2e4,'A','a','B','Y','y','Z','z',0}; /* Hangul */
|
|
|
|
static const WCHAR stGB2312[]={0x5fae,0x8f6f,0x4e2d,0x6587,0x8f6f,0x4ef6,0}; /* GB2312 */
|
|
|
|
static const WCHAR stBIG5[]={0x4e2d,0x6587,0x5b57,0x578b,0x7bc4,0x4f8b,0}; /* BIG5 */
|
|
|
|
static const WCHAR stGreek[]={'A','a','B','b',0x0391,0x03b1,0x0392,0x03b2,0}; /* Greek */
|
|
|
|
static const WCHAR stTurkish[]={'A','a','B','b',0x011e,0x011f,0x015e,0x015f,0}; /* Turkish */
|
|
|
|
static const WCHAR stHebrew[]={'A','a','B','b',0x05e0,0x05e1,0x05e9,0x05ea,0}; /* Hebrew */
|
|
|
|
static const WCHAR stArabic[]={'A','a','B','b',0x0627,0x0628,0x062c,0x062f,0x0647,0x0648,0x0632,0};/* Arabic */
|
|
|
|
static const WCHAR stBaltic[]={'A','a','B','b','Y','y','Z','z',0}; /* Baltic */
|
|
|
|
static const WCHAR stVietname[]={'A','a','B','b',0x01a0,0x01a1,0x01af,0x01b0,0}; /* Vietnamese */
|
|
|
|
static const WCHAR stCyrillic[]={'A','a','B','b',0x0411,0x0431,0x0424,0x0444,0}; /* Cyrillic */
|
|
|
|
static const WCHAR stEastEur[]={'A','a','B','b',0xc1,0xe1,0xd4,0xf4,0}; /* East European */
|
|
|
|
static const WCHAR stThai[]={'A','a','B','b',0x0e2d,0x0e31,0x0e01,0x0e29,0x0e23,0x0e44,0x0e17,0x0e22,0}; /* Thai */
|
|
|
|
static const WCHAR stJohab[]={0xac00,0xb098,0xb2e4,'A','a','B','Y','y','Z','z',0}; /* Johab */
|
|
|
|
static const WCHAR stMac[]={'A','a','B','b','Y','y','Z','z',0}; /* Mac */
|
|
|
|
static const WCHAR stOEM[]={'A','a','B','b',0xf8,0xf1,0xfd,0}; /* OEM */
|
|
|
|
/* the following character sets actually behave different (Win2K observation):
|
|
|
|
* the sample string is 'sticky': it uses the sample string of the previous
|
|
|
|
* selected character set. That behaviour looks like some default, which is
|
|
|
|
* not (yet) implemented. */
|
|
|
|
static const WCHAR stVISCII[]={'A','a','B','b',0}; /* VISCII */
|
|
|
|
static const WCHAR stTCVN[]={'A','a','B','b',0}; /* TCVN */
|
|
|
|
static const WCHAR stKOI8[]={'A','a','B','b',0}; /* KOI-8 */
|
|
|
|
static const WCHAR stIso88593[]={'A','a','B','b',0}; /* ISO-8859-3 */
|
|
|
|
static const WCHAR stIso88594[]={'A','a','B','b',0}; /* ISO-8859-4 */
|
|
|
|
static const WCHAR stIso885910[]={'A','a','B','b',0}; /* ISO-8859-10 */
|
|
|
|
static const WCHAR stCeltic[]={'A','a','B','b',0};/* Celtic */
|
|
|
|
|
|
|
|
static const WCHAR *sample_lang_text[]={
|
|
|
|
stWestern,stSymbol,stShiftJis,stHangul,stGB2312,
|
|
|
|
stBIG5,stGreek,stTurkish,stHebrew,stArabic,
|
|
|
|
stBaltic,stVietname,stCyrillic,stEastEur,stThai,
|
|
|
|
stJohab,stMac,stOEM,stVISCII,stTCVN,
|
|
|
|
stKOI8,stIso88593,stIso88594,stIso885910,stCeltic};
|
|
|
|
|
2003-02-15 01:02:24 +01:00
|
|
|
|
|
|
|
static const int CHARSET_ORDER[256]={
|
|
|
|
CI(ANSI), 0, CI(SYMBOL), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CI(MAC), 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
CI(JIS), CI(HANGUL), CI(JOHAB), 0, 0, 0, CI(GB2312), 0, CI(BIG5), 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, CI(GREEK), CI(TURKISH), CI(VIETNAMESE), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, CI(HEBREW), CI(ARABIC), 0, 0, 0, 0, 0, 0, 0, CI(BALTIC), 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CI(RUSSIAN), 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CI(THAI), 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CI(EE), 0,
|
|
|
|
CI(VISCII), CI(TCVN), CI(KOI8), CI(ISO3), CI(ISO4), CI(ISO10), CI(CELTIC), 0, 0, 0, 0, 0, 0, 0, 0, CI(OEM),
|
|
|
|
};
|
|
|
|
|
2001-05-05 02:42:54 +02:00
|
|
|
struct {
|
2003-11-29 00:35:34 +01:00
|
|
|
int mask;
|
|
|
|
char *name;
|
2001-05-05 02:42:54 +02:00
|
|
|
} cfflags[] = {
|
|
|
|
#define XX(x) { x, #x },
|
|
|
|
XX(CF_SCREENFONTS)
|
|
|
|
XX(CF_PRINTERFONTS)
|
|
|
|
XX(CF_SHOWHELP)
|
|
|
|
XX(CF_ENABLEHOOK)
|
|
|
|
XX(CF_ENABLETEMPLATE)
|
|
|
|
XX(CF_ENABLETEMPLATEHANDLE)
|
|
|
|
XX(CF_INITTOLOGFONTSTRUCT)
|
|
|
|
XX(CF_USESTYLE)
|
|
|
|
XX(CF_EFFECTS)
|
|
|
|
XX(CF_APPLY)
|
|
|
|
XX(CF_ANSIONLY)
|
|
|
|
XX(CF_NOVECTORFONTS)
|
|
|
|
XX(CF_NOSIMULATIONS)
|
|
|
|
XX(CF_LIMITSIZE)
|
|
|
|
XX(CF_FIXEDPITCHONLY)
|
|
|
|
XX(CF_WYSIWYG)
|
|
|
|
XX(CF_FORCEFONTEXIST)
|
|
|
|
XX(CF_SCALABLEONLY)
|
|
|
|
XX(CF_TTONLY)
|
|
|
|
XX(CF_NOFACESEL)
|
|
|
|
XX(CF_NOSTYLESEL)
|
|
|
|
XX(CF_NOSIZESEL)
|
|
|
|
XX(CF_SELECTSCRIPT)
|
|
|
|
XX(CF_NOSCRIPTSEL)
|
|
|
|
XX(CF_NOVERTFONTS)
|
|
|
|
#undef XX
|
|
|
|
{0,NULL},
|
|
|
|
};
|
|
|
|
|
2003-11-29 00:35:34 +01:00
|
|
|
void _dump_cf_flags(DWORD cflags)
|
2003-06-07 02:33:32 +02:00
|
|
|
{
|
2001-05-05 02:42:54 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0;cfflags[i].name;i++)
|
2003-11-29 00:35:34 +01:00
|
|
|
if (cfflags[i].mask & cflags)
|
|
|
|
MESSAGE("%s|",cfflags[i].name);
|
2001-05-05 02:42:54 +02:00
|
|
|
MESSAGE("\n");
|
|
|
|
}
|
|
|
|
|
1999-02-28 21:05:11 +01:00
|
|
|
/***********************************************************************
|
2004-08-03 00:21:12 +02:00
|
|
|
* ChooseFontW (COMDLG32.@)
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
2004-08-03 00:21:12 +02:00
|
|
|
BOOL WINAPI ChooseFontW(LPCHOOSEFONTW lpChFont)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
LPCVOID template;
|
|
|
|
HRSRC hResInfo;
|
|
|
|
HINSTANCE hDlginst;
|
|
|
|
HGLOBAL hDlgTmpl;
|
2004-08-03 00:21:12 +02:00
|
|
|
|
|
|
|
static const WCHAR chooseFontW[] = {'C','H','O','O','S','E','_',
|
|
|
|
'F','O','N','T',0};
|
2003-11-29 00:35:34 +01:00
|
|
|
|
|
|
|
if ( (lpChFont->Flags&CF_ENABLETEMPLATEHANDLE)!=0 )
|
2002-11-08 19:56:46 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
template=(LPCVOID)lpChFont->hInstance;
|
2002-11-13 05:08:57 +01:00
|
|
|
} else
|
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
if ( (lpChFont->Flags&CF_ENABLETEMPLATE)!=0 )
|
|
|
|
{
|
|
|
|
hDlginst=lpChFont->hInstance;
|
2004-08-03 00:21:12 +02:00
|
|
|
if( !(hResInfo = FindResourceW(hDlginst, lpChFont->lpTemplateName,
|
|
|
|
(LPWSTR)RT_DIALOG)))
|
2003-11-29 00:35:34 +01:00
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_FINDRESFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
hDlginst=COMDLG32_hInstance;
|
2004-08-03 00:21:12 +02:00
|
|
|
if (!(hResInfo = FindResourceW(hDlginst, chooseFontW, (LPWSTR)RT_DIALOG)))
|
2003-11-29 00:35:34 +01:00
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_FINDRESFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!(hDlgTmpl = LoadResource(hDlginst, hResInfo )) ||
|
|
|
|
!(template = LockResource( hDlgTmpl )))
|
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-11-08 19:56:46 +01:00
|
|
|
}
|
2003-11-29 00:35:34 +01:00
|
|
|
if (TRACE_ON(commdlg))
|
|
|
|
_dump_cf_flags(lpChFont->Flags);
|
1999-04-25 20:31:35 +02:00
|
|
|
|
2003-11-29 00:35:34 +01:00
|
|
|
if (lpChFont->Flags & (CF_SELECTSCRIPT | CF_NOVERTFONTS ))
|
|
|
|
FIXME(": unimplemented flag (ignored)\n");
|
2002-11-13 05:08:57 +01:00
|
|
|
|
2004-08-03 00:21:12 +02:00
|
|
|
return DialogBoxIndirectParamW(COMDLG32_hInstance, template,
|
|
|
|
lpChFont->hwndOwner, FormatCharDlgProcW, (LPARAM)lpChFont );
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
2001-06-13 22:06:42 +02:00
|
|
|
/***********************************************************************
|
2004-08-03 00:21:12 +02:00
|
|
|
* ChooseFontA (COMDLG32.@)
|
2001-06-13 22:06:42 +02:00
|
|
|
*/
|
2004-08-03 00:21:12 +02:00
|
|
|
BOOL WINAPI ChooseFontA(LPCHOOSEFONTA lpChFont)
|
2001-06-13 22:06:42 +02:00
|
|
|
{
|
2004-08-03 00:21:12 +02:00
|
|
|
LPCVOID template;
|
|
|
|
HRSRC hResInfo;
|
|
|
|
HINSTANCE hDlginst;
|
|
|
|
HGLOBAL hDlgTmpl;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2004-08-03 00:21:12 +02:00
|
|
|
if ( (lpChFont->Flags&CF_ENABLETEMPLATEHANDLE)!=0 )
|
2001-06-13 22:06:42 +02:00
|
|
|
{
|
2004-08-03 00:21:12 +02:00
|
|
|
template=(LPCVOID)lpChFont->hInstance;
|
|
|
|
} else
|
2001-06-13 22:06:42 +02:00
|
|
|
{
|
2004-08-03 00:21:12 +02:00
|
|
|
if ( (lpChFont->Flags&CF_ENABLETEMPLATE)!=0 )
|
|
|
|
{
|
|
|
|
hDlginst=lpChFont->hInstance;
|
|
|
|
if( !(hResInfo = FindResourceA(hDlginst, lpChFont->lpTemplateName,
|
|
|
|
(LPSTR)RT_DIALOG)))
|
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_FINDRESFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
hDlginst=COMDLG32_hInstance;
|
|
|
|
if (!(hResInfo = FindResourceA(hDlginst, "CHOOSE_FONT", (LPSTR)RT_DIALOG)))
|
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_FINDRESFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!(hDlgTmpl = LoadResource(hDlginst, hResInfo )) ||
|
|
|
|
!(template = LockResource( hDlgTmpl )))
|
|
|
|
{
|
|
|
|
COMDLG32_SetCommDlgExtendedError(CDERR_LOADRESFAILURE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-06-13 22:06:42 +02:00
|
|
|
}
|
2003-11-29 00:35:34 +01:00
|
|
|
if (TRACE_ON(commdlg))
|
|
|
|
_dump_cf_flags(lpChFont->Flags);
|
|
|
|
|
2004-08-03 00:21:12 +02:00
|
|
|
if (lpChFont->Flags & (CF_SELECTSCRIPT | CF_NOVERTFONTS ))
|
|
|
|
FIXME(": unimplemented flag (ignored)\n");
|
2003-11-29 00:35:34 +01:00
|
|
|
|
2004-08-03 00:21:12 +02:00
|
|
|
return DialogBoxIndirectParamA(COMDLG32_hInstance, template,
|
|
|
|
lpChFont->hwndOwner, FormatCharDlgProcA, (LPARAM)lpChFont );
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
2004-08-03 00:21:12 +02:00
|
|
|
|
1999-02-28 21:05:11 +01:00
|
|
|
|
|
|
|
#define TEXT_EXTRAS 4
|
|
|
|
#define TEXT_COLORS 16
|
|
|
|
|
|
|
|
static const COLORREF textcolors[TEXT_COLORS]=
|
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
0x00000000L,0x00000080L,0x00008000L,0x00008080L,
|
|
|
|
0x00800000L,0x00800080L,0x00808000L,0x00808080L,
|
|
|
|
0x00c0c0c0L,0x000000ffL,0x0000ff00L,0x0000ffffL,
|
|
|
|
0x00ff0000L,0x00ff00ffL,0x00ffff00L,0x00FFFFFFL
|
1999-02-28 21:05:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CFn_HookCallChk32 [internal]
|
|
|
|
*/
|
|
|
|
static BOOL CFn_HookCallChk32(LPCHOOSEFONTA lpcf)
|
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
if (lpcf)
|
|
|
|
if(lpcf->Flags & CF_ENABLEHOOK)
|
|
|
|
if (lpcf->lpfnHook)
|
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* AddFontFamily [internal]
|
|
|
|
*/
|
2003-12-30 23:08:17 +01:00
|
|
|
INT AddFontFamily(const ENUMLOGFONTEXA *lpElfex, const NEWTEXTMETRICEXA *lpNTM,
|
|
|
|
UINT nFontType, LPCHOOSEFONTA lpcf, HWND hwnd, LPCFn_ENUMSTRUCT e)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
int i;
|
|
|
|
WORD w;
|
2003-12-30 23:08:17 +01:00
|
|
|
const LOGFONTA *lplf = &(lpElfex->elfLogFont);
|
2003-11-29 00:35:34 +01:00
|
|
|
|
|
|
|
TRACE("font=%s (nFontType=%d)\n", lplf->lfFaceName,nFontType);
|
|
|
|
|
|
|
|
if (lpcf->Flags & CF_FIXEDPITCHONLY)
|
|
|
|
if (!(lplf->lfPitchAndFamily & FIXED_PITCH))
|
|
|
|
return 1;
|
|
|
|
if (lpcf->Flags & CF_ANSIONLY)
|
|
|
|
if (lplf->lfCharSet != ANSI_CHARSET)
|
|
|
|
return 1;
|
|
|
|
if (lpcf->Flags & CF_TTONLY)
|
|
|
|
if (!(nFontType & TRUETYPE_FONTTYPE))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (e) e->added++;
|
|
|
|
|
2003-12-03 23:25:10 +01:00
|
|
|
i=SendMessageA(hwnd, CB_FINDSTRINGEXACT, 0, (LPARAM)lplf->lfFaceName);
|
|
|
|
if (i == CB_ERR) {
|
|
|
|
i = SendMessageA(hwnd, CB_ADDSTRING, 0, (LPARAM)lplf->lfFaceName);
|
|
|
|
if( i != CB_ERR) {
|
|
|
|
/* store some important font information */
|
2003-12-30 23:08:17 +01:00
|
|
|
w = (lplf->lfPitchAndFamily) << 8 |
|
|
|
|
(HIWORD(lpNTM->ntmTm.ntmFlags) & 0xff);
|
2003-12-03 23:25:10 +01:00
|
|
|
SendMessageA(hwnd, CB_SETITEMDATA, i, MAKELONG(nFontType,w));
|
|
|
|
}
|
2003-11-29 00:35:34 +01:00
|
|
|
}
|
2003-12-03 23:25:10 +01:00
|
|
|
return 1;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* FontFamilyEnumProc32 [internal]
|
|
|
|
*/
|
2003-12-30 23:08:17 +01:00
|
|
|
static INT WINAPI FontFamilyEnumProc(const ENUMLOGFONTEXA *lpElfex,
|
2003-11-29 00:35:34 +01:00
|
|
|
const TEXTMETRICA *metrics, DWORD dwFontType, LPARAM lParam)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
LPCFn_ENUMSTRUCT e;
|
|
|
|
e=(LPCFn_ENUMSTRUCT)lParam;
|
2003-12-30 23:08:17 +01:00
|
|
|
return AddFontFamily( lpElfex, (NEWTEXTMETRICEXA *) metrics,
|
|
|
|
dwFontType, e->lpcf32a, e->hWnd1, e);
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* SetFontStylesToCombo2 [internal]
|
|
|
|
*
|
|
|
|
* Fill font style information into combobox (without using font.c directly)
|
|
|
|
*/
|
2000-11-25 04:09:30 +01:00
|
|
|
static int SetFontStylesToCombo2(HWND hwnd, HDC hdc, const LOGFONTA *lplf)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
#define FSTYLES 4
|
|
|
|
struct FONTSTYLE
|
|
|
|
{
|
|
|
|
int italic;
|
|
|
|
int weight;
|
|
|
|
char stname[20];
|
|
|
|
};
|
|
|
|
static struct FONTSTYLE fontstyles[FSTYLES]={
|
2003-11-29 00:38:51 +01:00
|
|
|
{ 0,FW_NORMAL,"Regular"}, { 1,FW_NORMAL,"Italic"},
|
|
|
|
{ 0,FW_BOLD,"Bold"}, { 1,FW_BOLD,"Bold Italic"}
|
2003-11-29 00:35:34 +01:00
|
|
|
};
|
|
|
|
HFONT hf;
|
|
|
|
TEXTMETRICA tm;
|
|
|
|
int i,j;
|
|
|
|
LOGFONTA lf;
|
|
|
|
|
|
|
|
memcpy(&lf, lplf, sizeof(LOGFONTA));
|
|
|
|
|
|
|
|
for (i=0;i<FSTYLES;i++)
|
|
|
|
{
|
|
|
|
lf.lfItalic=fontstyles[i].italic;
|
|
|
|
lf.lfWeight=fontstyles[i].weight;
|
|
|
|
hf=CreateFontIndirectA(&lf);
|
|
|
|
hf=SelectObject(hdc,hf);
|
|
|
|
GetTextMetricsA(hdc,&tm);
|
|
|
|
hf=SelectObject(hdc,hf);
|
|
|
|
DeleteObject(hf);
|
2003-11-29 00:38:51 +01:00
|
|
|
/* font successful created ? */
|
2003-11-29 00:35:34 +01:00
|
|
|
if (tm.tmWeight==fontstyles[i].weight &&
|
2003-11-29 00:38:51 +01:00
|
|
|
((tm.tmItalic != 0)==fontstyles[i].italic))
|
2003-11-29 00:35:34 +01:00
|
|
|
{
|
|
|
|
j=SendMessageA(hwnd,CB_ADDSTRING,0,(LPARAM)fontstyles[i].stname );
|
|
|
|
if (j==CB_ERR) return 1;
|
|
|
|
j=SendMessageA(hwnd, CB_SETITEMDATA, j,
|
|
|
|
MAKELONG(fontstyles[i].weight,fontstyles[i].italic));
|
|
|
|
if (j==CB_ERR) return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* AddFontSizeToCombo3 [internal]
|
|
|
|
*/
|
|
|
|
static int AddFontSizeToCombo3(HWND hwnd, UINT h, LPCHOOSEFONTA lpcf)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
char buffer[20];
|
|
|
|
|
|
|
|
if ( (!(lpcf->Flags & CF_LIMITSIZE)) ||
|
2003-11-29 00:35:34 +01:00
|
|
|
((lpcf->Flags & CF_LIMITSIZE) && (h >= lpcf->nSizeMin) && (h <= lpcf->nSizeMax)))
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
|
|
|
sprintf(buffer, "%2d", h);
|
2003-11-29 00:35:34 +01:00
|
|
|
j=SendMessageA(hwnd, CB_FINDSTRINGEXACT, -1, (LPARAM)buffer);
|
|
|
|
if (j==CB_ERR)
|
|
|
|
{
|
|
|
|
j=SendMessageA(hwnd, CB_ADDSTRING, 0, (LPARAM)buffer);
|
|
|
|
if (j!=CB_ERR) j = SendMessageA(hwnd, CB_SETITEMDATA, j, h);
|
|
|
|
if (j==CB_ERR) return 1;
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
return 0;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
|
|
|
|
1999-02-28 21:05:11 +01:00
|
|
|
/*************************************************************************
|
|
|
|
* SetFontSizesToCombo3 [internal]
|
|
|
|
*/
|
|
|
|
static int SetFontSizesToCombo3(HWND hwnd, LPCHOOSEFONTA lpcf)
|
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
static const int sizes[]={8,9,10,11,12,14,16,18,20,22,24,26,28,36,48,72,0};
|
|
|
|
int i;
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2003-11-29 00:35:34 +01:00
|
|
|
for (i=0; sizes[i]; i++)
|
|
|
|
if (AddFontSizeToCombo3(hwnd, sizes[i], lpcf)) return 1;
|
|
|
|
return 0;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
2003-12-11 06:17:05 +01:00
|
|
|
/*************************************************************************
|
|
|
|
* CFn_GetDC [internal]
|
|
|
|
*/
|
|
|
|
inline HDC CFn_GetDC(LPCHOOSEFONTA lpcf)
|
|
|
|
{
|
|
|
|
HDC ret = ((lpcf->Flags & CF_PRINTERFONTS) && lpcf->hDC) ?
|
|
|
|
lpcf->hDC :
|
|
|
|
GetDC(0);
|
|
|
|
if(!ret) ERR("HDC failure!!!\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* CFn_ReleaseDC [internal]
|
|
|
|
*/
|
|
|
|
inline void CFn_ReleaseDC(LPCHOOSEFONTA lpcf, HDC hdc)
|
|
|
|
{
|
|
|
|
if(!((lpcf->Flags & CF_PRINTERFONTS) && lpcf->hDC))
|
|
|
|
ReleaseDC(0, hdc);
|
|
|
|
}
|
|
|
|
|
1999-02-28 21:05:11 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* AddFontStyle [internal]
|
|
|
|
*/
|
2003-12-30 23:08:17 +01:00
|
|
|
INT AddFontStyle( const ENUMLOGFONTEXA *lpElfex, const NEWTEXTMETRICEXA *lpNTM,
|
2003-12-11 06:17:05 +01:00
|
|
|
UINT nFontType, LPCHOOSEFONTA lpcf, HWND hcmb2, HWND hcmb3,
|
|
|
|
HWND hDlg, BOOL iswin16)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
int i;
|
2003-12-03 23:25:10 +01:00
|
|
|
const LOGFONTA *lplf = &(lpElfex->elfLogFont);
|
|
|
|
HWND hcmb5;
|
2003-12-11 06:17:05 +01:00
|
|
|
HDC hdc;
|
2003-11-29 00:35:34 +01:00
|
|
|
|
|
|
|
TRACE("(nFontType=%d)\n",nFontType);
|
|
|
|
TRACE(" %s h=%ld w=%ld e=%ld o=%ld wg=%ld i=%d u=%d s=%d"
|
|
|
|
" ch=%d op=%d cp=%d q=%d pf=%xh\n",
|
|
|
|
lplf->lfFaceName,lplf->lfHeight,lplf->lfWidth,
|
|
|
|
lplf->lfEscapement,lplf->lfOrientation,
|
|
|
|
lplf->lfWeight,lplf->lfItalic,lplf->lfUnderline,
|
|
|
|
lplf->lfStrikeOut,lplf->lfCharSet, lplf->lfOutPrecision,
|
|
|
|
lplf->lfClipPrecision,lplf->lfQuality, lplf->lfPitchAndFamily);
|
|
|
|
if (nFontType & RASTER_FONTTYPE)
|
|
|
|
{
|
2003-12-11 06:17:05 +01:00
|
|
|
INT points;
|
|
|
|
if(!(hdc = CFn_GetDC(lpcf))) return 0;
|
2003-12-30 23:08:17 +01:00
|
|
|
points = MulDiv( lpNTM->ntmTm.tmHeight - lpNTM->ntmTm.tmInternalLeading,
|
|
|
|
72, GetDeviceCaps(hdc, LOGPIXELSY));
|
2003-12-11 06:17:05 +01:00
|
|
|
CFn_ReleaseDC(lpcf, hdc);
|
|
|
|
i = AddFontSizeToCombo3(hcmb3, points, lpcf);
|
|
|
|
if( i) return 0;
|
2003-11-29 00:35:34 +01:00
|
|
|
} else if (SetFontSizesToCombo3(hcmb3, lpcf)) return 0;
|
|
|
|
|
|
|
|
if (!SendMessageA(hcmb2, CB_GETCOUNT, 0, 0))
|
|
|
|
{
|
2003-12-11 06:17:05 +01:00
|
|
|
if(!(hdc = CFn_GetDC(lpcf))) return 0;
|
2003-11-29 00:35:34 +01:00
|
|
|
i=SetFontStylesToCombo2(hcmb2,hdc,lplf);
|
2003-12-11 06:17:05 +01:00
|
|
|
CFn_ReleaseDC(lpcf, hdc);
|
2003-11-29 00:35:34 +01:00
|
|
|
if (i)
|
|
|
|
return 0;
|
|
|
|
}
|
2003-12-03 23:25:10 +01:00
|
|
|
if( iswin16 || !( hcmb5 = GetDlgItem(hDlg, cmb5))) return 1;
|
|
|
|
i = SendMessageA( hcmb5, CB_FINDSTRINGEXACT, 0,
|
|
|
|
(LPARAM)lpElfex->elfScript);
|
|
|
|
if( i == CB_ERR) {
|
|
|
|
i = SendMessageA( hcmb5, CB_ADDSTRING, 0,
|
|
|
|
(LPARAM)lpElfex->elfScript);
|
|
|
|
if( i != CB_ERR)
|
|
|
|
SendMessageA( hcmb5, CB_SETITEMDATA, i, lplf->lfCharSet);
|
|
|
|
}
|
2003-11-29 00:35:34 +01:00
|
|
|
return 1 ;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
2003-12-03 23:25:10 +01:00
|
|
|
|
2003-11-29 00:40:12 +01:00
|
|
|
static INT CFn_FitFontSize( HWND hDlg, int points)
|
|
|
|
{
|
|
|
|
int i,n;
|
|
|
|
int ret = 0;
|
|
|
|
/* look for fitting font size in combobox3 */
|
|
|
|
n=SendDlgItemMessageA(hDlg, cmb3, CB_GETCOUNT, 0, 0);
|
|
|
|
for (i=0;i<n;i++)
|
|
|
|
{
|
|
|
|
if (points == (int)SendDlgItemMessageA
|
|
|
|
(hDlg,cmb3, CB_GETITEMDATA,i,0))
|
|
|
|
{
|
|
|
|
SendDlgItemMessageA(hDlg,cmb3,CB_SETCURSEL,i,0);
|
|
|
|
SendMessageA(hDlg, WM_COMMAND,
|
|
|
|
MAKEWPARAM(cmb3, CBN_SELCHANGE),
|
|
|
|
(LPARAM)GetDlgItem(hDlg,cmb3));
|
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static INT CFn_FitFontStyle( HWND hDlg, LONG packedstyle )
|
|
|
|
{
|
|
|
|
LONG id;
|
|
|
|
int i, ret = 0;
|
|
|
|
/* look for fitting font style in combobox2 */
|
|
|
|
for (i=0;i<TEXT_EXTRAS;i++)
|
|
|
|
{
|
|
|
|
id =SendDlgItemMessageA(hDlg, cmb2, CB_GETITEMDATA, i, 0);
|
|
|
|
if (packedstyle == id)
|
|
|
|
{
|
|
|
|
SendDlgItemMessageA(hDlg, cmb2, CB_SETCURSEL, i, 0);
|
|
|
|
SendMessageA(hDlg, WM_COMMAND, MAKEWPARAM(cmb2, CBN_SELCHANGE),
|
|
|
|
(LPARAM)GetDlgItem(hDlg,cmb2));
|
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
|
2003-12-03 23:25:10 +01:00
|
|
|
|
|
|
|
static INT CFn_FitCharSet( HWND hDlg, int charset )
|
|
|
|
{
|
|
|
|
int i,n,cs;
|
2003-12-04 02:43:01 +01:00
|
|
|
/* look for fitting char set in combobox5 */
|
2003-12-03 23:25:10 +01:00
|
|
|
n=SendDlgItemMessageA(hDlg, cmb5, CB_GETCOUNT, 0, 0);
|
|
|
|
for (i=0;i<n;i++)
|
|
|
|
{
|
|
|
|
cs =SendDlgItemMessageA(hDlg, cmb5, CB_GETITEMDATA, i, 0);
|
|
|
|
if (charset == cs)
|
|
|
|
{
|
|
|
|
SendDlgItemMessageA(hDlg, cmb5, CB_SETCURSEL, i, 0);
|
|
|
|
SendMessageA(hDlg, WM_COMMAND, MAKEWPARAM(cmb5, CBN_SELCHANGE),
|
|
|
|
(LPARAM)GetDlgItem(hDlg,cmb2));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* no charset fits: select the first one in the list */
|
|
|
|
SendDlgItemMessageA(hDlg, cmb5, CB_SETCURSEL, 0, 0);
|
|
|
|
SendMessageA(hDlg, WM_COMMAND, MAKEWPARAM(cmb5, CBN_SELCHANGE),
|
|
|
|
(LPARAM)GetDlgItem(hDlg,cmb2));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-02-28 21:05:11 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* FontStyleEnumProc32 [internal]
|
|
|
|
*/
|
2003-12-03 23:25:10 +01:00
|
|
|
static INT WINAPI FontStyleEnumProc( const ENUMLOGFONTEXA *lpElfex,
|
2003-11-29 00:35:34 +01:00
|
|
|
const TEXTMETRICA *metrics, DWORD dwFontType, LPARAM lParam )
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
LPCFn_ENUMSTRUCT s=(LPCFn_ENUMSTRUCT)lParam;
|
|
|
|
HWND hcmb2=s->hWnd1;
|
|
|
|
HWND hcmb3=s->hWnd2;
|
|
|
|
HWND hDlg=GetParent(hcmb3);
|
2003-12-30 23:08:17 +01:00
|
|
|
return AddFontStyle( lpElfex, (const NEWTEXTMETRICEXA *) metrics,
|
|
|
|
dwFontType, s->lpcf32a, hcmb2, hcmb3, hDlg, FALSE);
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CFn_WMInitDialog [internal]
|
|
|
|
*/
|
2003-06-07 02:33:32 +02:00
|
|
|
LRESULT CFn_WMInitDialog(HWND hDlg, WPARAM wParam, LPARAM lParam,
|
1999-02-28 21:05:11 +01:00
|
|
|
LPCHOOSEFONTA lpcf)
|
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
HDC hdc;
|
|
|
|
int i,j,init=0;
|
2003-11-29 00:40:12 +01:00
|
|
|
long pstyle;
|
2003-12-11 06:17:05 +01:00
|
|
|
CFn_ENUMSTRUCT s;
|
2003-11-29 00:35:34 +01:00
|
|
|
LPLOGFONTA lpxx;
|
|
|
|
HCURSOR hcursor=SetCursor(LoadCursorA(0,(LPSTR)IDC_WAIT));
|
|
|
|
|
2003-12-30 20:15:43 +01:00
|
|
|
SetPropA(hDlg, WINE_FONTDATA, (HANDLE)lParam);
|
2003-11-29 00:35:34 +01:00
|
|
|
lpxx=lpcf->lpLogFont;
|
|
|
|
TRACE("WM_INITDIALOG lParam=%08lX\n", lParam);
|
|
|
|
|
|
|
|
if (lpcf->lStructSize != sizeof(CHOOSEFONTA))
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
ERR("structure size failure !!!\n");
|
|
|
|
EndDialog (hDlg, 0);
|
|
|
|
return FALSE;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
2003-12-30 23:08:17 +01:00
|
|
|
if (!himlTT)
|
|
|
|
himlTT = ImageList_LoadImageA( COMDLG32_hInstance, MAKEINTRESOURCEA(38),
|
|
|
|
TTBITMAP_XSIZE, 0, CLR_DEFAULT, IMAGE_BITMAP, 0);
|
2003-11-29 00:35:34 +01:00
|
|
|
|
|
|
|
if (!(lpcf->Flags & CF_SHOWHELP) || !IsWindow(lpcf->hwndOwner))
|
|
|
|
ShowWindow(GetDlgItem(hDlg,pshHelp),SW_HIDE);
|
|
|
|
if (!(lpcf->Flags & CF_APPLY))
|
|
|
|
ShowWindow(GetDlgItem(hDlg,psh3),SW_HIDE);
|
|
|
|
if (lpcf->Flags & CF_EFFECTS)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
for (i=0;i<TEXT_COLORS;i++)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
char name[30];
|
|
|
|
|
|
|
|
if( LoadStringA(COMDLG32_hInstance, IDS_COLOR_BLACK+i, name,
|
|
|
|
sizeof(name)/sizeof(*name) )==0 )
|
|
|
|
{
|
|
|
|
strcpy( name, "[color name]" );
|
|
|
|
}
|
|
|
|
j=SendDlgItemMessageA(hDlg, cmb4, CB_ADDSTRING, 0, (LPARAM)name);
|
|
|
|
SendDlgItemMessageA(hDlg, cmb4, CB_SETITEMDATA16, j, textcolors[j]);
|
|
|
|
/* look for a fitting value in color combobox */
|
|
|
|
if (textcolors[j]==lpcf->rgbColors)
|
|
|
|
SendDlgItemMessageA(hDlg,cmb4, CB_SETCURSEL,j,0);
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
}
|
2003-11-29 00:35:34 +01:00
|
|
|
else
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
ShowWindow(GetDlgItem(hDlg,cmb4),SW_HIDE);
|
|
|
|
ShowWindow(GetDlgItem(hDlg,chx1),SW_HIDE);
|
|
|
|
ShowWindow(GetDlgItem(hDlg,chx2),SW_HIDE);
|
|
|
|
ShowWindow(GetDlgItem(hDlg,grp1),SW_HIDE);
|
|
|
|
ShowWindow(GetDlgItem(hDlg,stc4),SW_HIDE);
|
|
|
|
}
|
2003-12-11 06:17:05 +01:00
|
|
|
if(!(hdc = CFn_GetDC(lpcf)))
|
2003-11-29 00:35:34 +01:00
|
|
|
{
|
2003-12-11 06:17:05 +01:00
|
|
|
EndDialog (hDlg, 0);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
s.hWnd1=GetDlgItem(hDlg,cmb1);
|
|
|
|
s.lpcf32a=lpcf;
|
|
|
|
do {
|
2003-12-30 23:08:17 +01:00
|
|
|
LOGFONTA elf;
|
2003-12-11 06:17:05 +01:00
|
|
|
s.added = 0;
|
2003-12-30 23:08:17 +01:00
|
|
|
elf.lfCharSet = DEFAULT_CHARSET; /* enum all charsets */
|
|
|
|
elf.lfPitchAndFamily = 0;
|
|
|
|
elf.lfFaceName[0] = '\0'; /* enum all fonts */
|
|
|
|
if (!EnumFontFamiliesExA(hdc, &elf, (FONTENUMPROCA)FontFamilyEnumProc, (LPARAM)&s, 0))
|
|
|
|
{
|
|
|
|
TRACE("EnumFontFamiliesEx returns 0\n");
|
2003-11-29 00:35:34 +01:00
|
|
|
break;
|
2003-12-11 06:17:05 +01:00
|
|
|
}
|
|
|
|
if (s.added) break;
|
|
|
|
if (lpcf->Flags & CF_FIXEDPITCHONLY) {
|
|
|
|
FIXME("No font found with fixed pitch only, dropping flag.\n");
|
|
|
|
lpcf->Flags &= ~CF_FIXEDPITCHONLY;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (lpcf->Flags & CF_TTONLY) {
|
|
|
|
FIXME("No font found with truetype only, dropping flag.\n");
|
|
|
|
lpcf->Flags &= ~CF_TTONLY;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} while (1);
|
2003-11-29 00:35:34 +01:00
|
|
|
|
|
|
|
|
2003-12-11 06:17:05 +01:00
|
|
|
if (lpcf->Flags & CF_INITTOLOGFONTSTRUCT)
|
|
|
|
{
|
|
|
|
/* look for fitting font name in combobox1 */
|
|
|
|
j=SendDlgItemMessageA(hDlg,cmb1,CB_FINDSTRING,-1,(LONG)lpxx->lfFaceName);
|
|
|
|
if (j!=CB_ERR)
|
2003-11-29 00:35:34 +01:00
|
|
|
{
|
2003-12-11 06:17:05 +01:00
|
|
|
INT height = lpxx->lfHeight < 0 ? -lpxx->lfHeight :
|
|
|
|
lpxx->lfHeight;
|
|
|
|
INT points;
|
|
|
|
int charset = lpxx->lfCharSet;
|
|
|
|
points = MulDiv( height, 72, GetDeviceCaps(hdc, LOGPIXELSY));
|
|
|
|
pstyle = MAKELONG(lpxx->lfWeight > FW_MEDIUM ? FW_BOLD:
|
|
|
|
FW_NORMAL,lpxx->lfItalic !=0);
|
|
|
|
SendDlgItemMessageA(hDlg, cmb1, CB_SETCURSEL, j, 0);
|
2003-11-29 00:35:34 +01:00
|
|
|
SendMessageA(hDlg, WM_COMMAND, MAKEWPARAM(cmb1, CBN_SELCHANGE),
|
|
|
|
(LPARAM)GetDlgItem(hDlg,cmb1));
|
2003-12-11 06:17:05 +01:00
|
|
|
init=1;
|
|
|
|
/* look for fitting font style in combobox2 */
|
|
|
|
CFn_FitFontStyle(hDlg, pstyle);
|
|
|
|
/* look for fitting font size in combobox3 */
|
|
|
|
CFn_FitFontSize(hDlg, points);
|
|
|
|
CFn_FitCharSet( hDlg, charset );
|
2003-11-29 00:35:34 +01:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
2003-12-11 06:17:05 +01:00
|
|
|
if (!init)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-12-11 06:17:05 +01:00
|
|
|
SendDlgItemMessageA(hDlg,cmb1,CB_SETCURSEL,0,0);
|
|
|
|
SendMessageA(hDlg, WM_COMMAND, MAKEWPARAM(cmb1, CBN_SELCHANGE),
|
|
|
|
(LPARAM)GetDlgItem(hDlg,cmb1));
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
2003-12-11 06:17:05 +01:00
|
|
|
if (lpcf->Flags & CF_USESTYLE && lpcf->lpszStyle)
|
|
|
|
{
|
|
|
|
j=SendDlgItemMessageA(hDlg,cmb2,CB_FINDSTRING,-1,(LONG)lpcf->lpszStyle);
|
|
|
|
if (j!=CB_ERR)
|
|
|
|
{
|
|
|
|
j=SendDlgItemMessageA(hDlg,cmb2,CB_SETCURSEL,j,0);
|
|
|
|
SendMessageA(hDlg,WM_COMMAND,cmb2,
|
|
|
|
MAKELONG(HWND_16(GetDlgItem(hDlg,cmb2)),CBN_SELCHANGE));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CFn_ReleaseDC(lpcf, hdc);
|
2003-11-29 00:35:34 +01:00
|
|
|
SetCursor(hcursor);
|
|
|
|
return TRUE;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CFn_WMMeasureItem [internal]
|
|
|
|
*/
|
2003-06-07 02:33:32 +02:00
|
|
|
LRESULT CFn_WMMeasureItem(HWND hDlg, WPARAM wParam, LPARAM lParam)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-12-30 23:08:17 +01:00
|
|
|
HDC hdc;
|
|
|
|
HFONT hfontprev;
|
|
|
|
TEXTMETRICW tm;
|
2003-11-29 00:35:34 +01:00
|
|
|
LPMEASUREITEMSTRUCT lpmi=(LPMEASUREITEMSTRUCT)lParam;
|
2003-12-30 23:08:17 +01:00
|
|
|
if (!himlTT)
|
|
|
|
himlTT = ImageList_LoadImageA( COMDLG32_hInstance, MAKEINTRESOURCEA(38),
|
|
|
|
TTBITMAP_XSIZE, 0, CLR_DEFAULT, IMAGE_BITMAP, 0);
|
|
|
|
ImageList_GetIconSize( himlTT, 0, &lpmi->itemHeight);
|
|
|
|
lpmi->itemHeight += 2;
|
|
|
|
/* use MAX of bitmap height and tm.tmHeight .*/
|
|
|
|
hdc=GetDC( hDlg);
|
|
|
|
if(!hdc) return 0;
|
|
|
|
hfontprev = SelectObject( hdc, GetStockObject( SYSTEM_FONT));
|
|
|
|
GetTextMetricsW( hdc, &tm);
|
|
|
|
if( tm.tmHeight > lpmi->itemHeight) lpmi->itemHeight = tm.tmHeight;
|
|
|
|
SelectObject( hdc, hfontprev);
|
|
|
|
ReleaseDC( hDlg, hdc);
|
2003-11-29 00:35:34 +01:00
|
|
|
return 0;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CFn_WMDrawItem [internal]
|
|
|
|
*/
|
2003-06-07 02:33:32 +02:00
|
|
|
LRESULT CFn_WMDrawItem(HWND hDlg, WPARAM wParam, LPARAM lParam)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
HBRUSH hBrush;
|
|
|
|
char buffer[40];
|
|
|
|
COLORREF cr, oldText=0, oldBk=0;
|
|
|
|
RECT rect;
|
|
|
|
int nFontType;
|
2003-12-30 23:08:17 +01:00
|
|
|
int idx;
|
2003-11-29 00:35:34 +01:00
|
|
|
LPDRAWITEMSTRUCT lpdi = (LPDRAWITEMSTRUCT)lParam;
|
|
|
|
|
|
|
|
if (lpdi->itemID == (UINT)-1) /* got no items */
|
|
|
|
DrawFocusRect(lpdi->hDC, &lpdi->rcItem);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (lpdi->CtlType == ODT_COMBOBOX)
|
|
|
|
{
|
2003-12-04 22:53:14 +01:00
|
|
|
if (lpdi->itemState & ODS_SELECTED)
|
2003-11-29 00:35:34 +01:00
|
|
|
{
|
|
|
|
hBrush=GetSysColorBrush(COLOR_HIGHLIGHT);
|
|
|
|
oldText=SetTextColor(lpdi->hDC, GetSysColor(COLOR_HIGHLIGHTTEXT));
|
|
|
|
oldBk=SetBkColor(lpdi->hDC, GetSysColor(COLOR_HIGHLIGHT));
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
hBrush = SelectObject(lpdi->hDC, GetStockObject(LTGRAY_BRUSH));
|
|
|
|
SelectObject(lpdi->hDC, hBrush);
|
|
|
|
}
|
|
|
|
FillRect(lpdi->hDC, &lpdi->rcItem, hBrush);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return TRUE; /* this should never happen */
|
|
|
|
|
|
|
|
rect=lpdi->rcItem;
|
|
|
|
switch (lpdi->CtlID)
|
|
|
|
{
|
|
|
|
case cmb1:
|
|
|
|
/* TRACE(commdlg,"WM_Drawitem cmb1\n"); */
|
|
|
|
SendMessageA(lpdi->hwndItem, CB_GETLBTEXT, lpdi->itemID,
|
|
|
|
(LPARAM)buffer);
|
2003-12-30 23:08:17 +01:00
|
|
|
TextOutA(lpdi->hDC, lpdi->rcItem.left + TTBITMAP_XSIZE + 10,
|
2003-11-29 00:35:34 +01:00
|
|
|
lpdi->rcItem.top, buffer, strlen(buffer));
|
|
|
|
nFontType = SendMessageA(lpdi->hwndItem, CB_GETITEMDATA, lpdi->itemID,0L);
|
2003-12-30 23:08:17 +01:00
|
|
|
idx = -1;
|
|
|
|
if (nFontType & TRUETYPE_FONTTYPE) {
|
|
|
|
idx = 0; /* picture: TT */
|
|
|
|
if( nFontType & NTM_TT_OPENTYPE)
|
|
|
|
idx = 2; /* picture: O */
|
|
|
|
} else if( nFontType & NTM_PS_OPENTYPE)
|
|
|
|
idx = 3; /* picture: O+ps */
|
|
|
|
else if( nFontType & NTM_TYPE1)
|
|
|
|
idx = 4; /* picture: a */
|
|
|
|
else if( nFontType & DEVICE_FONTTYPE)
|
|
|
|
idx = 1; /* picture: printer */
|
|
|
|
if( idx >= 0)
|
|
|
|
ImageList_Draw( himlTT, idx, lpdi->hDC, lpdi->rcItem.left,
|
|
|
|
lpdi->rcItem.top, ILD_TRANSPARENT);
|
2003-11-29 00:35:34 +01:00
|
|
|
break;
|
|
|
|
case cmb2:
|
|
|
|
case cmb3:
|
|
|
|
/* TRACE(commdlg,"WM_DRAWITEN cmb2,cmb3\n"); */
|
2003-12-03 23:25:10 +01:00
|
|
|
case cmb5:
|
2003-11-29 00:35:34 +01:00
|
|
|
SendMessageA(lpdi->hwndItem, CB_GETLBTEXT, lpdi->itemID,
|
|
|
|
(LPARAM)buffer);
|
|
|
|
TextOutA(lpdi->hDC, lpdi->rcItem.left,
|
|
|
|
lpdi->rcItem.top, buffer, strlen(buffer));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cmb4:
|
|
|
|
/* TRACE(commdlg,"WM_DRAWITEM cmb4 (=COLOR)\n"); */
|
|
|
|
SendMessageA(lpdi->hwndItem, CB_GETLBTEXT, lpdi->itemID,
|
|
|
|
(LPARAM)buffer);
|
|
|
|
TextOutA(lpdi->hDC, lpdi->rcItem.left + 25+5,
|
|
|
|
lpdi->rcItem.top, buffer, strlen(buffer));
|
|
|
|
cr = SendMessageA(lpdi->hwndItem, CB_GETITEMDATA, lpdi->itemID,0L);
|
|
|
|
hBrush = CreateSolidBrush(cr);
|
|
|
|
if (hBrush)
|
|
|
|
{
|
|
|
|
hBrush = SelectObject (lpdi->hDC, hBrush) ;
|
|
|
|
rect.right=rect.left+25;
|
|
|
|
rect.top++;
|
|
|
|
rect.left+=5;
|
|
|
|
rect.bottom--;
|
|
|
|
Rectangle( lpdi->hDC, rect.left, rect.top,
|
|
|
|
rect.right, rect.bottom );
|
|
|
|
DeleteObject( SelectObject (lpdi->hDC, hBrush)) ;
|
|
|
|
}
|
|
|
|
rect=lpdi->rcItem;
|
|
|
|
rect.left+=25+5;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return TRUE; /* this should never happen */
|
|
|
|
}
|
2003-12-04 22:53:14 +01:00
|
|
|
if (lpdi->itemState & ODS_SELECTED)
|
2003-11-29 00:35:34 +01:00
|
|
|
{
|
|
|
|
SetTextColor(lpdi->hDC, oldText);
|
|
|
|
SetBkColor(lpdi->hDC, oldBk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CFn_WMCommand [internal]
|
|
|
|
*/
|
2003-06-07 02:33:32 +02:00
|
|
|
LRESULT CFn_WMCommand(HWND hDlg, WPARAM wParam, LPARAM lParam,
|
2003-11-29 00:35:34 +01:00
|
|
|
LPCHOOSEFONTA lpcf)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-12-30 23:08:17 +01:00
|
|
|
int i;
|
2003-11-29 00:35:34 +01:00
|
|
|
long l;
|
|
|
|
HDC hdc;
|
|
|
|
LPLOGFONTA lpxx=lpcf->lpLogFont;
|
|
|
|
|
|
|
|
TRACE("WM_COMMAND wParam=%08lX lParam=%08lX\n", (LONG)wParam, lParam);
|
|
|
|
switch (LOWORD(wParam))
|
|
|
|
{
|
|
|
|
case cmb1:
|
|
|
|
if (HIWORD(wParam)==CBN_SELCHANGE)
|
|
|
|
{
|
2003-12-11 06:17:05 +01:00
|
|
|
INT pointsize; /* save current pointsize */
|
|
|
|
LONG pstyle; /* save current style */
|
|
|
|
int charset;
|
|
|
|
int idx;
|
|
|
|
if(!(hdc = CFn_GetDC(lpcf)))
|
2003-11-29 00:35:34 +01:00
|
|
|
{
|
|
|
|
EndDialog (hDlg, 0);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2003-12-11 06:17:05 +01:00
|
|
|
idx = SendDlgItemMessageA(hDlg, cmb3, CB_GETCURSEL, 0, 0);
|
|
|
|
pointsize = (int)SendDlgItemMessageA( hDlg, cmb3, CB_GETITEMDATA,
|
|
|
|
idx, 0);
|
|
|
|
idx = SendDlgItemMessageA(hDlg, cmb2, CB_GETCURSEL, 0, 0);
|
|
|
|
pstyle = SendDlgItemMessageA(hDlg, cmb2, CB_GETITEMDATA, idx, 0);
|
|
|
|
idx = SendDlgItemMessageA(hDlg, cmb5, CB_GETCURSEL, 0, 0);
|
|
|
|
charset = SendDlgItemMessageA(hDlg, cmb5, CB_GETITEMDATA, idx, 0);
|
|
|
|
|
|
|
|
SendDlgItemMessageA(hDlg, cmb2, CB_RESETCONTENT, 0, 0);
|
|
|
|
SendDlgItemMessageA(hDlg, cmb3, CB_RESETCONTENT, 0, 0);
|
|
|
|
SendDlgItemMessageA(hDlg, cmb5, CB_RESETCONTENT, 0, 0);
|
|
|
|
i=SendDlgItemMessageA(hDlg, cmb1, CB_GETCURSEL, 0, 0);
|
|
|
|
if (i!=CB_ERR)
|
|
|
|
{
|
|
|
|
HCURSOR hcursor=SetCursor(LoadCursorA(0,(LPSTR)IDC_WAIT));
|
|
|
|
CFn_ENUMSTRUCT s;
|
|
|
|
LOGFONTA enumlf;
|
|
|
|
SendDlgItemMessageA(hDlg, cmb1, CB_GETLBTEXT, i,
|
|
|
|
(LPARAM)enumlf.lfFaceName);
|
|
|
|
TRACE("WM_COMMAND/cmb1 =>%s\n",enumlf.lfFaceName);
|
|
|
|
s.hWnd1=GetDlgItem(hDlg, cmb2);
|
|
|
|
s.hWnd2=GetDlgItem(hDlg, cmb3);
|
|
|
|
s.lpcf32a=lpcf;
|
|
|
|
enumlf.lfCharSet = DEFAULT_CHARSET; /* enum all charsets */
|
|
|
|
enumlf.lfPitchAndFamily = 0;
|
|
|
|
EnumFontFamiliesExA(hdc, &enumlf,
|
|
|
|
(FONTENUMPROCA)FontStyleEnumProc, (LPARAM)&s, 0);
|
|
|
|
CFn_FitFontStyle(hDlg, pstyle);
|
|
|
|
if( pointsize != CB_ERR) CFn_FitFontSize(hDlg, pointsize);
|
|
|
|
if( charset != CB_ERR) CFn_FitCharSet( hDlg, charset );
|
|
|
|
SetCursor(hcursor);
|
|
|
|
}
|
|
|
|
CFn_ReleaseDC(lpcf, hdc);
|
2003-11-29 00:35:34 +01:00
|
|
|
}
|
|
|
|
case chx1:
|
|
|
|
case chx2:
|
|
|
|
case cmb2:
|
|
|
|
case cmb3:
|
2003-12-03 23:25:10 +01:00
|
|
|
case cmb5:
|
2003-11-29 00:35:34 +01:00
|
|
|
if (HIWORD(wParam)==CBN_SELCHANGE || HIWORD(wParam)== BN_CLICKED )
|
|
|
|
{
|
|
|
|
char str[256];
|
|
|
|
WINDOWINFO wininfo;
|
|
|
|
|
|
|
|
TRACE("WM_COMMAND/cmb2,3 =%08lX\n", lParam);
|
|
|
|
i=SendDlgItemMessageA(hDlg,cmb1,CB_GETCURSEL,0,0);
|
|
|
|
if (i==CB_ERR)
|
|
|
|
i=GetDlgItemTextA( hDlg, cmb1, str, 256 );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SendDlgItemMessageA(hDlg,cmb1,CB_GETLBTEXT,i,
|
|
|
|
(LPARAM)str);
|
|
|
|
l=SendDlgItemMessageA(hDlg,cmb1,CB_GETITEMDATA,i,0);
|
|
|
|
lpcf->nFontType = LOWORD(l);
|
|
|
|
/* FIXME: lpcf->nFontType |= .... SIMULATED_FONTTYPE and so */
|
|
|
|
/* same value reported to the EnumFonts
|
|
|
|
call back with the extra FONTTYPE_... bits added */
|
2003-12-30 23:08:17 +01:00
|
|
|
lpxx->lfPitchAndFamily = HIWORD(l) >> 8;
|
2003-11-29 00:35:34 +01:00
|
|
|
}
|
|
|
|
strcpy(lpxx->lfFaceName,str);
|
|
|
|
i=SendDlgItemMessageA(hDlg, cmb2, CB_GETCURSEL, 0, 0);
|
|
|
|
if (i!=CB_ERR)
|
|
|
|
{
|
|
|
|
l=SendDlgItemMessageA(hDlg, cmb2, CB_GETITEMDATA, i, 0);
|
|
|
|
if (0!=(lpxx->lfItalic=HIWORD(l)))
|
|
|
|
lpcf->nFontType |= ITALIC_FONTTYPE;
|
|
|
|
if ((lpxx->lfWeight=LOWORD(l)) > FW_MEDIUM)
|
|
|
|
lpcf->nFontType |= BOLD_FONTTYPE;
|
|
|
|
}
|
|
|
|
i=SendDlgItemMessageA(hDlg, cmb3, CB_GETCURSEL, 0, 0);
|
2003-12-11 06:17:05 +01:00
|
|
|
if( i != CB_ERR)
|
|
|
|
lpcf->iPointSize = 10 * LOWORD(SendDlgItemMessageA(hDlg, cmb3,
|
|
|
|
CB_GETITEMDATA , i, 0));
|
2003-11-29 00:35:34 +01:00
|
|
|
else
|
2003-12-11 06:17:05 +01:00
|
|
|
lpcf->iPointSize = 100;
|
|
|
|
hdc = CFn_GetDC(lpcf);
|
|
|
|
if( hdc)
|
|
|
|
{
|
|
|
|
lpxx->lfHeight = - MulDiv( lpcf->iPointSize ,
|
|
|
|
GetDeviceCaps(hdc, LOGPIXELSY), 720);
|
|
|
|
CFn_ReleaseDC(lpcf, hdc);
|
|
|
|
} else
|
|
|
|
lpxx->lfHeight = -lpcf->iPointSize / 10;
|
2003-12-03 23:25:10 +01:00
|
|
|
i=SendDlgItemMessageA(hDlg, cmb5, CB_GETCURSEL, 0, 0);
|
|
|
|
if (i!=CB_ERR)
|
|
|
|
lpxx->lfCharSet=SendDlgItemMessageA(hDlg, cmb5, CB_GETITEMDATA, i, 0);
|
2003-12-30 23:08:17 +01:00
|
|
|
else
|
|
|
|
lpxx->lfCharSet = DEFAULT_CHARSET;
|
2003-11-29 00:35:34 +01:00
|
|
|
lpxx->lfStrikeOut=IsDlgButtonChecked(hDlg,chx1);
|
|
|
|
lpxx->lfUnderline=IsDlgButtonChecked(hDlg,chx2);
|
|
|
|
lpxx->lfWidth=lpxx->lfOrientation=lpxx->lfEscapement=0;
|
|
|
|
lpxx->lfOutPrecision=OUT_DEFAULT_PRECIS;
|
|
|
|
lpxx->lfClipPrecision=CLIP_DEFAULT_PRECIS;
|
|
|
|
lpxx->lfQuality=DEFAULT_QUALITY;
|
|
|
|
|
|
|
|
wininfo.cbSize=sizeof(wininfo);
|
|
|
|
|
|
|
|
if( GetWindowInfo( GetDlgItem( hDlg, stc5), &wininfo ) )
|
|
|
|
{
|
|
|
|
MapWindowPoints( 0, hDlg, (LPPOINT) &wininfo.rcWindow, 2);
|
|
|
|
InvalidateRect( hDlg, &wininfo.rcWindow, TRUE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cmb4:
|
|
|
|
i=SendDlgItemMessageA(hDlg, cmb4, CB_GETCURSEL, 0, 0);
|
|
|
|
if (i!=CB_ERR)
|
|
|
|
{
|
|
|
|
WINDOWINFO wininfo;
|
|
|
|
|
|
|
|
lpcf->rgbColors=textcolors[i];
|
|
|
|
wininfo.cbSize=sizeof(wininfo);
|
|
|
|
|
|
|
|
if( GetWindowInfo( GetDlgItem( hDlg, stc5), &wininfo ) )
|
|
|
|
{
|
|
|
|
MapWindowPoints( 0, hDlg, (LPPOINT) &wininfo.rcWindow, 2);
|
|
|
|
InvalidateRect( hDlg, &wininfo.rcWindow, TRUE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case psh15:
|
|
|
|
i=RegisterWindowMessageA( HELPMSGSTRINGA );
|
|
|
|
if (lpcf->hwndOwner)
|
2003-12-30 20:15:43 +01:00
|
|
|
SendMessageA(lpcf->hwndOwner, i, 0, (LPARAM)GetPropA(hDlg, WINE_FONTDATA));
|
2003-11-29 00:35:34 +01:00
|
|
|
/* if (CFn_HookCallChk(lpcf))
|
|
|
|
CallWindowProc16(lpcf->lpfnHook,hDlg,WM_COMMAND,psh15,(LPARAM)lpcf);*/
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IDOK:
|
|
|
|
if ( (!(lpcf->Flags & CF_LIMITSIZE)) ||
|
|
|
|
( (lpcf->Flags & CF_LIMITSIZE) &&
|
2003-12-11 06:17:05 +01:00
|
|
|
(lpcf->iPointSize >= 10 * lpcf->nSizeMin) &&
|
|
|
|
(lpcf->iPointSize <= 10 * lpcf->nSizeMax)))
|
2003-11-29 00:35:34 +01:00
|
|
|
EndDialog(hDlg, TRUE);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char buffer[80];
|
|
|
|
sprintf(buffer,"Select a font size between %d and %d points.",
|
|
|
|
lpcf->nSizeMin,lpcf->nSizeMax);
|
|
|
|
MessageBoxA(hDlg, buffer, NULL, MB_OK);
|
|
|
|
}
|
|
|
|
return(TRUE);
|
|
|
|
case IDCANCEL:
|
|
|
|
EndDialog(hDlg, FALSE);
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
return(FALSE);
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
2003-06-07 02:33:32 +02:00
|
|
|
LRESULT CFn_WMDestroy(HWND hwnd, WPARAM wParam, LPARAM lParam)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
return TRUE;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
2003-12-03 23:25:10 +01:00
|
|
|
LRESULT CFn_WMPaint(HWND hDlg, WPARAM wParam, LPARAM lParam,
|
2003-11-29 00:35:34 +01:00
|
|
|
LPCHOOSEFONTA lpcf )
|
2003-02-15 01:02:24 +01:00
|
|
|
{
|
|
|
|
WINDOWINFO info;
|
|
|
|
|
|
|
|
info.cbSize=sizeof(info);
|
|
|
|
|
|
|
|
if( GetWindowInfo( GetDlgItem( hDlg, stc5), &info ) )
|
|
|
|
{
|
|
|
|
PAINTSTRUCT ps;
|
|
|
|
HDC hdc;
|
|
|
|
HPEN hOrigPen;
|
|
|
|
HFONT hOrigFont;
|
|
|
|
COLORREF rgbPrev;
|
2003-11-26 04:38:39 +01:00
|
|
|
LOGFONTA lf = *(lpcf->lpLogFont);
|
2003-02-15 01:02:24 +01:00
|
|
|
|
2003-11-26 04:38:39 +01:00
|
|
|
MapWindowPoints( 0, hDlg, (LPPOINT) &info.rcWindow, 2);
|
2003-02-15 01:02:24 +01:00
|
|
|
hdc=BeginPaint( hDlg, &ps );
|
|
|
|
|
|
|
|
/* Paint frame */
|
|
|
|
MoveToEx( hdc, info.rcWindow.left, info.rcWindow.bottom, NULL );
|
|
|
|
hOrigPen=SelectObject( hdc, CreatePen( PS_SOLID, 2,
|
2003-11-29 00:35:34 +01:00
|
|
|
GetSysColor( COLOR_3DSHADOW ) ));
|
2003-02-15 01:02:24 +01:00
|
|
|
LineTo( hdc, info.rcWindow.left, info.rcWindow.top );
|
|
|
|
LineTo( hdc, info.rcWindow.right, info.rcWindow.top );
|
|
|
|
DeleteObject(SelectObject( hdc, CreatePen( PS_SOLID, 2,
|
2003-11-29 00:35:34 +01:00
|
|
|
GetSysColor( COLOR_3DLIGHT ) )));
|
2003-02-15 01:02:24 +01:00
|
|
|
LineTo( hdc, info.rcWindow.right, info.rcWindow.bottom );
|
|
|
|
LineTo( hdc, info.rcWindow.left, info.rcWindow.bottom );
|
|
|
|
DeleteObject(SelectObject( hdc, hOrigPen ));
|
|
|
|
|
|
|
|
/* Draw the sample text itself */
|
|
|
|
info.rcWindow.right--;
|
|
|
|
info.rcWindow.bottom--;
|
|
|
|
info.rcWindow.top++;
|
|
|
|
info.rcWindow.left++;
|
2003-11-26 04:38:39 +01:00
|
|
|
hOrigFont = SelectObject( hdc, CreateFontIndirectA( &lf ) );
|
2003-02-15 01:02:24 +01:00
|
|
|
rgbPrev=SetTextColor( hdc, lpcf->rgbColors );
|
2003-12-01 23:40:56 +01:00
|
|
|
|
|
|
|
DrawTextW( hdc,
|
|
|
|
sample_lang_text[CHARSET_ORDER[lpcf->lpLogFont->lfCharSet]],
|
|
|
|
-1, &info.rcWindow, DT_CENTER|DT_VCENTER|DT_SINGLELINE );
|
2003-11-29 00:35:34 +01:00
|
|
|
|
2003-12-08 22:52:43 +01:00
|
|
|
DeleteObject(SelectObject( hdc, hOrigFont ));
|
2003-02-15 01:02:24 +01:00
|
|
|
EndPaint( hDlg, &ps );
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-02-28 21:05:11 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
2000-03-28 22:22:59 +02:00
|
|
|
* FormatCharDlgProcA [internal]
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
2002-10-31 02:04:39 +01:00
|
|
|
INT_PTR CALLBACK FormatCharDlgProcA(HWND hDlg, UINT uMsg, WPARAM wParam,
|
2003-11-29 00:35:34 +01:00
|
|
|
LPARAM lParam)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
LPCHOOSEFONTA lpcf;
|
|
|
|
INT_PTR res = FALSE;
|
|
|
|
if (uMsg!=WM_INITDIALOG)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-12-30 20:15:43 +01:00
|
|
|
lpcf=(LPCHOOSEFONTA)GetPropA(hDlg, WINE_FONTDATA);
|
2003-12-03 23:25:10 +01:00
|
|
|
if (!lpcf && uMsg != WM_MEASUREITEM)
|
2003-11-29 00:35:34 +01:00
|
|
|
return FALSE;
|
|
|
|
if (CFn_HookCallChk32(lpcf))
|
|
|
|
res=CallWindowProcA((WNDPROC)lpcf->lpfnHook, hDlg, uMsg, wParam, lParam);
|
|
|
|
if (res)
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lpcf=(LPCHOOSEFONTA)lParam;
|
|
|
|
if (!CFn_WMInitDialog(hDlg, wParam, lParam, lpcf))
|
|
|
|
{
|
|
|
|
TRACE("CFn_WMInitDialog returned FALSE\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (CFn_HookCallChk32(lpcf))
|
|
|
|
return CallWindowProcA((WNDPROC)lpcf->lpfnHook,hDlg,WM_INITDIALOG,wParam,lParam);
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
2003-11-29 00:35:34 +01:00
|
|
|
switch (uMsg)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
case WM_MEASUREITEM:
|
|
|
|
return CFn_WMMeasureItem(hDlg, wParam, lParam);
|
|
|
|
case WM_DRAWITEM:
|
|
|
|
return CFn_WMDrawItem(hDlg, wParam, lParam);
|
|
|
|
case WM_COMMAND:
|
|
|
|
return CFn_WMCommand(hDlg, wParam, lParam, lpcf);
|
|
|
|
case WM_DESTROY:
|
|
|
|
return CFn_WMDestroy(hDlg, wParam, lParam);
|
|
|
|
case WM_CHOOSEFONT_GETLOGFONT:
|
|
|
|
TRACE("WM_CHOOSEFONT_GETLOGFONT lParam=%08lX\n",
|
|
|
|
lParam);
|
|
|
|
FIXME("current logfont back to caller\n");
|
|
|
|
break;
|
|
|
|
case WM_PAINT:
|
|
|
|
return CFn_WMPaint(hDlg, wParam, lParam, lpcf);
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
2003-11-29 00:35:34 +01:00
|
|
|
return res;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2000-03-28 22:22:59 +02:00
|
|
|
* FormatCharDlgProcW [internal]
|
1999-02-28 21:05:11 +01:00
|
|
|
*/
|
2002-10-31 02:04:39 +01:00
|
|
|
INT_PTR CALLBACK FormatCharDlgProcW(HWND hDlg, UINT uMsg, WPARAM wParam,
|
2003-11-29 00:35:34 +01:00
|
|
|
LPARAM lParam)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
LPCHOOSEFONTW lpcf32w;
|
|
|
|
LPCHOOSEFONTA lpcf32a;
|
|
|
|
INT_PTR res = FALSE;
|
|
|
|
if (uMsg!=WM_INITDIALOG)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-12-30 20:15:43 +01:00
|
|
|
lpcf32w=(LPCHOOSEFONTW)GetPropA(hDlg, WINE_FONTDATA);
|
2003-11-29 00:35:34 +01:00
|
|
|
if (!lpcf32w)
|
|
|
|
return FALSE;
|
|
|
|
if (CFn_HookCallChk32((LPCHOOSEFONTA)lpcf32w))
|
|
|
|
res=CallWindowProcW((WNDPROC)lpcf32w->lpfnHook, hDlg, uMsg, wParam, lParam);
|
|
|
|
if (res)
|
|
|
|
return res;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
2003-11-29 00:35:34 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
lpcf32w=(LPCHOOSEFONTW)lParam;
|
|
|
|
lpcf32a=(LPCHOOSEFONTA)lpcf32w->lpTemplateName;
|
|
|
|
if (!CFn_WMInitDialog(hDlg, wParam, lParam, lpcf32a))
|
|
|
|
{
|
|
|
|
TRACE("CFn_WMInitDialog returned FALSE\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (CFn_HookCallChk32((LPCHOOSEFONTA)lpcf32w))
|
|
|
|
return CallWindowProcW((WNDPROC)lpcf32w->lpfnHook,hDlg,WM_INITDIALOG,wParam,lParam);
|
|
|
|
}
|
|
|
|
lpcf32a=(LPCHOOSEFONTA)lpcf32w->lpTemplateName;
|
|
|
|
switch (uMsg)
|
1999-02-28 21:05:11 +01:00
|
|
|
{
|
2003-11-29 00:35:34 +01:00
|
|
|
case WM_MEASUREITEM:
|
|
|
|
return CFn_WMMeasureItem(hDlg, wParam, lParam);
|
|
|
|
case WM_DRAWITEM:
|
|
|
|
return CFn_WMDrawItem(hDlg, wParam, lParam);
|
|
|
|
case WM_COMMAND:
|
|
|
|
return CFn_WMCommand(hDlg, wParam, lParam, lpcf32a);
|
|
|
|
case WM_DESTROY:
|
|
|
|
return CFn_WMDestroy(hDlg, wParam, lParam);
|
|
|
|
case WM_CHOOSEFONT_GETLOGFONT:
|
|
|
|
TRACE("WM_CHOOSEFONT_GETLOGFONT lParam=%08lX\n",
|
|
|
|
lParam);
|
|
|
|
FIXME("current logfont back to caller\n");
|
|
|
|
break;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|
2003-11-29 00:35:34 +01:00
|
|
|
return res;
|
1999-02-28 21:05:11 +01:00
|
|
|
}
|