MeVisLab Resolution Independence API
XVcallbacks.h
Go to the documentation of this file.
1/*************************************************************************************
2**
3** Copyright 2007, MeVis Medical Solutions AG
4**
5** The user may use this file in accordance with the license agreement provided with
6** the Software or, alternatively, in accordance with the terms contained in a
7** written agreement between the user and MeVis Medical Solutions AG.
8**
9** For further information use the contact form at https://www.mevislab.de/contact
10**
11**************************************************************************************/
12
13#ifndef XVCALLBACKS_H
14#define XVCALLBACKS_H
15
17
19typedef int InvBreakCheckCB();
20
22typedef void InvComponentCB(void *data,void *component);
23
26typedef int InvKeyPressedCB(void *data,void *component, void* message);
27
31typedef int InvHandleEventCB(void *data,void *component, void* message);
32
34typedef void InvGenerateMovieCB(void *data,void *component, const char* name, const char* extension, int count, float framerate, const char* targetFile);
35
36#endif
void InvComponentCB(void *data, void *component)
Callback used for Inventor SoWinComponents.
Definition XVcallbacks.h:22
void InvGenerateMovieCB(void *data, void *component, const char *name, const char *extension, int count, float framerate, const char *targetFile)
Callback used for movie generation.
Definition XVcallbacks.h:34
int InvKeyPressedCB(void *data, void *component, void *message)
Callback used for key pressed forwarding (return 1 if used, 0 else) (deprecated!)
Definition XVcallbacks.h:26
int InvBreakCheckCB()
Callbacks used by the host system, e.g. MeVisLab.
Definition XVcallbacks.h:19
int InvHandleEventCB(void *data, void *component, void *message)
Callback used for event handling of viewers (return 1 if handled, 0 else) this replaces the above Inv...
Definition XVcallbacks.h:31