wxDataSet Class Reference

#include <chart.h>

List of all members.

Public Member Functions

 wxDataSet (wxPen *lStype, wxBrush *dStyle, int dWidth, int lWidth, int dGap, int pMark, int disValues)
 wxDataSet (wxPen *lStype, wxBrush *dStyle, wxString *lText, bool lDisplay=false)
 wxDataSet ()
 ~wxDataSet ()
void SetDataStyle (wxBrush *brush)
void SetDataWidth (int width)
void SetLineStyle (wxPen *style)
void SetPointMark (int mark)
void SetText (wxString *string)
void Show (bool show)
bool GetShow ()
wxBrush * GetDataStyle ()
int GetDataWidth ()
wxPen * GetLineStyle ()
int GetPointMark ()
wxString * GetText ()
 wxDataSet (wxPen *lStype, wxBrush *dStyle, int dWidth, int lWidth, int dGap, int pMark, int disValues)
 wxDataSet (wxPen *lStype, wxBrush *dStyle, wxString *lText, bool lDisplay=false)
 wxDataSet ()
 ~wxDataSet ()
void SetDataStyle (wxBrush *brush)
void SetDataWidth (int width)
void SetLineStyle (wxPen *style)
void SetPointMark (int mark)
void SetText (wxString *string)
void Show (bool show)
bool GetShow ()
wxBrush * GetDataStyle ()
int GetDataWidth ()
wxPen * GetLineStyle ()
int GetPointMark ()
wxString * GetText ()

Public Attributes

wxList * m_rowsList
wxList * m_rowsList

Protected Attributes

wxBrush * m_dataStyle
wxPen * m_lineStyle
wxString * m_text
int m_dataWidth
int m_lineWidth
int m_pointMark
int m_displayValues
bool m_display
wxBrush * m_dataStyle
wxPen * m_lineStyle
wxString * m_text


Detailed Description

Definition at line 45 of file chart.h.


Constructor & Destructor Documentation

wxDataSet::wxDataSet ( wxPen *  lStype,
wxBrush *  dStyle,
int  dWidth,
int  lWidth,
int  dGap,
int  pMark,
int  disValues 
)

Definition at line 25 of file chart.cpp.

References m_dataStyle, m_dataWidth, m_display, m_displayValues, m_lineStyle, m_lineWidth, m_pointMark, m_rowsList, and m_text.

00027 {
00028    m_lineStyle = lStyle;
00029    m_dataStyle = dStyle;
00030    m_dataWidth = dWidth;
00031    m_lineWidth = lWidth;
00032    m_pointMark = pMark;
00033    m_displayValues = disValues;
00034    m_display = false;
00035    m_rowsList = NULL;
00036    m_text = NULL;
00037 }

wxDataSet::wxDataSet ( wxPen *  lStype,
wxBrush *  dStyle,
wxString *  lText,
bool  lDisplay = false 
)

Definition at line 39 of file chart.cpp.

References m_dataStyle, m_dataWidth, m_display, m_displayValues, m_lineStyle, m_lineWidth, m_pointMark, m_rowsList, and m_text.

00041 {
00042    m_lineStyle = lStyle;
00043    m_dataStyle = dStyle;
00044    m_display = lDisplay;
00045    m_text = lText;
00046    m_rowsList = NULL;
00047    m_dataWidth = 0;
00048    m_lineWidth = 0;
00049    m_pointMark = 0;
00050    m_displayValues = 0;
00051 }

wxDataSet::wxDataSet (  ) 

Definition at line 55 of file chart.cpp.

References m_dataStyle, m_dataWidth, m_display, m_displayValues, m_lineStyle, m_lineWidth, m_pointMark, m_rowsList, and m_text.

00056 {
00057    m_lineStyle = NULL;
00058    m_dataStyle = NULL;
00059    m_dataWidth = 0;
00060    m_lineWidth = 0;
00061    m_pointMark = 0;
00062    m_displayValues = 0;
00063    m_display = false;
00064    m_rowsList = NULL;
00065    m_text = NULL;
00066 }

wxDataSet::~wxDataSet (  ) 

Definition at line 69 of file chart.cpp.

00070 {
00071   // Nothing
00072 }

wxDataSet::wxDataSet ( wxPen *  lStype,
wxBrush *  dStyle,
int  dWidth,
int  lWidth,
int  dGap,
int  pMark,
int  disValues 
)

wxDataSet::wxDataSet ( wxPen *  lStype,
wxBrush *  dStyle,
wxString *  lText,
bool  lDisplay = false 
)

wxDataSet::wxDataSet (  ) 

wxDataSet::~wxDataSet (  ) 


Member Function Documentation

void wxDataSet::SetDataStyle ( wxBrush *  brush  )  [inline]

Definition at line 71 of file chart.h.

References m_dataStyle.

00071 { m_dataStyle = brush;}

void wxDataSet::SetDataWidth ( int  width  )  [inline]

Definition at line 72 of file chart.h.

References m_dataWidth.

00072 { m_dataWidth = width;}

void wxDataSet::SetLineStyle ( wxPen *  style  )  [inline]

Definition at line 73 of file chart.h.

References m_lineStyle.

00073 { m_lineStyle = style;}

void wxDataSet::SetPointMark ( int  mark  )  [inline]

Definition at line 74 of file chart.h.

References m_pointMark.

00074 { m_pointMark = mark; }

void wxDataSet::SetText ( wxString *  string  )  [inline]

Definition at line 75 of file chart.h.

References m_text.

00075 { m_text = string;    }

