1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
#include "clToolBarButtonBase.h"
#include "clToolBar.h"
#include "drawingutils.h"
// -----------------------------------------------
// Button base
// -----------------------------------------------
clToolBarButtonBase::clToolBarButtonBase(clToolBarGeneric* parent, wxWindowID id, int bmpId, const wxString& label,
size_t flags)
: m_toolbar(parent)
, m_id(id)
, m_bmpId(bmpId)
, m_label(label)
, m_flags(flags)
, m_renderFlags(0)
, m_menu(nullptr)
{
}
clToolBarButtonBase::~clToolBarButtonBase()
{
wxDELETE(m_menu);
if(m_toolbar && m_toolbar->GetBitmaps()) {
m_toolbar->GetBitmaps()->Delete(m_bmpId);
}
}
void clToolBarButtonBase::Render(wxDC& dc, const wxRect& rect)
{
m_dropDownArrowRect = wxRect();
m_buttonRect = rect;
const clColours& colours = DrawingUtils::GetColours();
wxColour textColour = colours.GetItemTextColour();
wxColour penColour;
wxColour buttonColour;
const wxColour bgColour = DrawingUtils::GetMenuBarBgColour(m_toolbar->HasFlag(clToolBarGeneric::kMiniToolBar));
bool isdark = DrawingUtils::IsDark(bgColour);
if(IsEnabled() && (IsPressed() || IsChecked())) {
wxColour pressBgColour = isdark ? bgColour.ChangeLightness(110) : bgColour.ChangeLightness(80);
wxRect highlightRect = m_buttonRect;
highlightRect.Inflate(1);
penColour = isdark ? pressBgColour.ChangeLightness(120) : pressBgColour.ChangeLightness(80);
dc.SetBrush(pressBgColour);
dc.SetPen(penColour);
dc.DrawRectangle(highlightRect);
textColour = colours.GetSelItemTextColour();
buttonColour = colours.GetSelbuttonColour();
} else if(IsEnabled() && IsHover()) {
// wxColour hoverColour = bgColour;
// penColour = bgColour;
// wxRect highlightRect = m_buttonRect;
// dc.SetBrush(hoverColour);
// dc.SetPen(penColour);
// dc.DrawRoundedRectangle(highlightRect, 0);
// textColour = colours.GetSelItemTextColour();
// buttonColour = colours.GetSelbuttonColour();
} else if(!IsEnabled()) {
// A disabled button
textColour = wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT);
buttonColour = textColour;
} else {
// Default
if(DrawingUtils::IsDark(bgColour)) {
buttonColour = colours.GetSelbuttonColour();
} else {
buttonColour = colours.GetButtonColour();
}
textColour = colours.GetItemTextColour();
}
wxCoord xx = m_buttonRect.GetX();
wxCoord yy = 0;
xx += m_toolbar->GetXSpacer();
const wxBitmap& m_bmp = m_toolbar->GetBitmap(m_bmpId);
if(m_bmp.IsOk()) {
wxBitmap bmp(m_bmp);
if(!IsEnabled()) {
bmp = DrawingUtils::CreateDisabledBitmap(m_bmp);
}
yy = (m_buttonRect.GetHeight() - bmp.GetScaledHeight()) / 2 + m_buttonRect.GetY();
dc.DrawBitmap(bmp, wxPoint(xx, yy));
xx += bmp.GetScaledWidth();
xx += m_toolbar->GetXSpacer();
}
if(!m_label.IsEmpty() && m_toolbar->IsShowLabels()) {
dc.SetTextForeground(textColour);
wxSize sz = dc.GetTextExtent(m_label);
yy = (m_buttonRect.GetHeight() - sz.GetHeight()) / 2 + m_buttonRect.GetY();
dc.DrawText(m_label, wxPoint(xx, yy));
xx += sz.GetWidth();
xx += m_toolbar->GetXSpacer();
}
// Do we need to draw a drop down arrow?
if(IsMenuButton()) {
// draw a drop down menu
int drop_down_button_width = m_buttonRect.GetHeight();
m_dropDownArrowRect = wxRect(xx, m_buttonRect.GetY(), drop_down_button_width, drop_down_button_width);
m_dropDownArrowRect = m_dropDownArrowRect.CenterIn(m_buttonRect, wxVERTICAL);
if(IsPressed() && IsEnabled()) {
dc.DrawLine(wxPoint(xx, m_buttonRect.GetY() + 2),
wxPoint(xx, m_buttonRect.GetY() + m_buttonRect.GetHeight() - 2));
}
DrawingUtils::DrawDropDownArrow(m_toolbar, dc, m_dropDownArrowRect);
xx += drop_down_button_width;
}
}
void clToolBarButtonBase::SetMenu(wxMenu* menu)
{
wxDELETE(m_menu);
m_menu = menu;
}
const wxBitmap& clToolBarButtonBase::GetBitmap() const { return m_toolbar->GetBitmap(m_bmpId); }
|