方法
GioNotificationadd_button_with_target_value
自:2.40
声明 [src]
void
g_notification_add_button_with_target_value (
GNotification* notification,
const gchar* label,
const gchar* action,
GVariant* target
)
说明 [src]
向 notification 添加一个按钮,并在点击时激活 action。action 必须是一个全局应用程序动作(它必须以“app.”开头)。
如果 target 不为 NULL,则使用 target 作为参数激活 action。
自:2.40
此方法在语言绑定中已重命名为 g_notification_add_button_with_target()
。
参数
label
-
类型:
const gchar*
按钮的标签。
数据归方法调用者所有。 值是一个以 null 结尾的 UTF-8 字符串。 action
-
类型:
const gchar*
一个动作名称。
数据归方法调用者所有。 值是一个以 null 结尾的 UTF-8 字符串。 target
-
类型:
GVariant
使用作 action 参数的
GVariant
,或NULL
。参数可以为 NULL。 数据归方法调用者所有。