m_cap = wxCAP_ROUND ;
m_nbDash = 0 ;
m_dash = 0 ;
-/* TODO: null data
- m_hPen = 0;
-*/
}
wxPenRefData::wxPenRefData(const wxPenRefData& data)
m_nbDash = data.m_nbDash;
m_dash = data.m_dash;
m_colour = data.m_colour;
-/* TODO: null data
- m_hPen = 0;
-*/
}
wxPenRefData::~wxPenRefData()
{
- // TODO: delete data
}
// Pens
wxPen::wxPen()
{
- if ( wxThePenList )
- wxThePenList->AddPen(this);
}
wxPen::~wxPen()
{
- if (wxThePenList)
- wxThePenList->RemovePen(this);
}
// Should implement Create
M_PENDATA->m_dash = 0 ;
RealizeResource();
-
- if ( wxThePenList )
- wxThePenList->AddPen(this);
}
wxPen::wxPen(const wxBitmap& stipple, int Width)
M_PENDATA->m_dash = 0 ;
RealizeResource();
-
- if ( wxThePenList )
- wxThePenList->AddPen(this);
}
void wxPen::Unshare()
bool wxPen::RealizeResource()
{
- // TODO: create actual pen
- return FALSE;
+ // nothing to do here for mac
+ return TRUE;
}