Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /branches/ttcomtester/teraterm/teraterm/font_pp.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9048 - (hide annotations) (download) (as text)
Wed Dec 16 12:24:13 2020 UTC (3 years, 3 months ago) by nmaya
Original Path: trunk/teraterm/teraterm/font_pp.cpp
File MIME type: text/x-c++src
File size: 9815 byte(s)
ソースファイルの著作権表記の "最後の発行の年" を削除

ticket #40996
1 zmatsuo 8771 /*
2 nmaya 9048 * (C) 2020- TeraTerm Project
3 zmatsuo 8771 * All rights reserved.
4     *
5     * Redistribution and use in source and binary forms, with or without
6     * modification, are permitted provided that the following conditions
7     * are met:
8     *
9     * 1. Redistributions of source code must retain the above copyright
10     * notice, this list of conditions and the following disclaimer.
11     * 2. Redistributions in binary form must reproduce the above copyright
12     * notice, this list of conditions and the following disclaimer in the
13     * documentation and/or other materials provided with the distribution.
14     * 3. The name of the author may not be used to endorse or promote products
15     * derived from this software without specific prior written permission.
16     *
17     * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
18     * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19     * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20     * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21     * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22     * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23     * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24     * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25     * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26     * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27     */
28    
29     /* font property page */
30    
31     #include <stdio.h>
32     #define _CRTDBG_MAP_ALLOC
33     #include <stdlib.h>
34     #include <crtdbg.h>
35     #include <assert.h>
36    
37     #include "tttypes.h"
38     #include "font_pp_res.h"
39     #include "dlglib.h"
40     #include "setting.h"
41     #include "layer_for_unicode.h"
42     #include "vtdisp.h" // for DispSetupFontDlg()
43     #include "buffer.h"
44     #include "compat_win.h" // for CF_INACTIVEFONTS
45    
46     #include "font_pp.h"
47    
48     // �e���v���[�g�������������s��
49     #define REWRITE_TEMPLATE
50    
51     struct FontPPData {
52     HINSTANCE hInst;
53     const char *UILanguageFile;
54     TTTSet *pts;
55     DLGTEMPLATE *dlg_templ;
56     // LOGFONTA VTFont;
57     LOGFONTA DlgFont;
58     };
59    
60     static void GetDlgLogFont(HWND hWnd, const TTTSet *ts, LOGFONTA *logfont)
61     {
62     memset(logfont, 0, sizeof(*logfont));
63     logfont->lfHeight = -GetFontPixelFromPoint(hWnd, ts->DialogFontPoint);
64     strncpy_s(logfont->lfFaceName, sizeof(logfont->lfFaceName),ts->DialogFontName, _TRUNCATE);
65     logfont->lfCharSet = ts->DialogFontCharSet;
66     }
67    
68     static void SetDlgLogFont(HWND hWnd, const LOGFONTA *logfont, TTTSet *ts)
69     {
70     strncpy_s(ts->DialogFontName, sizeof(ts->DialogFontName), logfont->lfFaceName, _TRUNCATE);
71     ts->DialogFontPoint = GetFontPointFromPixel(hWnd, -logfont->lfHeight);
72     ts->DialogFontCharSet = logfont->lfCharSet;
73     }
74    
75     static UINT_PTR CALLBACK TFontHook(HWND Dialog, UINT Message, WPARAM wParam, LPARAM lParam)
76     {
77     if (Message == WM_INITDIALOG) {
78     FontPPData *dlg_data = (FontPPData *)(((CHOOSEFONTA *)lParam)->lCustData);
79     wchar_t uimsg[MAX_UIMSG];
80     get_lang_msgW("DLG_CHOOSEFONT_STC6", uimsg, _countof(uimsg),
81     L"\"Font style\" selection here won't affect actual font appearance.", dlg_data->UILanguageFile);
82     _SetDlgItemTextW(Dialog, stc6, uimsg);
83    
84     SetFocus(GetDlgItem(Dialog,cmb1));
85    
86     CenterWindow(Dialog, GetParent(Dialog));
87     }
88     return FALSE;
89     }
90    
91 zmatsuo 8832 static BOOL ChooseDlgFont(HWND hWnd, FontPPData *dlg_data)
92 zmatsuo 8771 {
93     const TTTSet *ts = dlg_data->pts;
94    
95     // �_�C�A���O�\��
96     CHOOSEFONTA cf = {};
97     cf.lStructSize = sizeof(cf);
98     cf.hwndOwner = hWnd;
99     cf.lpLogFont = &dlg_data->DlgFont;
100     cf.Flags =
101     CF_SCREENFONTS | CF_INITTOLOGFONTSTRUCT |
102     CF_SHOWHELP | CF_NOVERTFONTS |
103     CF_ENABLEHOOK;
104     if (IsWindows7OrLater() && ts->ListHiddenFonts) {
105     cf.Flags |= CF_INACTIVEFONTS;
106     }
107     cf.lpfnHook = &TFontHook;
108     cf.nFontType = REGULAR_FONTTYPE;
109     cf.hInstance = dlg_data->hInst;
110     cf.lCustData = (LPARAM)dlg_data;
111     BOOL result = ChooseFontA(&cf);
112 zmatsuo 8832 return result;
113 zmatsuo 8771 }
114    
115     static void EnableCodePage(HWND hWnd, BOOL enable)
116     {
117     EnableWindow(GetDlgItem(hWnd, IDC_VTFONT_PAGECODE_LABEL), enable);
118     EnableWindow(GetDlgItem(hWnd, IDC_VTFONT_PAGECODE_EDIT), enable);
119     }
120    
121     static void SetFontString(HWND hWnd, int item, const LOGFONTA *logfont)
122     {
123     // https://docs.microsoft.com/en-us/windows/win32/api/dimm/ns-dimm-logfonta
124     // http://www.coara.or.jp/~tkuri/D/015.htm#D2002-09-14
125     char b[128];
126     sprintf_s(b, "%s (%d,%d) %d", logfont->lfFaceName, logfont->lfWidth, logfont->lfHeight, logfont->lfCharSet);
127     SetDlgItemTextA(hWnd, item, b);
128     }
129    
130     static void SetVTFontString(HWND hWnd, int item, const TTTSet *ts)
131     {
132     LOGFONTA logfont = {};
133     logfont.lfWidth = ts->VTFontSize.x;
134     logfont.lfHeight = ts->VTFontSize.y;
135     strncpy_s(logfont.lfFaceName, sizeof(logfont.lfFaceName),ts->VTFont, _TRUNCATE);
136     logfont.lfCharSet = ts->VTFontCharSet;
137     SetFontString(hWnd, item, &logfont);
138     }
139    
140     static INT_PTR CALLBACK Proc(HWND hWnd, UINT msg, WPARAM wp, LPARAM lp)
141     {
142     static const DlgTextInfo TextInfos[] = {
143     {0, "DLG_GEN_TITLE"},
144     };
145     FontPPData *dlg_data = (FontPPData *)GetWindowLongPtr(hWnd, DWLP_USER);
146     TTTSet *ts = dlg_data == NULL ? NULL : dlg_data->pts;
147    
148     switch (msg) {
149     case WM_INITDIALOG: {
150     dlg_data = (FontPPData *)(((PROPSHEETPAGEW_V1 *)lp)->lParam);
151     ts = dlg_data->pts;
152     SetWindowLongPtr(hWnd, DWLP_USER, (LONG_PTR)dlg_data);
153     SetDlgTexts(hWnd, TextInfos, _countof(TextInfos), dlg_data->pts->UILanguageFile);
154    
155     GetDlgLogFont(GetParent(hWnd), ts, &dlg_data->DlgFont);
156    
157     SetVTFontString(hWnd, IDC_VTFONT_EDIT, ts);
158    
159     CheckDlgButton(hWnd,
160     UnicodeDebugParam.UseUnicodeApi ? IDC_VTFONT_UNICODE : IDC_VTFONT_ANSI,
161     BST_CHECKED);
162     SetDlgItemInt(hWnd, IDC_VTFONT_PAGECODE_EDIT, UnicodeDebugParam.CodePageForANSIDraw, FALSE);
163     EnableCodePage(hWnd, UnicodeDebugParam.UseUnicodeApi ? FALSE : TRUE);
164    
165     CheckDlgButton(hWnd, IDC_LIST_HIDDEN_FONTS, ts->ListHiddenFonts);
166     EnableWindow(GetDlgItem(hWnd, IDC_LIST_HIDDEN_FONTS), IsWindows7OrLater() ? TRUE : FALSE);
167    
168     SetDlgItemInt(hWnd, IDC_SPACE_RIGHT, ts->FontDW, FALSE);
169     SetDlgItemInt(hWnd, IDC_SPACE_LEFT, ts->FontDH, FALSE);
170     SetDlgItemInt(hWnd, IDC_SPACE_TOP, ts->FontDX, FALSE);
171     SetDlgItemInt(hWnd, IDC_SPACE_BOTTOM, ts->FontDY, FALSE);
172    
173     const static I18nTextInfo visual_font_quality[] = {
174     { "DLG_TAB_VISUAL_FONT_QUALITY_DEFAULT", L"Default" },
175     { "DLG_TAB_VISUAL_FONT_QUALITY_NONANTIALIASED", L"Non-Antialiased" },
176     { "DLG_TAB_VISUAL_FONT_QUALITY_ANTIALIASED", L"Antialiased" },
177     { "DLG_TAB_VISUAL_FONT_QUALITY_CLEARTYPE", L"ClearType" },
178     };
179     SetI18nList("Tera Term", hWnd, IDC_FONT_QUALITY, visual_font_quality, _countof(visual_font_quality),
180     ts->UILanguageFile, 0);
181     int cur =
182     ts->FontQuality == DEFAULT_QUALITY ? 0 :
183     ts->FontQuality == NONANTIALIASED_QUALITY ? 1 :
184     ts->FontQuality == ANTIALIASED_QUALITY ? 2 :
185     /*ts->FontQuality == CLEARTYPE_QUALITY ? */ 3;
186     SendDlgItemMessage(hWnd, IDC_FONT_QUALITY, CB_SETCURSEL, cur, 0);
187    
188     SetFontString(hWnd, IDC_DLGFONT_EDIT, &dlg_data->DlgFont);
189 zmatsuo 8832
190     break;
191 zmatsuo 8771 }
192     case WM_NOTIFY: {
193     NMHDR *nmhdr = (NMHDR *)lp;
194     switch (nmhdr->code) {
195     case PSN_APPLY: {
196     UnicodeDebugParam.UseUnicodeApi =
197     IsDlgButtonChecked(hWnd, IDC_VTFONT_UNICODE) == BST_CHECKED;
198     UnicodeDebugParam.CodePageForANSIDraw =
199     GetDlgItemInt(hWnd, IDC_VTFONT_PAGECODE_EDIT, NULL, FALSE);
200     // ANSI�\���p���R�[�h�y�[�W����������
201     BuffSetDispCodePage(UnicodeDebugParam.CodePageForANSIDraw);
202     ts->ListHiddenFonts = IsDlgButtonChecked(hWnd, IDC_LIST_HIDDEN_FONTS) == BST_CHECKED;
203    
204     SetDlgLogFont(GetParent(hWnd), &dlg_data->DlgFont, ts);
205    
206     break;
207     }
208     case PSN_HELP:
209     MessageBox(hWnd, "Tera Term", "not implimented",
210     MB_OK | MB_ICONEXCLAMATION);
211     break;
212     default:
213     break;
214     }
215     break;
216     }
217     case WM_COMMAND: {
218     switch (wp) {
219     case IDC_VTFONT_ANSI | (BN_CLICKED << 16):
220     case IDC_VTFONT_UNICODE | (BN_CLICKED << 16): {
221     BOOL enable = (wp & 0xffff) == IDC_VTFONT_ANSI ? TRUE : FALSE;
222     EnableCodePage(hWnd, enable);
223     break;
224     }
225     case IDC_VTFONT_CHOOSE | (BN_CLICKED << 16): {
226     DispSetupFontDlg();
227     SetDlgItemInt(hWnd, IDC_VTFONT_PAGECODE_EDIT, UnicodeDebugParam.CodePageForANSIDraw, FALSE);
228     SetVTFontString(hWnd, IDC_VTFONT_EDIT, ts);
229     break;
230     }
231     case IDC_DLGFONT_CHOOSE | (BN_CLICKED << 16):
232 zmatsuo 8832 if (ChooseDlgFont(hWnd, dlg_data) != FALSE) {
233     SetFontString(hWnd, IDC_DLGFONT_EDIT, &dlg_data->DlgFont);
234     }
235 zmatsuo 8771 break;
236    
237     case IDC_DLGFONT_DEFAULT | (BN_CLICKED << 16): {
238     GetMessageboxFont(&dlg_data->DlgFont);
239     SetFontString(hWnd, IDC_DLGFONT_EDIT, &dlg_data->DlgFont);
240     }
241    
242     default:
243     break;
244     }
245     break;
246     }
247     case WM_DESTROY: {
248     free(dlg_data->dlg_templ);
249     free(dlg_data);
250     SetWindowLongPtr(hWnd, DWLP_USER, NULL);
251     break;
252     }
253     default:
254     return FALSE;
255     }
256     return FALSE;
257     }
258    
259     HPROPSHEETPAGE FontPageCreate(HINSTANCE inst, TTTSet *pts)
260     {
261     // �� common/tt_res.h �� font_pp_res.h ���l�����v����������
262     const int id = IDD_TABSHEET_FONT;
263    
264     FontPPData *Param = (FontPPData *)calloc(sizeof(FontPPData), 1);
265     Param->hInst = inst;
266     Param->UILanguageFile = pts->UILanguageFile;
267     Param->pts = pts;
268    
269     PROPSHEETPAGEW_V1 psp = {};
270     psp.dwSize = sizeof(psp);
271     psp.dwFlags = PSP_DEFAULT;
272     psp.hInstance = inst;
273     psp.pszTemplate = MAKEINTRESOURCEW(id);
274     #if defined(REWRITE_TEMPLATE)
275     psp.dwFlags |= PSP_DLGINDIRECT;
276     Param->dlg_templ = TTGetDlgTemplate(inst, MAKEINTRESOURCEA(id));
277     psp.pResource = Param->dlg_templ;
278     #endif
279     psp.pszTitle = L"font";
280     psp.dwFlags |= (PSP_USETITLE /*| PSP_HASHELP */);
281    
282     psp.pfnDlgProc = Proc;
283     psp.lParam = (LPARAM)Param;
284    
285     HPROPSHEETPAGE hpsp = _CreatePropertySheetPageW(&psp);
286     return hpsp;
287     }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26