#include <ivfui/IvfWindow.h>
Inheritance diagram for CIvfWindow:
Public Member Functions | |
CIvfWindow (int X, int Y, int W, int H) | |
IvfClassInfo ("CIvfWindow", CIvfFltkBase) | |
void | setWindowTitle (const char *title) |
void | show () |
virtual void | doMouseDown (int x, int y) |
virtual void | doMouseUp (int x, int y) |
This class implements a generic Ivf++ window with standard event methods based on CIvfWidget. The CIvfWindow class should not be used directly. A user defined window class should be derived and the neccesary event methods overridden.
ac3dreader.cpp, actionctl.cpp, advgeom.cpp, controllers.cpp, culling.cpp, extrusion.cpp, handlers.cpp, lighting.cpp, lod.cpp, manip.cpp, placement.cpp, robot.cpp, selection.cpp, and textures.cpp.
Definition at line 44 of file IvfWindow.h.
|
CIvfWindow constructor Window will not be visible until the show() method is called.
|
|
MouseDown event handling (called from widget) Derived widget should call this method when any of the mouse buttons is pressed. Reimplemented from CIvfWidgetBase. |
|
MouseUp event handling (called from widget) Derived widget should call this method when any of the mouse buttons is released. Reimplemented from CIvfWidgetBase. |
|
Sets window title |
|
Shows window on screen |