-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTTFont2BitmapDlg.h
48 lines (38 loc) · 1.05 KB
/
TTFont2BitmapDlg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// TTFont2BitmapDlg.h : fichier d'en-tête
//
#pragma once
#include "CBitmapFont.h"
#include <vector>
// boîte de dialogue de CTTFont2BitmapDlg
class CTTFont2BitmapDlg : public CDialogEx
{
// Construction
public:
CTTFont2BitmapDlg(CWnd* pParent = nullptr); // constructeur standard
~CTTFont2BitmapDlg();
// Données de boîte de dialogue
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_TTFONT2BITMAP_DIALOG };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // Prise en charge de DDX/DDV
// Implémentation
protected:
HICON m_hIcon;
LOGFONT m_lgFont;
cBitmapFont m_BitmapFont;
HANDLE m_hFontFile;
BYTE* m_pFontBuffer;
// Fonctions générées de la table des messages
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedLoadSystemFont();
afx_msg void OnEnChangeSampleText();
afx_msg void OnBnClickedLoadFileFont();
afx_msg void OnBnClickedExportC();
afx_msg void OnBnClickedExportBin();
};