X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..9d8f813841969fc038193fa07ef44fb640657923:/src/msw/pen.cpp?ds=sidebyside diff --git a/src/msw/pen.cpp b/src/msw/pen.cpp index f255240708..92b08327a6 100644 --- a/src/msw/pen.cpp +++ b/src/msw/pen.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: msw/pen.cpp +// Name: src/msw/pen.cpp // Purpose: wxPen // Author: Julian Smart // Modified by: @@ -13,16 +13,16 @@ #include "wx/wxprec.h" #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif -#ifndef WX_PRECOMP -#include -#include "wx/setup.h" -#include "wx/list.h" -#include "wx/utils.h" -#include "wx/app.h" #include "wx/pen.h" + +#ifndef WX_PRECOMP + #include + #include "wx/list.h" + #include "wx/utils.h" + #include "wx/app.h" #endif #include "wx/msw/private.h" @@ -123,7 +123,7 @@ bool wxPen::RealizeResource() // Join style, Cap style, Pen Stippling #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__) // Only NT can display dashed or dotted lines with width > 1 - if ( os != wxWINDOWS_NT && + if ( os != wxOS_WINDOWS_NT && (M_PENDATA->m_style == wxDOT || M_PENDATA->m_style == wxLONG_DASH || M_PENDATA->m_style == wxSHORT_DASH || @@ -225,25 +225,14 @@ bool wxPen::RealizeResource() real_dash = (wxMSWDash*)NULL; } - // Win32s doesn't have ExtCreatePen function... - if (os==wxWINDOWS_NT || os==wxWIN95) - { - M_PENDATA->m_hPen = - (WXHPEN) ExtCreatePen( ms_style, - M_PENDATA->m_width, - &logb, - M_PENDATA->m_style == wxUSER_DASH - ? M_PENDATA->m_nbDash - : 0, - (LPDWORD)real_dash ); - } - else - { - M_PENDATA->m_hPen = - (WXHPEN) CreatePen( wx2msPenStyle(M_PENDATA->m_style), - M_PENDATA->m_width, - ms_colour ); - } + M_PENDATA->m_hPen = + (WXHPEN) ExtCreatePen( ms_style, + M_PENDATA->m_width, + &logb, + M_PENDATA->m_style == wxUSER_DASH + ? M_PENDATA->m_nbDash + : 0, + (LPDWORD)real_dash ); delete [] real_dash; } @@ -389,12 +378,10 @@ int wx2msPenStyle(int wx_style) return PS_NULL; case wxUSER_DASH: - // if (wxGetOsVersion()==wxWINDOWS_NT || wxGetOsVersion()==wxWIN95) - return PS_USERSTYLE; + return PS_USERSTYLE; } #else wxUnusedVar(wx_style); #endif return PS_SOLID; } -