| 23 | ) |
| 24 | |
| 25 | type mpic struct { |
| 26 | path string // 看板娘图片路径 |
| 27 | w int // 看板娘图片宽度 |
| 28 | h int // 看板娘图片高度 |
| 29 | isDisplay bool // 显示看板娘 |
| 30 | isCustom bool // 自定义看板娘 |
| 31 | statusText string // 状态文本 |
| 32 | enableText bool // 启用状态 |
| 33 | isDouble bool // 双列排版 |
| 34 | pluginName string // 插件名 |
| 35 | font1 string // 字体1 |
| 36 | font2 string // 字体2 |
| 37 | info []string // 插件信息 |
| 38 | info2 []string // 插件信息2 |
| 39 | multiple float64 // 图片拓展倍数 |
| 40 | fontSize float64 // 字体大小 |
| 41 | im image.Image // 图片 |
| 42 | } |
| 43 | |
| 44 | type titleColor struct { |
| 45 | r, g, b int // 颜色 |
nothing calls this directly
no outgoing calls
no test coverage detected