update docs

This commit is contained in:
lixianjing 2019-07-04 11:18:43 +08:00
parent 638b5ac66b
commit 03c4fc3bb4
16 changed files with 22 additions and 0 deletions

View File

@ -12,7 +12,12 @@ digraph G {
]
subgraph clusterFontManager{
children_layouter_factory -> children_layouter[constraint=false arrowhead=normal]
}
children_layouter_default -> children_layouter[style=dashed arrowhead=empty]
children_layouter_list_view -> children_layouter[style=dashed arrowhead=empty]
children_layouter_flex -> children_layouter[style=dashed arrowhead=empty]
children_layouter_xxx -> children_layouter[style=dashed arrowhead=empty]
}

View File

@ -13,6 +13,7 @@ digraph G {
self_layouter_default -> self_layouter[style=dashed arrowhead=empty]
self_layouter_menu -> self_layouter[style=dashed arrowhead=empty]
self_layouter_flex -> self_layouter[style=dashed arrowhead=empty]
self_layouter_xxx -> self_layouter[style=dashed arrowhead=empty]
}

View File

@ -71,4 +71,8 @@ digraph G {
list_item_t -> widget_t[arrowhead=empty]
scroll_bar_t -> widget_t[arrowhead=empty]
scroll_view_t -> widget_t[arrowhead=empty]
mledit_t -> widget_t[arrowhead=empty]
slide_indicator_t -> widget_t[arrowhead=empty]
overlay_t -> widget_t[arrowhead=empty]
line_number_t -> widget_t[arrowhead=empty]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 308 KiB

After

Width:  |  Height:  |  Size: 281 KiB

View File

@ -65,6 +65,7 @@
* [rich\_text](manual/rich_text_t.md) 图文混排控件。
* [slide\_menu](manual/slide_menu_t.md) 左右滑动菜单控件。
* [slide\_view](manual/slide_view_t.md) 滑动视图控件。
* [slide\_view\_indicator](manual/slide_indicator_t.md) 滑动视图的指示器控件。
* [svg\_image](manual/svg_image_t.md) SVG图片控件。
* [switch](manual/switch_t.md) 开关控件。
* [text\_selector](manual/text_selector_t.md) 文本选择器控件。
@ -75,6 +76,8 @@
* [list\_item](manual/list_item_t.md) 列表项控件。
* [scroll\_bar](manual/scroll_bar_t.md) 滚动条控件。
* [scroll\_view](manual/scroll_view_t.md) 滚动视图控件。
* [mledit](manual/mledit_t.md) 多行编辑器控件。
* [line_number](manual/line_number_t.md) 多行编辑器的行号控件。
* [mutable\_image](manual/mutable_image_t.md) mutable图片控件(用于辅助实现camera/video)。
### 画布
@ -181,10 +184,18 @@
* [children\_layouter](manual/children_layouter_t.md) 子控件排版布局器的接口
* [self\_layouter\_factory](manual/self_layouter_factory_t.md) 控件自身排版布局器的工厂。
* [children\_layouter\_factory](manual/children_layouter_factory_t.md) 子控件排版布局器的的工厂。
* [self\_layouter\_default](manual/self_layouter_default_t.md) 缺省的控件自身布局算法实现。
* [self\_layouter\_menu](manual/self_layouter_menu_t.md) 菜单控件自身布局算法实现。
* [children\_layouter\_default](manual/children_layouter_default_t.md) 缺省的子控件布局算法实现。
* [children\_layouter\_list\_view](manual/children_layouter_list_view_t.md) 列表视图的子控件布局算法实现。
### 杂项
* [system\_info](manual/system_info_t.md) 系统信息。
@ -206,5 +217,6 @@
* [event](manual/event_t.md) 事件基类。
* [tk\_thread](manual/tk_thread_t.md) 线程。
* [tk\_mutex](manual/tk_mutex_t.md) 互斥锁。
* [tk\_cond\_var](manual/tk_cond_var_t.md) 简化版条件变量。