GuiLite/workspace/widgets/edit.cpp

12 lines
195 B
C++
Raw Normal View History

#include "../widgets_include/edit.h"
2017-12-06 21:43:47 +08:00
2020-01-22 11:03:29 +08:00
#ifdef GUILITE_ON
c_keyboard c_edit::s_keyboard;
2017-12-06 21:43:47 +08:00
2018-12-02 22:39:43 +08:00
GL_BEGIN_MESSAGE_MAP(c_edit)
2019-12-17 10:45:15 +08:00
ON_KEYBORAD_UPDATE(c_edit::on_key_board_click)
2018-12-02 22:39:43 +08:00
GL_END_MESSAGE_MAP()
2017-12-06 21:43:47 +08:00
2020-01-22 11:03:29 +08:00
#endif