GLG Toolkit, C / C++ API Library  Version 4.6
Custom Interaction Handler

A custom interaction handler can be used to implement custom input objects with an application-specific functionality. More...

Detailed Description

A custom interaction handler can be used to implement custom input objects with an application-specific functionality.

See Interaction Handler Functions for more information.

Typedefs

typedef void(* GlgHandler) (GlgCallEvent *call_event)
 A function that implements a custom interaction handler. More...
 

Typedef Documentation

◆ GlgHandler

typedef void(* GlgHandler) (GlgCallEvent *call_event)

A function that implements a custom interaction handler.

Parameters
call_eventThe user interaction event to be handled, provides information about the event that triggered handler invocation.

This function is invoked to handle user interaction of the viewport the handler is attached to. The code of this function implements functionality of the handler.

See Interaction Handler Functions for more information.