Kanzi  3.9.5
Java API
ClickManipulatorMetadata Interface Reference

Metadata definitions for ClickManipulator. More...

Inheritance diagram for ClickManipulatorMetadata:
[legend]

Classes

class  ClickBeginMessageArguments
 Metadata definitions for ClickBeginMessageArguments. More...
 
class  ClickCancelMessageArguments
 Metadata definitions for ClickCancelMessageArguments. More...
 
class  ClickEnterMessageArguments
 Metadata definitions for ClickEnterMessageArguments. More...
 
class  ClickLeaveMessageArguments
 Metadata definitions for ClickLeaveMessageArguments. More...
 
class  ClickMessageArguments
 Metadata definitions for ClickMessageArguments. More...
 

Public Attributes

DynamicMessageType< ClickManipulatorMetadata.ClickBeginMessageArguments > ClickBeginMessage
 Occurs when the user presses a hit-testable node with a Click Manipulator. More...
 
DynamicMessageType< ClickManipulatorMetadata.ClickCancelMessageArguments > ClickCancelMessage
 Occurs when the user first presses a hit-testable node with a Click Manipulator, then moves the pointer outside of the node area, and lifts the pointer. More...
 
DynamicMessageType< ClickManipulatorMetadata.ClickEnterMessageArguments > ClickEnterMessage
 Occurs when the user presses a hit-testable node with a Click Manipulator and then every time the user moves the pointer on top of that node while still holding down the pointer. More...
 
DynamicMessageType< ClickManipulatorMetadata.ClickLeaveMessageArguments > ClickLeaveMessage
 Occurs when the user presses a hit-testable node with a Click Manipulator and then every time the user moves the pointer outside of that node. More...
 
DynamicMessageType< ClickManipulatorMetadata.ClickMessageArguments > ClickMessage
 Occurs when the user presses and releases a hit-testable node with a Click Manipulator, while the pointer is still within the node area and Kanzi does not recognize another gesture. More...
 
AbstractMetaclass metaclass = new AbstractMetaclass("Kanzi.ClickManipulator")
 Metaclass for ClickManipulator.
 
- Public Attributes inherited from InputManipulatorMetadata
AbstractMetaclass metaclass = new AbstractMetaclass("Kanzi.InputManipulator")
 Metaclass for InputManipulator.
 

Detailed Description

Metadata definitions for ClickManipulator.

Member Data Documentation

◆ ClickBeginMessage

DynamicMessageType<ClickManipulatorMetadata.ClickBeginMessageArguments> ClickBeginMessage
Initial value:
=
new DynamicMessageType<>(
"Message.ClickBegin", ClickManipulatorMetadata.ClickBeginMessageArguments.class)

Occurs when the user presses a hit-testable node with a Click Manipulator.

You cannot use this trigger with nodes that handle input by default, such as Button and Toggle Button nodes.

◆ ClickCancelMessage

DynamicMessageType<ClickManipulatorMetadata.ClickCancelMessageArguments> ClickCancelMessage
Initial value:
=
new DynamicMessageType<>(
"Message.ClickCancel", ClickManipulatorMetadata.ClickCancelMessageArguments.class)

Occurs when the user first presses a hit-testable node with a Click Manipulator, then moves the pointer outside of the node area, and lifts the pointer.

You cannot use this trigger with nodes that handle input by default, such as Button and Toggle Button nodes.

◆ ClickEnterMessage

DynamicMessageType<ClickManipulatorMetadata.ClickEnterMessageArguments> ClickEnterMessage
Initial value:
=
new DynamicMessageType<>(
"Message.ClickEnter", ClickManipulatorMetadata.ClickEnterMessageArguments.class)

Occurs when the user presses a hit-testable node with a Click Manipulator and then every time the user moves the pointer on top of that node while still holding down the pointer.

You cannot use this trigger with nodes that handle input by default, such as Button and Toggle Button nodes.

◆ ClickLeaveMessage

DynamicMessageType<ClickManipulatorMetadata.ClickLeaveMessageArguments> ClickLeaveMessage
Initial value:
=
new DynamicMessageType<>(
"Message.ClickLeave", ClickManipulatorMetadata.ClickLeaveMessageArguments.class)

Occurs when the user presses a hit-testable node with a Click Manipulator and then every time the user moves the pointer outside of that node.

You cannot use this trigger with nodes that handle input by default, such as Button and Toggle Button nodes.

◆ ClickMessage

DynamicMessageType<ClickManipulatorMetadata.ClickMessageArguments> ClickMessage
Initial value:
=
new DynamicMessageType<>(
"Message.Click", ClickManipulatorMetadata.ClickMessageArguments.class)

Occurs when the user presses and releases a hit-testable node with a Click Manipulator, while the pointer is still within the node area and Kanzi does not recognize another gesture.

You cannot use this trigger with nodes that handle input by default, such as Button and Toggle Button nodes.