Updated on 2024-12-27 GMT+08:00

Click Injection Notification

Notification Description

A notification is sent when a user clicks a button configured with click injection.

Method Definition

1
virtual void OnClickInjectBtn(HwmClickInjectBtn injectBtn, void* data, const char* id) {};

Precautions

None

Parameter Description

Table 1 Parameter description

Parameter

Type

Description

injectBtn

HwmClickInjectBtn

Button type.

data

void*

Button parameter, which may be empty.

  • If the button type is HWM_CLICK_INJECT_BTN_CALL_OTHER_NUM, the value of this parameter is the information about the participant to be called.
  • If the button type is HWM_CLICK_INJECT_BTN_INVITE, this parameter is left blank.
  • If the button type is HWM_CLICK_INJECT_BTN_CALL_ALL, the value of this parameter is HwmCallAllInfo, indicating the information about all absent participants to be called.

id

const char*

ID of a customized button.

  • When the button type is HWM_TOOLS_INJECT_BTN_CUSTOM, the value of this parameter is the ID of the customized button.
  • When the button type is HWM_CLICK_INJECT_BTN_PARTICIPANT_DETAIL, the value of this parameter is that of HwmConfAttendee.
  • When the button type is set to other values, this parameter is left blank.
Table 2 Enumerated values of HwmClickInjectBtn

Enumerated Value

Description

HWM_CLICK_INJECT_BTN_INVITE

Invite button.

HWM_CLICK_INJECT_BTN_CALL_OTHER_NUM

Call other number button.

HWM_CLICK_INJECT_BTN_ATTENDEE

Participants button.

HWM_CLICK_INJECT_BTN_SHARE

Share button.

HWM_CLICK_INJECT_BTN_LEAVE

Leave button.

HWM_TOOLS_INJECT_BTN_CUSTOM

User-defined button.

HWM_CLICK_INJECT_BTN_COPY_CONF_INFO

Button for copying meeting information.

HWM_CLICK_INJECT_BTN_PARTICIPANT_DETAIL

Participant details button.

HWM_CLICK_INJECT_BTN_CALL_ALL

Call all button.

Table 3 HwmCallAllInfo description

Parameter

Type

Description

list

HwmConfAttendee*

List of participants to be called.

count

unsigned int

Number of participants to be called.

Table 4 HwmCustomBtnInjectInfo description

Parameter

Type

Description

posInfo

HwmBtnPosInfo

Button position information.

Table 5 HwmBtnPosInfo description

Parameter

Type

Description

left

int

Horizontal position from the left.

top

int

Vertical position from the top.

width

unsigned int

Width

height

unsigned int

Height.