awtk/docs/conventions.md
2018-10-21 12:30:03 +08:00

27 lines
757 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# AWTK 中的一些惯例
#### 1.pixel格式以各个通道在内存中存放的顺序从低地址到高地址递增的方式命名。
>如:
>
>RGBA8888表示内存地址从低到高依次为RGBA每个通道各占一字节(8位)。
>
>BGR565表示内存地址从低到高依次为BGRBGR三个通道分别占5位6位和5位。
---
#### 2.所有类的公开属性都是只读的,不要直接去修改它们。
---
#### 3.所有类的公开属性都可以直接读取不提供get函数。
---
#### 4.widget及其子类的公开属性如果在annotation中标明支持set\_prop那么可以在界面描述文件中用同名属性为其指定的初始值。
---
#### 5.除非特别说明,时间单位为毫秒。