X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c3ead1d1513a5eb79091a604f4e42b45d1bdf5d..06393630145526eefff697d2fc61164530d7da46:/src/ribbon/art_msw.cpp diff --git a/src/ribbon/art_msw.cpp b/src/ribbon/art_msw.cpp index 5f70558798..32d0e2acdb 100644 --- a/src/ribbon/art_msw.cpp +++ b/src/ribbon/art_msw.cpp @@ -15,6 +15,7 @@ #pragma hdrstop #endif +#include "wx/dcmemory.h" #include "wx/ribbon/art.h" #if wxUSE_RIBBON @@ -85,7 +86,7 @@ static const char* const gallery_extension_xpm[] = { wxRibbonMSWArtProvider::wxRibbonMSWArtProvider(bool set_colour_scheme) { m_flags = 0; - m_tab_label_font = wxFont(8, wxDEFAULT, wxNORMAL, wxNORMAL, FALSE); + m_tab_label_font = *wxNORMAL_FONT; m_button_bar_label_font = m_tab_label_font; m_panel_label_font = m_tab_label_font; @@ -1931,10 +1932,9 @@ void wxRibbonMSWArtProvider::DrawPartialPageBackground( wxPoint offset(wnd->GetPosition()); wxRibbonPage* page = NULL; wxWindow* parent = wnd->GetParent(); - wxRibbonPanel* panel = NULL; + wxRibbonPanel* panel = wxDynamicCast(wnd, wxRibbonPanel); bool hovered = false; - panel = wxDynamicCast(wnd, wxRibbonPanel); if(panel != NULL) { hovered = allow_hovered && panel->IsHovered(); @@ -2637,12 +2637,10 @@ bool wxRibbonMSWArtProvider::GetButtonBarButtonSize( wxCoord label_height; wxCoord best_width; dc.GetTextExtent(label, &best_width, &label_height); - int best_num_lines = 1; int last_line_extra_width = 0; if(kind != wxRIBBON_BUTTON_NORMAL) { last_line_extra_width += 8; - best_num_lines = 2; // label on top line, button below } size_t i; for(i = 0; i < label.Len(); ++i) @@ -2655,7 +2653,6 @@ bool wxRibbonMSWArtProvider::GetButtonBarButtonSize( if(width < best_width) { best_width = width; - best_num_lines = 2; } } }