git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@233 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-08 18:42:01 +00:00
parent 9d2b51402d
commit 662f5796c5
5 changed files with 60 additions and 8 deletions

View File

@@ -36,6 +36,10 @@ typedef void* MwLLPixmap;
#define MwLLDispatch(x, y, z) \
if(x->handler != NULL && x->handler->y != NULL) x->handler->y(x, z)
enum MwLLKey {
MwLLKeyBackSpace = (1 << 31) | 1
};
struct _MwLLHandler {
void (*draw)(MwLL handle, void* data);
void (*up)(MwLL handle, void* data);

View File

@@ -2,7 +2,7 @@
/*!
* %file Mw/Widget/Text.h
* %brief Text widget
* %prop MwNchecked
* %prop MwNtext
*/
#ifndef __MW_WIDGET_TEXT_H__
#define __MW_WIDGET_TEXT_H__