void SetTextValue(uint16 screen_id,uint16 control_id,uchar *str) { BEGIN_CMD(); TX_8(0xB1); TX_8(0x10); TX_16(screen_id); TX_16(control_id); SendStrings(str); END_CMD(); }
/**************************************************************************** * 名 称: DisText() * 功 能: 文本显示 * 入口参数: x 以点为单位的X轴坐标值 y 以点为单位的Y轴坐标值 back 背景色使能 font 字库编码 strings 写入的字符串 * 出口参数: 无 ****************************************************************************/ void DisText(uint16 x, uint16 y,uint8 back,uint8 font,uchar *strings ) { SendBeginCMD(); SendChar(0x20); SendChar((x>>8)&0xff); SendChar(x&0xff); SendChar((y>>8)&0xff); SendChar(y&0xff); SendChar(back); SendChar(font); SendStrings(strings); SendEndCmd(); }
void ClientConnection::_sendResult(Result result) { SendStrings(_socket, result); }
void BatchSetText(uint16 control_id,uchar *strings) { TX_16(control_id); TX_16(GetStringLen(strings)); SendStrings(strings); }