wxBLACK usage.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39615 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-06-07 13:26:00 +00:00
parent 110ffa1637
commit 19bc15143a
9 changed files with 20 additions and 37 deletions

View File

@@ -353,11 +353,8 @@ wxDC::wxDC(void)
m_hPS = NULL;
m_bIsPaintTime = false; // True at Paint Time
wxColour vColor( wxT("BLACK") );
m_pen.SetColour(vColor);
vColor.Set( wxT("WHITE") );
m_brush.SetColour(vColor);
m_pen.SetColour(*wxBLACK);
m_brush.SetColour(*wxWHITE);
} // end of wxDC::wxDC
@@ -1708,11 +1705,9 @@ void wxDC::DoDrawText(
CalcBoundingBox((vX + vWidth), (vY + vHeight));
} // end of wxDC::DoDrawText
void wxDC::DrawAnyText(
const wxString& rsText
, wxCoord vX
, wxCoord vY
)
void wxDC::DrawAnyText( const wxString& rsText,
wxCoord vX,
wxCoord vY )
{
int nOldBackground = 0;
POINTL vPtlStart;
@@ -1776,7 +1771,7 @@ void wxDC::DrawAnyText(
vPtlStart.y = vY;
}
PCH pzStr = (PCH)rsText.c_str();
PCH pzStr = (PCH)rsText.c_str();
::GpiMove(m_hPS, &vPtlStart);
lHits = ::GpiCharString( m_hPS

View File

@@ -168,17 +168,10 @@ void wxWindowDC::InitDC()
//
SetBackground(wxBrush(m_pCanvas->GetBackgroundColour(), wxSOLID));
wxColour vColor( wxT("BLACK") );
m_pen.SetColour(vColor);
vColor.Set( wxT("WHITE") );
m_brush.SetColour(vColor);
m_pen.SetColour(*wxBLACK);
m_brush.SetColour(*wxWHITE);
InitializePalette();
wxFont* pFont = new wxFont( 10
,wxMODERN
,wxNORMAL
,wxBOLD
);
wxFont* pFont = new wxFont( 10, wxMODERN, wxNORMAL, wxBOLD );
SetFont(*pFont);
delete pFont;
//

View File

@@ -145,11 +145,10 @@ bool wxRadioBox::Create( wxWindow* pParent,
const wxValidator& rVal,
const wxString& rsName )
{
wxColour vColour;
wxColour vColour(*wxBLACK);
LONG lColor;
HWND hWndParent = GetHwndOf(pParent);
vColour.Set(wxString(wxT("BLACK")));
m_backgroundColour = pParent->GetBackgroundColour();
m_nSelectedButton = -1;
m_nNoItems = 0;

View File

@@ -406,11 +406,9 @@ bool wxSlider::Create(
)
) + 4; // for bordersizes
wxColour vColour;
wxColour vColour(*wxBLACK);
vColour.Set(wxString(wxT("BLACK")));
LONG lColor = (LONG)vColour.GetPixel();
LONG lColor = (LONG)vColour.GetPixel();
::WinSetPresParam( m_hStaticMin
,PP_FOREGROUNDCOLOR

View File

@@ -62,9 +62,7 @@ bool wxStaticBox::Create( wxWindow* pParent,
//
SetBackgroundColour(GetParent()->GetBackgroundColour());
wxColour vColour;
vColour.Set(wxString(wxT("BLACK")));
LONG lColor = (LONG)vColour.GetPixel();
LONG lColor = (LONG)wxBLACK->GetPixel();
::WinSetPresParam( m_hWnd
,PP_FOREGROUNDCOLOR
,sizeof(LONG)