From: Benjamin Williams Date: Sat, 28 Oct 2006 18:21:11 +0000 (+0000) Subject: wxaui multi-book prep work for left/right buttons on tab bar X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b6418695cadff0d160607079ea3b9876e5359112?ds=inline wxaui multi-book prep work for left/right buttons on tab bar git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42587 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/aui/auibook.h b/include/wx/aui/auibook.h index 3606776512..f10d6801a5 100644 --- a/include/wx/aui/auibook.h +++ b/include/wx/aui/auibook.h @@ -140,6 +140,7 @@ class WXDLLIMPEXP_AUI wxAuiTabContainerButton public: int id; // button's id int cur_state; // current state (normal, hover, pressed) + int location; // buttons location (wxLEFT or wxRIGHT) wxBitmap bitmap; // button's bitmap wxRect rect; // button's hit rectangle }; @@ -180,7 +181,7 @@ public: void SetMeasuringFont(const wxFont& measuring_font); void DoShowHide(); void SetRect(const wxRect& rect); - void AddButton(int id, const wxBitmap& bmp); + void AddButton(int id, int location, const wxBitmap& bmp); protected: diff --git a/src/aui/auibook.cpp b/src/aui/auibook.cpp index e0d1752d9d..07cf4c0216 100644 --- a/src/aui/auibook.cpp +++ b/src/aui/auibook.cpp @@ -448,11 +448,12 @@ size_t wxAuiTabContainer::GetPageCount() const return m_pages.GetCount(); } -void wxAuiTabContainer::AddButton(int id, const wxBitmap& bmp) +void wxAuiTabContainer::AddButton(int id, int location, const wxBitmap& bmp) { wxAuiTabContainerButton button; button.id = id; button.bitmap = bmp; + button.location = location; button.cur_state = wxAUI_BUTTON_STATE_NORMAL; m_buttons.Add(button); @@ -470,11 +471,64 @@ void wxAuiTabContainer::Render(wxDC* raw_dc) bmp.Create(m_rect.GetWidth(), m_rect.GetHeight()); dc.SelectObject(bmp); - m_art->DrawBackground(&dc, m_rect); - size_t i, page_count = m_pages.GetCount(); int offset = 0; + size_t i; + + // draw the buttons on the right side + offset = m_rect.x + m_rect.width; + size_t button_count = m_buttons.GetCount(); + for (i = 0; i < button_count; ++i) + { + wxAuiTabContainerButton& button = m_buttons.Item(button_count - i - 1); + + if (button.location != wxRIGHT) + continue; + + wxRect button_rect(offset - button.bitmap.GetWidth(), 1, + button.bitmap.GetWidth(), button.bitmap.GetHeight()); + + button.rect = button_rect; + + DrawButton(dc, button.rect, button.bitmap, + //m_bkbrush.GetColour(), + *wxWHITE, + button.cur_state); + + offset -= button.bitmap.GetWidth(); + } + + + + offset = 0; + + // draw the buttons on the left side + + for (i = 0; i < button_count; ++i) + { + wxAuiTabContainerButton& button = m_buttons.Item(button_count - i - 1); + + if (button.location != wxLEFT) + continue; + + wxRect button_rect(offset, 1, + button.bitmap.GetWidth(), + button.bitmap.GetHeight()); + + button.rect = button_rect; + + DrawButton(dc, button.rect, button.bitmap, + //m_bkbrush.GetColour(), + *wxWHITE, + button.cur_state); + + offset += button.bitmap.GetWidth(); + } + + + // draw the tabs + size_t page_count = m_pages.GetCount(); size_t active = 999; int active_offset = 0; @@ -521,26 +575,6 @@ void wxAuiTabContainer::Render(wxDC* raw_dc) &x_extent); } - // draw the buttons - offset = m_rect.x + m_rect.width; - size_t button_count = m_buttons.GetCount(); - for (i = 0; i < button_count; ++i) - { - wxAuiTabContainerButton& button = m_buttons.Item(button_count - i - 1); - - wxRect button_rect(offset - button.bitmap.GetWidth(), 1, - button.bitmap.GetWidth(), button.bitmap.GetHeight()); - - button.rect = button_rect; - - DrawButton(dc, button.rect, button.bitmap, - //m_bkbrush.GetColour(), - *wxWHITE, - button.cur_state); - - offset -= button.bitmap.GetWidth(); - } - raw_dc->Blit(m_rect.x, m_rect.y, m_rect.GetWidth(), m_rect.GetHeight(), &dc, 0, 0); } @@ -686,7 +720,7 @@ wxAuiTabCtrl::wxAuiTabCtrl(wxWindow* parent, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff}; #endif - AddButton(101, BitmapFromBits(close_bits, 16, 16, *wxBLACK)); + AddButton(101, wxRIGHT, BitmapFromBits(close_bits, 16, 16, *wxBLACK)); } @@ -780,6 +814,14 @@ void wxAuiTabCtrl::OnMotion(wxMouseEvent& evt) wxAuiTabContainerButton* button; if (ButtonHitTest(pos.x, pos.y, &button)) { + if (m_hover_button && button != m_hover_button) + { + m_hover_button->cur_state = wxAUI_BUTTON_STATE_NORMAL; + m_hover_button = NULL; + Refresh(); + Update(); + } + if (button->cur_state != wxAUI_BUTTON_STATE_HOVER) { button->cur_state = wxAUI_BUTTON_STATE_HOVER;