--- nono/vm/keyboard.cpp 2026/04/29 17:05:30 1.1.1.13 +++ nono/vm/keyboard.cpp 2026/04/29 17:05:34 1.1.1.14 @@ -105,10 +105,30 @@ #include "uimessage.h" #include +// +// 文字入力しか持たないキーボードの下位クラス +// + // コンストラクタ -Keyboard::Keyboard() +DumbKeyboard::DumbKeyboard() : inherited(OBJ_KEYBOARD) { +} + +// デストラクタ +DumbKeyboard::~DumbKeyboard() +{ +} + + +// +// 通常のキーボード +// + +// コンストラクタ +Keyboard::Keyboard() + : inherited() +{ pressed.resize(KC_max); }