Home
last modified time | relevance | path

Searched refs:sm_defaultPens (Results 1 – 2 of 2) sorted by relevance

/dports/math/gambit/gambit-16.0.1/src/labenski/src/
H A Dplotcurv.cpp96 wxArrayGenericPen wxPlotCurveRefData::sm_defaultPens; member in wxPlotCurveRefData
104 … wxPlotCurveRefData::sm_defaultPens.Add(wxGenericPen( wxGenericColour( 0, 0, 0), 1, wxSOLID )); in InitPlotCurveDefaultPens()
105 … wxPlotCurveRefData::sm_defaultPens.Add(wxGenericPen( wxGenericColour( 0, 0, 255), 1, wxSOLID )); in InitPlotCurveDefaultPens()
106 … wxPlotCurveRefData::sm_defaultPens.Add(wxGenericPen( wxGenericColour(255, 0, 0), 1, wxSOLID )); in InitPlotCurveDefaultPens()
113 m_pens = sm_defaultPens; in wxPlotCurveRefData()
190 …wxCHECK_MSG((colour_type >= 0) && (colour_type < int(wxPlotCurveRefData::sm_defaultPens.GetCount()… in GetDefaultPen()
191 return wxPlotCurveRefData::sm_defaultPens[colour_type]; in GetDefaultPen()
196 …wxCHECK_RET((colour_type >= 0) && (colour_type < int(wxPlotCurveRefData::sm_defaultPens.GetCount()… in SetDefaultPen()
197 wxPlotCurveRefData::sm_defaultPens[colour_type] = pen; in SetDefaultPen()
/dports/math/gambit/gambit-16.0.1/src/labenski/include/wx/plotctrl/
H A Dplotcurv.h101 static wxArrayGenericPen sm_defaultPens; variable