#include <chart.h>
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 |
Definition at line 45 of file chart.h.
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 | ( | 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 | ( | ) |
void wxDataSet::SetDataStyle | ( | wxBrush * | brush | ) | [inline] |
void wxDataSet::SetDataWidth | ( | int | width | ) | [inline] |
void wxDataSet::SetLineStyle | ( | wxPen * | style | ) | [inline] |
void wxDataSet::SetPointMark | ( | int | mark | ) | [inline] |
void wxDataSet::SetText | ( | wxString * | string | ) | [inline] |
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; }
bool wxDataSet::GetShow | ( | ) | [inline] |
Definition at line 79 of file chart.h.
References m_display.
Referenced by wxChart::GetShowDataSet().
00079 { return m_display; }
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; }
int wxDataSet::GetDataWidth | ( | ) | [inline] |
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; }
int wxDataSet::GetPointMark | ( | ) | [inline] |
wxString* wxDataSet::GetText | ( | ) | [inline] |
Definition at line 84 of file chart.h.
References m_text.
Referenced by wxChart::DrawLegend().
00084 { return m_text; }
void wxDataSet::SetDataStyle | ( | wxBrush * | brush | ) | [inline] |
void wxDataSet::SetDataWidth | ( | int | width | ) | [inline] |
void wxDataSet::SetLineStyle | ( | wxPen * | style | ) | [inline] |
void wxDataSet::SetPointMark | ( | int | mark | ) | [inline] |
void wxDataSet::SetText | ( | wxString * | string | ) | [inline] |
void wxDataSet::Show | ( | bool | show | ) | [inline] |
bool wxDataSet::GetShow | ( | ) | [inline] |
wxBrush* wxDataSet::GetDataStyle | ( | ) | [inline] |
int wxDataSet::GetDataWidth | ( | ) | [inline] |
wxPen* wxDataSet::GetLineStyle | ( | ) | [inline] |
int wxDataSet::GetPointMark | ( | ) | [inline] |
wxString* wxDataSet::GetText | ( | ) | [inline] |
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] |
int wxDataSet::m_dataWidth [protected] |
Definition at line 51 of file chart.h.
Referenced by GetDataWidth(), SetDataWidth(), and wxDataSet().
int wxDataSet::m_lineWidth [protected] |
int wxDataSet::m_pointMark [protected] |
Definition at line 53 of file chart.h.
Referenced by GetPointMark(), SetPointMark(), and wxDataSet().
int wxDataSet::m_displayValues [protected] |
bool wxDataSet::m_display [protected] |
wxList* wxDataSet::m_rowsList |
wxBrush* wxDataSet::m_dataStyle [protected] |
wxPen* wxDataSet::m_lineStyle [protected] |
wxString* wxDataSet::m_text [protected] |
wxList* wxDataSet::m_rowsList |