Go to the source code of this file.
◆ LrgCellWndProc()
Definition at line 68 of file lrgcell.c.
72{
75 static INT cxClient, cyClient;
78
81
83 {
84 goto HandleDefaultMessage;
85 }
86
87 switch (uMsg)
88 {
90 {
92
96
98
99 break;
100 }
101
103 {
106
111
112 break;
113 }
114
116 {
120
122 &ps);
123
125 0,
126 0,
127 cxClient,
128 cyClient);
129
131
134 1,
135 &rc,
137
139
141 &ps);
142
144 break;
145 }
146
148 {
150
151 break;
152 }
153
154 default:
155 {
156HandleDefaultMessage:
158 uMsg,
161 break;
162 }
163 }
164
165 return Ret;
166}
static HFONT SetLrgFont(PMAP infoPtr)
static DWORD *static HFONT(WINAPI *pCreateFontIndirectExA)(const ENUMLOGFONTEXDVA *)
INT WINAPI DrawTextW(HDC hdc, LPCWSTR str, INT count, LPRECT rect, UINT flags)
void UpdateStatusBar(void)
HGDIOBJ WINAPI SelectObject(_In_ HDC, _In_ HGDIOBJ)
BOOL WINAPI Rectangle(_In_ HDC, _In_ int, _In_ int, _In_ int, _In_ int)
#define GetWindowLongPtrW
LRESULT WINAPI DefWindowProcW(_In_ HWND, _In_ UINT, _In_ WPARAM, _In_ LPARAM)
BOOL WINAPI EndPaint(_In_ HWND, _In_ const PAINTSTRUCT *)
HDC WINAPI BeginPaint(_In_ HWND, _Out_ LPPAINTSTRUCT)
#define SetWindowLongPtrW
Referenced by RegisterMapClasses().
◆ SetLrgFont()
Definition at line 14 of file lrgcell.c.
15{
22
25
27
29 {
31 0,
33
34 if (lpFontName)
35 {
40
42 sizeof(lf));
43
49
52 lpFontName,
54
56
58 0,
59 lpFontName);
60 }
61 }
62
64}
#define HeapFree(x, y, z)
_CRTIMP wchar_t *__cdecl wcsncpy(wchar_t *_Dest, const wchar_t *_Source, size_t _Count)
WCHAR lfFaceName[LF_FACESIZE]
int WINAPI GetDeviceCaps(_In_opt_ HDC, _In_ int)
HFONT WINAPI CreateFontIndirectW(_In_ const LOGFONTW *)
int WINAPI ReleaseDC(_In_opt_ HWND, _In_ HDC)
HWND WINAPI GetDlgItem(_In_opt_ HWND, _In_ int)
HDC WINAPI GetDC(_In_opt_ HWND)
int WINAPI GetWindowTextLengthW(_In_ HWND)
LRESULT WINAPI SendMessageW(_In_ HWND, _In_ UINT, _In_ WPARAM, _In_ LPARAM)
Referenced by LrgCellWndProc().