X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7dccdf8120e9d0895a3e40c51c43e91e7bc94b3f..fbd8ac5236fa20355e69418f79b0c2aef8aa050e:/src/msw/notebook.cpp diff --git a/src/msw/notebook.cpp b/src/msw/notebook.cpp index da9b748679..dcf8118edc 100644 --- a/src/msw/notebook.cpp +++ b/src/msw/notebook.cpp @@ -184,6 +184,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxNotifyEvent) // local functions // ---------------------------------------------------------------------------- +#ifndef __WXWINCE__ // apparently DrawThemeBackground() modifies the rect passed to it and if we // don't call this function there are some drawing artifacts which are only // visible with some non default themes; so modify the rect here so that it @@ -196,6 +197,7 @@ static void AdjustRectForThemeBg(RECT& rc) rc.right += 4; rc.bottom += 5; } +#endif // ============================================================================ // implementation @@ -256,6 +258,13 @@ bool wxNotebook::Create(wxWindow *parent, long style, const wxString& name) { +#ifdef __WXWINCE__ + // Not sure why, but without this style, there is no border + // around the notebook tabs. + if (style & wxNB_FLAT) + style |= wxBORDER_SUNKEN; +#endif + // comctl32.dll 6.0 doesn't support non-top tabs with visual styles (the // control is simply not rendered correctly), so disable them in this case const int verComCtl32 = wxApp::GetComCtl32Version();