text_edit_t
概述
函数
函数名称 | 说明 |
text_edit_click | 处理点击事件。 |
text_edit_copy | 拷贝文本。 |
text_edit_create | 创建text_edit对象 |
text_edit_cut | 剪切文本。 |
text_edit_destroy | 销毁text_edit对象。 |
text_edit_drag | 处理拖动事件。 |
text_edit_get_cursor | 获取光标位置。 |
text_edit_get_height | 获取偏移字符位置高度。 |
text_edit_get_lines_of_each_row | 获取每一个逻辑行(row)占几个物理行(line)。 |
text_edit_get_selected_text | 获取选中文本。 |
text_edit_get_state | 获取编辑器的状态。 |
text_edit_insert_text | 插入一段文本。 |
text_edit_invert_caret_visible | 如果caret可见,将其设置为不可见。 如果caret不可见,将其设置为可见。 |
text_edit_key_down | 处理按键事件。 |
text_edit_key_up | 处理按键事件。 |
text_edit_layout | 重新排版。 |
text_edit_paint | 绘制文本。 |
text_edit_paste | 粘贴文本。 |
text_edit_preedit | 进入预编辑状态。 |
text_edit_preedit_abort | 取消预编辑的文本,并退出预编辑状态。 |
text_edit_preedit_clear | 清除预编辑文本。 |
text_edit_preedit_confirm | 提交预编辑的文本,并退出预编辑状态。 |
text_edit_select_all | 全选。 |
text_edit_set_canvas | 设置canvas对象。 |
text_edit_set_caret_visible | 设置光标的看见性。 |
text_edit_set_cursor | 设置光标位置。 |
text_edit_set_mask | 设置是否马赛克字符(用于密码)。 |
text_edit_set_mask_char | 设置马赛克字符。 |
text_edit_set_max_chars | 设置最大字符数(0 为不限制字符)。 |
text_edit_set_max_rows | 设置最大行数。 |
text_edit_set_offset | 设置滚动偏移。 |
text_edit_set_on_char_will_input | 设置字符输入回调函数。 |
text_edit_set_on_state_changed | 设置状态改变回调函数。 |
text_edit_set_on_text_will_delete | 设置文本删除回调函数。 |
text_edit_set_select | 选择指定范围的文本。 |
text_edit_set_tips | 设置提示信息。 |
text_edit_set_wrap_word | 设置是否自动折行。 |
text_edit_show_context_menu | 显示上下文菜单。 |
text_edit_unselect | 取消选择。 |
text_edit_click 函数
处理点击事件。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
x | xy_t | x坐标。 |
y | xy_t | y坐标。 |
text_edit_copy 函数
拷贝文本。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_create 函数
创建text_edit对象
参数 | 类型 | 说明 |
返回值 | text_edit_t* | 对象。 |
widget | widget_t* | 控件 |
single_line | bool_t | 是否是单行编辑器。 |
text_edit_cut 函数
剪切文本。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_destroy 函数
销毁text_edit对象。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_drag 函数
处理拖动事件。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
x | xy_t | x坐标。 |
y | xy_t | y坐标。 |
text_edit_get_cursor 函数
获取光标位置。
参数 | 类型 | 说明 |
返回值 | uint32_t | 返回光标的位置。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_get_height 函数
获取偏移字符位置高度。
参数 | 类型 | 说明 |
返回值 | uint32_t | 返回偏移位置字符位置高度。 |
text_edit | text_edit_t* | text_edit对象。 |
offset | uint32_t | 偏移位置。 |
text_edit_get_lines_of_each_row 函数
获取每一个逻辑行(row)占几个物理行(line)。
参数 | 类型 | 说明 |
返回值 | const uint32_t* | 返回每一个 row 占用多少个 line 数组。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_get_selected_text 函数
获取选中文本。
使用完后需调用 TKMEM_FREE() 进行释放文本占有内存。
参数 | 类型 | 说明 |
返回值 | char* | 返回选中文本。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_get_state 函数
获取编辑器的状态。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
state | text_edit_state_t* | 状态。 |
text_edit_insert_text 函数
插入一段文本。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
offset | uint32_t | 插入的偏移位置。 |
text | const char* | 待插入的文本。 |
text_edit_invert_caret_visible 函数
如果caret可见,将其设置为不可见。 如果caret不可见,将其设置为可见。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_key_down 函数
处理按键事件。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
evt | key_event_t* | event |
text_edit_key_up 函数
处理按键事件。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
evt | key_event_t* | event |
text_edit_layout 函数
重新排版。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_paint 函数
绘制文本。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
c | canvas_t* | canvas对象。 |
text_edit_paste 函数
粘贴文本。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
str | const wchar_t* | 文本。 |
size | uint32_t | 文本长度。 |
text_edit_preedit 函数
进入预编辑状态。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_preedit_abort 函数
取消预编辑的文本,并退出预编辑状态。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_preedit_clear 函数
清除预编辑文本。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_preedit_confirm 函数
提交预编辑的文本,并退出预编辑状态。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_select_all 函数
全选。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
text_edit_set_canvas 函数
设置canvas对象。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
c | canvas_t* | canvas对象。 |
text_edit_set_caret_visible 函数
设置光标的看见性。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
caret_visible | bool_t | 是否可见。 |
text_edit_set_cursor 函数
设置光标位置。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
cursor | uint32_t | 光标偏移。 |
text_edit_set_mask 函数
设置是否马赛克字符(用于密码)。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
mask | bool_t | 是否马赛克字符。 |
text_edit_set_mask_char 函数
设置马赛克字符。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
mask_char | wchar_t | 马赛克字符。 |
text_edit_set_max_chars 函数
设置最大字符数(0 为不限制字符)。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
max_chars | uint32_t | 最大行数。 |
text_edit_set_max_rows 函数
设置最大行数。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
max_rows | uint32_t | 最大行数。 |
text_edit_set_offset 函数
设置滚动偏移。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
ox | int32_t | x偏移量。 |
oy | int32_t | y偏移量。 |
text_edit_set_on_char_will_input 函数
设置字符输入回调函数。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
on_char_will_input | text_edit_on_char_will_input_t | 回调函数。 |
ctx | void* | 回调函数上下文。 |
text_edit_set_on_state_changed 函数
设置状态改变回调函数。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
on_state_changed | text_edit_on_state_changed_t | 回调函数。 |
ctx | void* | 回调函数上下文。 |
text_edit_set_on_text_will_delete 函数
设置文本删除回调函数。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
on_text_will_delete | text_edit_on_text_will_delete_t | 回调函数。 |
ctx | void* | 回调函数上下文。 |
text_edit_set_select 函数
选择指定范围的文本。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
start | uint32_t | 起始偏移。 |
end | uint32_t | 结束偏移。 |
text_edit_set_tips 函数
设置提示信息。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
tips | const char* | 提示信息。 |
mlines | bool_t | 提示信息是否多行显示。 |
text_edit_set_wrap_word 函数
设置是否自动折行。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
wrap_word | bool_t | 是否自动折行。 |
显示上下文菜单。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |
x | int32_t | x位置。 |
y | int32_t | y位置。 |
text_edit_unselect 函数
取消选择。
参数 | 类型 | 说明 |
返回值 | ret_t | 返回RET_OK表示成功,否则表示失败。 |
text_edit | text_edit_t* | text_edit对象。 |