]> git.saurik.com Git - wxWidgets.git/commitdiff
wxaui multi-book prep work for left/right buttons on tab bar
authorBenjamin Williams <bwilliams@kirix.com>
Sat, 28 Oct 2006 18:21:11 +0000 (18:21 +0000)
committerBenjamin Williams <bwilliams@kirix.com>
Sat, 28 Oct 2006 18:21:11 +0000 (18:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42587 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/aui/auibook.h
src/aui/auibook.cpp

index 360677651252d8f8a9b0b0ef8f7f8b335f5cf41d..f10d6801a56c9a3e6cecf198fe583069081ee9e1 100644 (file)
@@ -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:
 
index e0d1752d9d9e40cda6671d0f2a9ecf8d7c213c51..07cf4c02169b600f4d36f1080838008f56f1d346 100644 (file)
@@ -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;