-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsole.h
55 lines (40 loc) · 1.79 KB
/
Console.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
49
50
51
52
53
54
55
/** Console.h (2023.06.16) P. Stuer **/
#pragma once
class Console
{
public:
void Create(HWND hWnd, bool wordrap, bool darkMode) noexcept;
void Delete() noexcept
{
if (_hRichEdit)
{
::DestroyWindow(_hRichEdit);
_hRichEdit = 0;
}
}
void Show() const noexcept { ::ShowWindow(_hRichEdit, SW_SHOW); }
void Hide() const noexcept { ::ShowWindow(_hRichEdit, SW_HIDE); }
void Redraw() const noexcept { ::RedrawWindow(_hRichEdit, nullptr, 0, RDW_INVALIDATE | RDW_NOERASE); }
void Clear() const noexcept { ::SetWindowTextW(_hRichEdit, L""); }
void Write(LPCWSTR format, ...) const noexcept;
HWND Handle() const noexcept { return _hRichEdit; }
bool DarkMode() const noexcept { return _DarkMode; }
void SetDefaultTextColor(COLORREF color) noexcept;
void SetBold(bool enabled) noexcept;
void SetItalic(bool enabled) noexcept;
void SetFont(HFONT hFont) const noexcept;
void SetBullet(bool enabled) const noexcept;
void IncreaseIndent() const noexcept;
void DecreaseIndent() const noexcept;
void SetBackgroundColor(DWORD color) const noexcept { ::SendMessageW(_hRichEdit, EM_SETBKGNDCOLOR, 0, (LPARAM) color); }
void SetFormat() const noexcept { ::SendMessageW(_hRichEdit, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM) &_Format); }
void Select(int from, int to) const noexcept { ::SendMessageW(_hRichEdit, EM_SETSEL, (WPARAM) from, to); }
void ScrollToTop() const noexcept { ::SendMessageW(_hRichEdit, WM_VSCROLL, SB_TOP, 0L); }
private:
// 20 twips / printer's point; 72 printer's points / inch; 1440 twips / inch.
LONG InchToTwips(float inch) const { return (LONG)(1440.f * inch); }
private:
HWND _hRichEdit;
CHARFORMAT _Format = { sizeof(_Format) };
bool _DarkMode;
};