📄 uihw_mt.h
字号:
#ifndef _UIHANDWRITE_H
#define _UIHANDWRITE_H
#include "uikbd_hand.h"
/*
#define HWR_REGION_NUMBER 3//2
#define HWR_POINT_INTERVAL 3
#define HWR_CANDIDATE_BUFFER_SIZE 32
#define HWR_RAM_SIZE (4*1024)
#define MAX_STROKE_IN_CURSIVE 6
#define MAX_POINT_IN_ONE_STROKE 320 //200
#define MAX_POINT_IN_ONE_CHAR 320 //200
*/
extern const unsigned char HW_DATA[];
typedef struct tagHWR_Region
{
short left,top,right,bottom;
}THWR_Region;
typedef struct tagHWR_Point
{
unsigned char x;
unsigned char y;
}THWR_Point;
//external function
BOOL guiHWR_Handler(WORD msg, WORD x, WORD y);
STATUS guiHWR_Init(void);
STATUS guiHWR_Begin(HNDL hKB,THWR_Region *pHWR_Region);
STATUS guiHWR_End(void);
//internal function
STATUS _guiHWR_Timer_Start(void);
STATUS _guiHWR_Timer_Stop(void);
STATUS _guiHWR_Exit(void);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -