## line\_number\_t ### 概述 ![image](images/line_number_t_0.png) 行号。多行编辑器的行号。 line\_number\_t是[widget\_t](widget_t.md)的子类控件,widget\_t的函数均适用于line\_number\_t控件。 在xml中使用"lin\e_number"标签创建行号控件,一般配合mledit使用。如: ```xml ``` > 更多用法请参考:[mledit.xml]( https://github.com/zlgopen/awtk/blob/master/design/default/ui/mledit.xml) 可用通过style来设置控件的显示风格,如字体的大小和颜色等等。如: ```xml ``` > 更多用法请参考: [theme default]( https://github.com/zlgopen/awtk/blob/master/design/default/styles/default.xml#L556) ---------------------------------- ### 函数

| 函数名称 | 说明 | | -------- | ------------ | | line\_number\_add\_highlight\_line | 增加高亮行。 | | line\_number\_cast | 转换为line_number对象(供脚本语言使用)。 | | line\_number\_clear\_highlight | 清除高亮行。 | | line\_number\_create | 创建line_number对象 | | line\_number\_get\_widget\_vtable | 获取 line_number 虚表。 | | line\_number\_is\_highlight\_line | 判断指定行是否是高亮行。 | | line\_number\_set\_active\_line | 设置active行。 | | line\_number\_set\_bottom\_margin | 设置顶部边距。 | | line\_number\_set\_line\_height | 设置行高。 | | line\_number\_set\_lines\_of\_each\_row | 设置每一个逻辑行(row)占几个物理行(line)。 | | line\_number\_set\_top\_margin | 设置顶部边距。 | | line\_number\_set\_yoffset | 设置y偏移。 | #### line\_number\_add\_highlight\_line 函数 ----------------------- * 函数功能: >

增加高亮行。 * 函数原型: ``` ret_t line_number_add_highlight_line (widget_t* widget, int32_t line); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | 控件对象。 | | line | int32\_t | 行号。 | #### line\_number\_cast 函数 ----------------------- * 函数功能: >

转换为line_number对象(供脚本语言使用)。 * 函数原型: ``` widget_t* line_number_cast (widget_t* widget); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | widget\_t* | line\_number对象。 | | widget | widget\_t* | line\_number对象。 | #### line\_number\_clear\_highlight 函数 ----------------------- * 函数功能: >

清除高亮行。 * 函数原型: ``` ret_t line_number_clear_highlight (widget_t* widget); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | 控件对象。 | #### line\_number\_create 函数 ----------------------- * 函数功能: >

创建line_number对象 * 函数原型: ``` widget_t* line_number_create (widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | widget\_t* | 对象。 | | parent | widget\_t* | 父控件 | | x | xy\_t | x坐标 | | y | xy\_t | y坐标 | | w | wh\_t | 宽度 | | h | wh\_t | 高度 | #### line\_number\_get\_widget\_vtable 函数 ----------------------- * 函数功能: >

获取 line_number 虚表。 * 函数原型: ``` const widget_vtable_t* line_number_get_widget_vtable (); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | const widget\_vtable\_t* | 成功返回 line\_number 虚表。 | #### line\_number\_is\_highlight\_line 函数 ----------------------- * 函数功能: >

判断指定行是否是高亮行。 * 函数原型: ``` bool_t line_number_is_highlight_line (widget_t* widget, int32_t line); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | bool\_t | 返回TRUE表示是,否则不是。 | | widget | widget\_t* | 控件对象。 | | line | int32\_t | 行号。 | #### line\_number\_set\_active\_line 函数 ----------------------- * 函数功能: >

设置active行。 * 函数原型: ``` ret_t line_number_set_active_line (widget_t* widget, int32_t line); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | 控件对象。 | | line | int32\_t | 行号。 | #### line\_number\_set\_bottom\_margin 函数 ----------------------- * 函数功能: >

设置顶部边距。 * 函数原型: ``` ret_t line_number_set_bottom_margin (widget_t* widget, int32_t bottom_margin); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | 控件对象。 | | bottom\_margin | int32\_t | 顶部边距。 | #### line\_number\_set\_line\_height 函数 ----------------------- * 函数功能: >

设置行高。 * 函数原型: ``` ret_t line_number_set_line_height (widget_t* widget, int32_t line_height); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | 控件对象。 | | line\_height | int32\_t | 行高。 | #### line\_number\_set\_lines\_of\_each\_row 函数 ----------------------- * 函数功能: >

设置每一个逻辑行(row)占几个物理行(line)。 * 函数原型: ``` ret_t line_number_set_lines_of_each_row (widget_t* widget, const uint32_t* lines_of_each_row, uint32_t len); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | 控件对象。 | | lines\_of\_each\_row | const uint32\_t* | 每一个逻辑行占几个物理行。 | | len | uint32\_t | 数组大小(逻辑行数)。 | #### line\_number\_set\_top\_margin 函数 ----------------------- * 函数功能: >

设置顶部边距。 * 函数原型: ``` ret_t line_number_set_top_margin (widget_t* widget, int32_t top_margin); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | 控件对象。 | | top\_margin | int32\_t | 顶部边距。 | #### line\_number\_set\_yoffset 函数 ----------------------- * 函数功能: >

设置y偏移。 * 函数原型: ``` ret_t line_number_set_yoffset (widget_t* widget, int32_t yoffset); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | widget | widget\_t* | 控件对象。 | | yoffset | int32\_t | 行高。 |