SoWin
1.6.2
Coin3D GUI toolkit binding
|
The SoWinCursor class is used to set cursors for GUI components. More...
Classes | |
class | CustomCursor |
The SoWinCursor::CustomCursor class is used to specify bitmap data for SoWinCursor custom cursors. More... | |
Public Types | |
enum | Shape { CUSTOM_BITMAP = -1 , DEFAULT = 0 , BUSY , CROSSHAIR , UPARROW } |
Public Member Functions | |
SoWinCursor (const CustomCursor *cc) | |
SoWinCursor (const Shape shape) | |
SoWinCursor (const SoWinCursor &cursor) | |
SoWinCursor (void) | |
~SoWinCursor () | |
const CustomCursor & | getCustomCursor (void) const |
Shape | getShape (void) const |
SoWinCursor & | operator= (const SoWinCursor &c) |
void | setShape (const Shape shape) |
Static Public Member Functions | |
static const SoWinCursor & | getBlankCursor (void) |
static const SoWinCursor & | getPanCursor (void) |
static const SoWinCursor & | getRotateCursor (void) |
static const SoWinCursor & | getZoomCursor (void) |
static void | initClass (void) |
The SoWinCursor class is used to set cursors for GUI components.
The class provides both a set of predefined cursor shapes, as well as the option to use custom bitmap graphics.
Instances of this class is usually made for passing in to the SoWinComponent::setComponentCursor() and SoWinComponent::setWidgetCursor() methods.
enum SoWinCursor::Shape |
For enumerating built-in shape types, that can be used without having to specify cursor graphics. These are mapped to predefined cursor shapes from the underlying toolkit.
SoWinCursor::SoWinCursor | ( | void | ) |
Default constructor. Creates a default cursor.
SoWinCursor::SoWinCursor | ( | const Shape | shape | ) |
Constructor with Shape argument, for setting up the cursor with a predefined shape from the underlying native toolkit.
SoWinCursor::SoWinCursor | ( | const CustomCursor * | ccarg | ) |
Constructs a new custom bitmap cursor from cc.
Note that only a shallow copy will be made of the CustomCursor bitmap and mask references, so don't deallocate the memory they use until the SoWinCursor has been destructed.
As for the format of the cursor bitmap data, see documentation of SoWinCursor::CustomCursor.
SoWinCursor::SoWinCursor | ( | const SoWinCursor & | cursor | ) |
Constructor.
SoWinCursor::~SoWinCursor | ( | ) |
Destructor
|
static |
Because not all toolkits do easily support setting up a blank cursor from predefined shapes or API functions, we also provide a simple completely transparent cursor.
const SoWinCursor::CustomCursor & SoWinCursor::getCustomCursor | ( | void | ) | const |
Returns a reference to the current custom bitmap cursor.
Do not call this method unless SoWinCursor::getShape() returns SoWinCursor::CUSTOM_BITMAP.
|
static |
Returns a cursor with "pan" graphics (i.e. for translation in the camera normal plane).
|
static |
Returns a "rotate" indicator cursor.
SoWinCursor::Shape SoWinCursor::getShape | ( | void | ) | const |
Returns the shape type.
If the cursor has been set by the application programmer to a bitmap cursor, SoWinCursor::CUSTOM_BITMAP is returned.
|
static |
Returns a "zoom" indicator cursor.
SoWinCursor & SoWinCursor::operator= | ( | const SoWinCursor & | c | ) |
Assignment operator.
void SoWinCursor::setShape | ( | const Shape | shapearg | ) |
Sets the cursor to a predefined shape.