Balloon callback structure
typedef struct Pt_balloon_callback {
PtWidget_t *widget;
void (*event_f)( PtWidget_t *wgt,
void *data,
PtCallbackInfo_t *cbinfo);
} PtBalloonCallback_t;
The PtBalloonCallback_t structure lets you attach a balloon callback to a widget's container. The container invokes the specified function whenever a balloon action is warranted. This structure contains at least:
Photon