+ 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();