void wxDataSet::Show ( bool  show  )  [inline]

Definition at line 76 of file chart.h.

References m_display.

Referenced by wxChart::ShowDataSet().

00076 { m_display=show;     }

Here is the caller graph for this function:

bool wxDataSet::GetShow (  )  [inline]

Definition at line 79 of file chart.h.

References m_display.

Referenced by wxChart::GetShowDataSet().

00079 { return m_display;   }

Here is the caller graph for this function:

wxBrush* wxDataSet::GetDataStyle (  )  [inline]

Definition at line 80 of file chart.h.

References m_dataStyle.

Referenced by wxChart::Draw(), and wxChart::DrawLegend().

00080 { return m_dataStyle; }

Here is the caller graph for this function:

int wxDataSet::GetDataWidth (  )  [inline]

Definition at line 81 of file chart.h.

References m_dataWidth.

00081 { return m_dataWidth; }

wxPen* wxDataSet::GetLineStyle (  )  [inline]

Definition at line 82 of file chart.h.

References m_lineStyle.

Referenced by wxChart::Draw(), and wxChart::DrawLegend().

00082 { return m_lineStyle; }

Here is the caller graph for this function:

int wxDataSet::GetPointMark (  )  [inline]

Definition at line 83 of file chart.h.

References m_pointMark.

00083 { return m_pointMark; }

wxString* wxDataSet::GetText (  )  [inline]

Definition at line 84 of file chart.h.

References m_text.

Referenced by wxChart::DrawLegend().

00084 { return m_text;      }

Here is the caller graph for this function:

void wxDataSet::SetDataStyle ( wxBrush *  brush  )  [inline]

Definition at line 73 of file wxChart.h.

References m_dataStyle.

00073 { m_dataStyle = brush; }

void wxDataSet::SetDataWidth ( int  width  )  [inline]

Definition at line 74 of file wxChart.h.

References m_dataWidth.

00074 { m_dataWidth = width; }

void wxDataSet::SetLineStyle ( wxPen *  style  )  [inline]

Definition at line 75 of file wxChart.h.

References m_lineStyle.

00075 { m_lineStyle = style; }

void wxDataSet::SetPointMark ( int  mark  )  [inline]

Definition at line 76 of file wxChart.h.

References m_pointMark.

00076 { m_pointMark = mark;  }

void wxDataSet::SetText ( wxString *  string  )  [inline]

Definition at line 77 of file wxChart.h.

References m_text.

00077 { m_text      = string;}

void wxDataSet::Show ( bool  show  )  [inline]

Definition at line 78 of file wxChart.h.

References m_display.

00078 { m_display   = show;  }

bool wxDataSet::GetShow (  )  [inline]

Definition at line 81 of file wxChart.h.

References m_display.

00081 { return m_display;    }

wxBrush* wxDataSet::GetDataStyle (  )  [inline]

Definition at line 82 of file wxChart.h.

References m_dataStyle.

00082 { return m_dataStyle;  }

int wxDataSet::GetDataWidth (  )  [inline]

Definition at line 83 of file wxChart.h.

References m_dataWidth.

00083 { return m_dataWidth;  }

wxPen* wxDataSet::GetLineStyle (  )  [inline]

Definition at line 84 of file wxChart.h.

References m_lineStyle.

00084 { return m_lineStyle;  }

int wxDataSet::GetPointMark (  )  [inline]

Definition at line 85 of file wxChart.h.

References m_pointMark.

00085 { return m_pointMark;  }

wxString* wxDataSet::GetText (  )  [inline]

Definition at line 86 of file wxChart.h.

References m_text.

00086 { return m_text;       }


Member Data Documentation

wxBrush* wxDataSet::m_dataStyle [protected]

Definition at line 48 of file chart.h.

Referenced by GetDataStyle(), SetDataStyle(), and wxDataSet().

wxPen* wxDataSet::m_lineStyle [protected]

Definition at line 49 of file chart.h.

Referenced by GetLineStyle(), SetLineStyle(), and wxDataSet().

wxString* wxDataSet::m_text [protected]

Definition at line 50 of file chart.h.

Referenced by GetText(), SetText(), and wxDataSet().

int wxDataSet::m_dataWidth [protected]

Definition at line 51 of file chart.h.

Referenced by GetDataWidth(), SetDataWidth(), and wxDataSet().

int wxDataSet::m_lineWidth [protected]

Definition at line 52 of file chart.h.

Referenced by wxDataSet().

int wxDataSet::m_pointMark [protected]

Definition at line 53 of file chart.h.

Referenced by GetPointMark(), SetPointMark(), and wxDataSet().

int wxDataSet::m_displayValues [protected]

Definition at line 54 of file chart.h.

Referenced by wxDataSet().

bool wxDataSet::m_display [protected]

Definition at line 55 of file chart.h.

Referenced by GetShow(), Show(), and wxDataSet().

wxList* wxDataSet::m_rowsList

Definition at line 58 of file chart.h.

Referenced by wxDataSet().

wxBrush* wxDataSet::m_dataStyle [protected]

Definition at line 50 of file wxChart.h.

wxPen* wxDataSet::m_lineStyle [protected]

Definition at line 51 of file wxChart.h.

wxString* wxDataSet::m_text [protected]

Definition at line 52 of file wxChart.h.

wxList* wxDataSet::m_rowsList

Definition at line 60 of file wxChart.h.


The documentation for this class was generated from the following files:
Generated on Wed Jul 29 16:36:17 2009 for creaMaracasVisu_lib by  doxygen 1.5.3