mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Windows doesn't like rounded rectangles
This commit is contained in:
parent
5bb8ea883a
commit
087c196643
File diff suppressed because it is too large
Load Diff
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user