Lua接口/客户端/ChatChannel/AddChannel:修订间差异
来自天龙知识库
跳到导航跳到搜索
新建客户端 Lua 接口页:全局函数、对象方法、窗口操作与客户端事件 |
新建客户端 Lua 接口页:全局函数、对象方法、窗口操作与客户端事件 |
||
| (未显示另一用户的1个中间版本) | |||
| 第1行: | 第1行: | ||
__NOTOC__ | __NOTOC__ | ||
<div class="lua-reference | <div class="lua-reference"> | ||
[[首页|首页]] · [[Lua接口/客户端函数索引|客户端接口]] · [[Lua接口/客户端窗口操作|窗口操作]] | [[首页|首页]] · [[Lua接口/客户端函数索引|客户端接口]] · [[Lua接口/客户端窗口操作|窗口操作]] | ||
<div | <div class="lua-lead"> | ||
<div role="heading" aria-level="2" | <div role="heading" aria-level="2" class="lua-h1">ChatChannel:AddChannel</div> | ||
<div | <div class="lua-sub">读取客户端本地数据 · 实现于 CEGUISystem/UILuaControl.cpp</div> | ||
</div> | </div> | ||
== 调用方式 == | == 调用方式 == | ||
<code | <code>ChatChannel:AddChannel(string, string, string)</code> | ||
控件方法由界面管理器创建的对象提供,没有固定的全局对象名:脚本里的 <code | 控件方法由界面管理器创建的对象提供,没有固定的全局对象名:脚本里的 <code>this</code> 就是当前窗口,<code>this</code> 或持有的控件变量可直接以冒号调用。所属控件类 <code>ChatChannel</code>。 | ||
界面脚本中共 4 处调用,实参个数出现过:3 个(4 处)。 | 界面脚本中共 4 处调用,实参个数出现过:3 个(4 处)。 | ||
== 参数 == | == 参数 == | ||
{| class="wikitable | {| class="wikitable" | ||
! scope="col" | ! scope="col" class="lua-w9" | 序号 | ||
! scope="col" | ! scope="col" class="lua-w25" | 类型 | ||
! scope="col | ! scope="col" | 说明 | ||
|- | |- | ||
| 1 | |||
| <code>string</code> | |||
| 调用点实参:<code>strPrvType</code>(3 处)、<code>strChannelType</code>(1 处) | |||
|- | |- | ||
| 2 | |||
| <code>string</code> | |||
| 调用点实参:<code>CHANNEL_DATA[strPrvType][1]</code>(3 处)、<code>CHANNEL_DATA[strChannelType][1]</code>(1 处) | |||
|- | |- | ||
| 3 | |||
| <code>string</code> | |||
| 调用点实参:<code>strChannelName</code>(1 处)、<code>strPrvName1</code>(1 处)、<code>strPrvName2</code>(1 处) | |||
|} | |} | ||
== 返回值 == | == 返回值 == | ||
无返回值(实现体 <code | 无返回值(实现体 <code>return 0</code>)。被赋给变量时得到 <code>nil</code>,与返回数字 0 不同。 | ||
== 实现体注释 == | == 实现体注释 == | ||
| 第42行: | 第41行: | ||
== 脚本中的调用 == | == 脚本中的调用 == | ||
以下是界面脚本里的真实调用点(同一形态只列一次): | 以下是界面脚本里的真实调用点(同一形态只列一次): | ||
<pre | <pre>-- ChatFrame/ChatFrame.lua | ||
ChatChannel:AddChannel(strChannelType, CHANNEL_DATA[strChannelType][1], strChannelName) | ChatChannel:AddChannel(strChannelType, CHANNEL_DATA[strChannelType][1], strChannelName) | ||
-- ChatFrame/ChatFrame.lua | -- ChatFrame/ChatFrame.lua | ||
| 第54行: | 第53行: | ||
* 读取或修改客户端本地数据 | * 读取或修改客户端本地数据 | ||
</div> | </div> | ||
2026年9月19日 (六) 17:07的最新版本
ChatChannel:AddChannel
读取客户端本地数据 · 实现于 CEGUISystem/UILuaControl.cpp
调用方式
ChatChannel:AddChannel(string, string, string)
控件方法由界面管理器创建的对象提供,没有固定的全局对象名:脚本里的 this 就是当前窗口,this 或持有的控件变量可直接以冒号调用。所属控件类 ChatChannel。
界面脚本中共 4 处调用,实参个数出现过:3 个(4 处)。
参数
| 序号 | 类型 | 说明 |
|---|---|---|
| 1 | string
|
调用点实参:strPrvType(3 处)、strChannelType(1 处)
|
| 2 | string
|
调用点实参:CHANNEL_DATA[strPrvType][1](3 处)、CHANNEL_DATA[strChannelType][1](1 处)
|
| 3 | string
|
调用点实参:strChannelName(1 处)、strPrvName1(1 处)、strPrvName2(1 处)
|
返回值
无返回值(实现体 return 0)。被赋给变量时得到 nil,与返回数字 0 不同。
实现体注释
以下注释取自实现体原文,仅收录可确认属原作者的部分:
- 代码转化
脚本中的调用
以下是界面脚本里的真实调用点(同一形态只列一次):
-- ChatFrame/ChatFrame.lua ChatChannel:AddChannel(strChannelType, CHANNEL_DATA[strChannelType][1], strChannelName) -- ChatFrame/ChatFrame.lua ChatChannel:AddChannel(strPrvType, CHANNEL_DATA[strPrvType][1], strPrvName1) -- ChatFrame/ChatFrame.lua ChatChannel:AddChannel(strPrvType, CHANNEL_DATA[strPrvType][1], strPrvName2) -- ChatFrame/ChatFrame.lua ChatChannel:AddChannel(strPrvType, CHANNEL_DATA[strPrvType][1], strPrvName3)
关联
- 读取或修改客户端本地数据