#include <scilab/modules/renderer/src/cpp/subwinDrawing/BottomXTicksDrawerJavaMapper.hxx>


Public Member Functions | |
| BottomXTicksDrawerJavaMapper (void) | |
| virtual | ~BottomXTicksDrawerJavaMapper (void) |
| virtual void | display (void) |
| virtual void | initializeDrawing (int figureIndex) |
| virtual void | endDrawing (void) |
| virtual void | show (int figureIndex) |
| virtual void | destroy (int figureIndex) |
| virtual void | setFigureIndex (int figureIndex) |
| virtual double | drawTicks (const double ticksPositions[], char *ticksLabels[], int nbTicks, const double subticksPositions[], int nbSubticks) |
| virtual double | drawTicks (const double ticksPositions[], char *ticksLabels[], char *labelsExponents[], int nbTicks, const double subticksPositions[], int nbSubticks) |
| virtual void | setAxesBounds (double xMin, double xMax, double yMin, double yMax, double zMin, double zMax) |
| virtual void | setAxisParamerters (int lineStyle, float lineWidth, int lineColor, int fontType, double fontSize, int fontColor) |
Protected Attributes | |
| org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL * | m_pJavaObject |
Definition at line 27 of file BottomXTicksDrawerJavaMapper.hxx.
| sciGraphics::BottomXTicksDrawerJavaMapper::BottomXTicksDrawerJavaMapper | ( | void | ) |
Definition at line 25 of file BottomXTicksDrawerJavaMapper.cpp.
References getScilabJavaVM(), and m_pJavaObject.
00026 { 00027 m_pJavaObject = new org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL(getScilabJavaVM()); 00028 }

| sciGraphics::BottomXTicksDrawerJavaMapper::~BottomXTicksDrawerJavaMapper | ( | void | ) | [virtual] |
Definition at line 30 of file BottomXTicksDrawerJavaMapper.cpp.
References m_pJavaObject, and NULL.
00031 { 00032 delete m_pJavaObject; 00033 m_pJavaObject = NULL; 00034 }
| void sciGraphics::BottomXTicksDrawerJavaMapper::display | ( | void | ) | [virtual] |
Implements sciGraphics::DrawableObjectJavaMapper.
Definition at line 36 of file BottomXTicksDrawerJavaMapper.cpp.
References org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::display(), and m_pJavaObject.
00037 { 00038 m_pJavaObject->display(); 00039 }

| void sciGraphics::BottomXTicksDrawerJavaMapper::initializeDrawing | ( | int | figureIndex | ) | [virtual] |
Implements sciGraphics::DrawableObjectJavaMapper.
Definition at line 41 of file BottomXTicksDrawerJavaMapper.cpp.
References org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::initializeDrawing(), and m_pJavaObject.
00042 { 00043 m_pJavaObject->initializeDrawing(figureIndex); 00044 }

| void sciGraphics::BottomXTicksDrawerJavaMapper::endDrawing | ( | void | ) | [virtual] |
Implements sciGraphics::DrawableObjectJavaMapper.
Definition at line 46 of file BottomXTicksDrawerJavaMapper.cpp.
References org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::endDrawing(), and m_pJavaObject.
00047 { 00048 m_pJavaObject->endDrawing(); 00049 }

| void sciGraphics::BottomXTicksDrawerJavaMapper::show | ( | int | figureIndex | ) | [virtual] |
Implements sciGraphics::DrawableObjectJavaMapper.
Definition at line 51 of file BottomXTicksDrawerJavaMapper.cpp.
References m_pJavaObject, and org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::show().
00052 { 00053 m_pJavaObject->show(figureIndex); 00054 }

| void sciGraphics::BottomXTicksDrawerJavaMapper::destroy | ( | int | figureIndex | ) | [virtual] |
Implements sciGraphics::DrawableObjectJavaMapper.
Definition at line 56 of file BottomXTicksDrawerJavaMapper.cpp.
References org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::destroy(), and m_pJavaObject.
00057 { 00058 m_pJavaObject->destroy(parentFigureIndex); 00059 }

| void sciGraphics::BottomXTicksDrawerJavaMapper::setFigureIndex | ( | int | figureIndex | ) | [virtual] |
Implements sciGraphics::DrawableObjectJavaMapper.
Definition at line 61 of file BottomXTicksDrawerJavaMapper.cpp.
References m_pJavaObject, and org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::setFigureIndex().
00062 { 00063 m_pJavaObject->setFigureIndex(figureIndex); 00064 }

| double sciGraphics::BottomXTicksDrawerJavaMapper::drawTicks | ( | const double | ticksPositions[], | |
| char * | ticksLabels[], | |||
| int | nbTicks, | |||
| const double | subticksPositions[], | |||
| int | nbSubticks | |||
| ) | [virtual] |
Implements sciGraphics::TicksDrawerJavaMapper.
Definition at line 66 of file BottomXTicksDrawerJavaMapper.cpp.
References org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::drawTicks(), and m_pJavaObject.
00068 { 00069 return m_pJavaObject->drawTicks((double *)ticksPositions, nbTicks, 00070 ticksLabels, nbTicks, 00071 (double *)subticksPositions, nbSubticks); 00072 }

| double sciGraphics::BottomXTicksDrawerJavaMapper::drawTicks | ( | const double | ticksPositions[], | |
| char * | ticksLabels[], | |||
| char * | labelsExponents[], | |||
| int | nbTicks, | |||
| const double | subticksPositions[], | |||
| int | nbSubticks | |||
| ) | [virtual] |
Implements sciGraphics::TicksDrawerJavaMapper.
Definition at line 74 of file BottomXTicksDrawerJavaMapper.cpp.
References org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::drawTicks(), and m_pJavaObject.
00077 { 00078 return m_pJavaObject->drawTicks((double *)ticksPositions, nbTicks, 00079 ticksLabels, nbTicks, 00080 labelsExponents, nbTicks, 00081 (double *)subticksPositions, nbSubticks); 00082 }

| void sciGraphics::BottomXTicksDrawerJavaMapper::setAxesBounds | ( | double | xMin, | |
| double | xMax, | |||
| double | yMin, | |||
| double | yMax, | |||
| double | zMin, | |||
| double | zMax | |||
| ) | [virtual] |
Implements sciGraphics::TicksDrawerJavaMapper.
Definition at line 84 of file BottomXTicksDrawerJavaMapper.cpp.
References m_pJavaObject, and org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::setAxesBounds().
00087 { 00088 m_pJavaObject->setAxesBounds(xMin, xMax, yMin, yMax, zMin, zMax); 00089 }

| void sciGraphics::BottomXTicksDrawerJavaMapper::setAxisParamerters | ( | int | lineStyle, | |
| float | lineWidth, | |||
| int | lineColor, | |||
| int | fontType, | |||
| double | fontSize, | |||
| int | fontColor | |||
| ) | [virtual] |
Implements sciGraphics::TicksDrawerJavaMapper.
Definition at line 91 of file BottomXTicksDrawerJavaMapper.cpp.
References m_pJavaObject, and org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL::setAxisParameters().
00093 { 00094 m_pJavaObject->setAxisParameters(lineStyle, lineWidth, lineColor, 00095 fontType, fontSize, fontColor); 00096 }

org_scilab_modules_renderer_subwinDrawing::BottomXTicksDrawerGL* sciGraphics::BottomXTicksDrawerJavaMapper::m_pJavaObject [protected] |
Giws generated wrapper
Definition at line 68 of file BottomXTicksDrawerJavaMapper.hxx.
Referenced by BottomXTicksDrawerJavaMapper(), destroy(), display(), drawTicks(), endDrawing(), initializeDrawing(), setAxesBounds(), setAxisParamerters(), setFigureIndex(), show(), and ~BottomXTicksDrawerJavaMapper().
1.5.4