查看源码 wxAcceleratorEntry (wx v2.4.3)

一个被希望创建加速键表(参见wxAcceleratorTable)的应用程序使用的对象。

参见

wxWidgets 文档: wxAcceleratorEntry

摘要

函数

销毁对象

返回加速键表条目的命令标识符。

返回加速键表条目的标志。

返回加速键表条目的键码。

等同于new([])

复制构造函数。

设置加速键条目参数。

类型

链接到此类型

wxAcceleratorEntry()

查看源码
-type wxAcceleratorEntry() :: wx:wx_object().

函数

-spec destroy(This :: wxAcceleratorEntry()) -> ok.

销毁对象

-spec getCommand(This) -> integer() when This :: wxAcceleratorEntry().

返回加速键表条目的命令标识符。

-spec getFlags(This) -> integer() when This :: wxAcceleratorEntry().

返回加速键表条目的标志。

-spec getKeyCode(This) -> integer() when This :: wxAcceleratorEntry().

返回加速键表条目的键码。

-spec new() -> wxAcceleratorEntry().

等同于new([])

-spec new([Option]) -> wxAcceleratorEntry()
             when
                 Option ::
                     {flags, integer()} |
                     {keyCode, integer()} |
                     {cmd, integer()} |
                     {item, wxMenuItem:wxMenuItem()};
         (Entry) -> wxAcceleratorEntry() when Entry :: wxAcceleratorEntry().

复制构造函数。

链接到此函数

set(This, Flags, KeyCode, Cmd)

查看源码
-spec set(This, Flags, KeyCode, Cmd) -> ok
             when
                 This :: wxAcceleratorEntry(),
                 Flags :: integer(),
                 KeyCode :: integer(),
                 Cmd :: integer().

等同于set(This, Flags, KeyCode, Cmd, [])

-spec set(This, Flags, KeyCode, Cmd, [Option]) -> ok
             when
                 This :: wxAcceleratorEntry(),
                 Flags :: integer(),
                 KeyCode :: integer(),
                 Cmd :: integer(),
                 Option :: {item, wxMenuItem:wxMenuItem()}.

设置加速键条目参数。