sciGraphics::BottomXTicksDrawerJavaMapper Class Reference

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

Inheritance diagram for sciGraphics::BottomXTicksDrawerJavaMapper:

Inheritance graph
[legend]
Collaboration diagram for sciGraphics::BottomXTicksDrawerJavaMapper:

Collaboration graph
[legend]

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::BottomXTicksDrawerGLm_pJavaObject

Detailed Description

Contains mapping of java method used by XTicksDrawerJoGL

Definition at line 27 of file BottomXTicksDrawerJavaMapper.hxx.


Constructor & Destructor Documentation

sciGraphics::BottomXTicksDrawerJavaMapper::BottomXTicksDrawerJavaMapper ( void   ) 

Definition at line 25 of file BottomXTicksDrawerJavaMapper.cpp.

References getScilabJavaVM(), and m_pJavaObject.

Here is the call graph for this function:

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 }


Member Function Documentation

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 }

Here is the call graph for this function:

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 }

Here is the call graph for this function:

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 }

Here is the call graph for this function:

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 }

Here is the call graph for this function:

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 }

Here is the call graph for this function:

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 }

Here is the call graph for this function:

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 }

Here is the call graph for this function:

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 }

Here is the call graph for this function:

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 }

Here is the call graph for this function:

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 }

Here is the call graph for this function:


Field Documentation

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().


The documentation for this class was generated from the following files:
Generated on Sun Apr 27 16:35:31 2008 for Scilab [trunk] by  doxygen 1.5.4