#include <hic_wrap.h>
The Select_Window class is a base class used to define and set a callback at the "select window" callback point during the HOOPS update cycle. To use this class, derive your own child class from it and implement the method select_window. For more information on how to define and set callbacks as a C++/C/Java Developer, please see the HOOPS/3dGS Programming Guide.
Select_Window::Select_Window |
( |
HC_KEY |
key, |
|
|
const char * |
name, |
|
|
void * |
data = 0 |
|
) |
| |
Constructs a Select_Window Callback object.
- Parameters
-
key | Key to the segment on which the callback is set. |
name | The name of the callback. |
data | Optional pointer to user data that can then be accessed from the callback. |
virtual Select_Window::~Select_Window |
( |
| ) |
|
|
virtual |
Deletes the callback object.
void* Select_Window::GetData |
( |
| ) |
|
|
protected |
Returns the pointer to the user data that may have been provided when the callback was created.
const char* Select_Window::GetName |
( |
| ) |
|
Returns the name of the callback.
virtual void Select_Window::select_window |
( |
HIC_Rendition const * |
nr, |
|
|
HIC_Geometry * |
wi |
|
) |
| |
|
inlinevirtual |
The function you implement for your callback.
- Parameters
-
nr | A pointer to a const HIC_Rendition |
wi | A pointer to a const HIC_Geometry |
The documentation for this class was generated from the following file: