|
|
1.1 root 1: //
2: // nono
3: // Copyright (C) 2020 nono project
4: // Licensed under nono-license.txt
5: //
6:
7: #pragma once
8:
9: #include "header.h"
10: #include "object.h"
11: #include "wxheader.h"
12:
13: // 独自のイベントタイプ
14: wxDECLARE_EVENT(WXW_EVT_HALT_NOTIFY, wxCommandEvent);
15:
16: // フォント種別というかフォントサイズ。
17: // 配列のインデックスとして使うので有効な値を 0 から列挙する。
18: enum FontId {
19: None = -1,
20: _6x12 = 0,
21: _8x16,
22: Max,
23: };
24: #define FONT_6x12 wxSize(6, 12)
25: #define FONT_8x16 wxSize(8, 16)
26:
27: class WXMainFrame;
28: class WXMainView;
29: class WXTextScreen;
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.