Windows doesn't like rounded rectangles

This commit is contained in:
Mark Watkins 2011-06-11 15:02:00 +10:00
parent 5bb8ea883a
commit 087c196643
3 changed files with 313 additions and 309 deletions

File diff suppressed because it is too large Load Diff

View File

@ -643,16 +643,20 @@ void gGraphWindow::OnPaint(wxPaintEvent& event)
wxPaintDC dc(this); wxPaintDC dc(this);
#endif #endif
//#if defined(__WXMSW)
// wxGraphicsRenderer *render=wxGraphicsRenderer::GetDefaultRenderer();
// Create graphics context from it // Create graphics context from it
wxGraphicsContext *gc = wxGraphicsContext::Create(dc); // wxGraphicsContext *gc = render->CreateContextFromNativeWindow(this); //::Create(dc);
//#else
wxGraphicsContext *gc = wxGraphicsContext::Create(dc); //::Create(dc);
//#endif
/*if (pref["UseAntiAliasing"]) { if (pref["UseAntiAliasing"]) {
gc->SetAntialiasMode(wxANTIALIAS_DEFAULT); gc->SetAntialiasMode(wxANTIALIAS_DEFAULT);
} else { } else {
gc->SetAntialiasMode(wxANTIALIAS_NONE); gc->SetAntialiasMode(wxANTIALIAS_NONE);
} */ }
//gc->SetAntialiasMode(wxANTIALIAS_NONE); //gc->SetAntialiasMode(wxANTIALIAS_NONE);
//->SetInterpolationQuality(wxINTERPOLATION_FAST); //->SetInterpolationQuality(wxINTERPOLATION_FAST);
@ -693,7 +697,7 @@ void gGraphWindow::OnPaint(wxPaintEvent& event)
// gc->SetBrush(*wxTRANSPARENT_BRUSH); // gc->SetBrush(*wxTRANSPARENT_BRUSH);
//} //}
if (m_mouseRBrect.width>0) if (m_mouseRBrect.width>0)
gc->DrawRoundedRectangle(m_mouseRBrect.x,m_mouseRBrect.y,m_mouseRBrect.width-2,m_mouseRBrect.height,10); gc->DrawRectangle(m_mouseRBrect.x,m_mouseRBrect.y,m_mouseRBrect.width-2,m_mouseRBrect.height);
} }
//if (pref["UseAntiAliasing"]) { //if (pref["UseAntiAliasing"]) {
//delete dcp; //delete dcp;

View File

@ -16,14 +16,14 @@ namespace AutoVersion{
//Standard Version Type //Standard Version Type
static const long MAJOR = 0; static const long MAJOR = 0;
static const long MINOR = 7; static const long MINOR = 7;
static const long BUILD = 4542; static const long BUILD = 4556;
static const long REVISION = 7991; static const long REVISION = 8072;
//Miscellaneous Version Types //Miscellaneous Version Types
static const long BUILDS_COUNT = 3346; static const long BUILDS_COUNT = 3389;
#define RC_FILEVERSION 0,7,4542,7991 #define RC_FILEVERSION 0,7,4556,8072
#define RC_FILEVERSION_STRING "0, 7, 4542, 7991\0" #define RC_FILEVERSION_STRING "0, 7, 4556, 8072\0"
static const char FULLVERSION_STRING[] = "0.7.4542.7991"; static const char FULLVERSION_STRING[] = "0.7.4556.8072";
//These values are to keep track of your versioning state, don't modify them. //These values are to keep track of your versioning state, don't modify them.
static const long BUILD_HISTORY = 0; static const long BUILD_HISTORY = 0;