--- nono/wx/wxmainview.h 2026/04/29 17:05:27 1.1.1.14 +++ nono/wx/wxmainview.h 2026/04/29 17:05:53 1.1.1.17 @@ -14,15 +14,16 @@ wxDECLARE_EVENT(NONO_EVT_MOUSEMODE, wxCommandEvent); +class DumbKeyboard; class Keyboard; -class Renderer; +class VideoRenderer; class WXMainView : public wxPanel { using inherited = wxPanel; public: explicit WXMainView(wxWindow *); - virtual ~WXMainView() override; + ~WXMainView() override; bool Init(); @@ -83,8 +84,9 @@ class WXMainView : public wxPanel // マウスカーソルを移動させる void MyWarpPointer(wxSize pos); - Keyboard *keyboard {}; - Renderer *renderer {}; + DumbKeyboard *dumbkbd {}; + Keyboard *richkbd {}; + VideoRenderer *renderer {}; wxDECLARE_EVENT_TABLE(); };