X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/37106ab28e52bf3257b67df8d9c60d61ecb67bdf..c6ea1fdaf924be4ee49a19d12f76e4fcd257bb0a:/include/wx/aui/dockart.h diff --git a/include/wx/aui/dockart.h b/include/wx/aui/dockart.h index db823b52c2..027f399644 100644 --- a/include/wx/aui/dockart.h +++ b/include/wx/aui/dockart.h @@ -29,12 +29,12 @@ // functionality to the wxAui dock manager. This allows the dock // manager to have plugable look-and-feels -class WXDLLIMPEXP_AUI wxDockArt +class WXDLLIMPEXP_AUI wxAuiDockArt { public: - wxDockArt() { } - virtual ~wxDockArt() { } + wxAuiDockArt() { } + virtual ~wxAuiDockArt() { } virtual int GetMetric(int id) = 0; virtual void SetMetric(int id, int new_val) = 0; @@ -46,49 +46,49 @@ public: void SetColor(int id, const wxColour& color) { SetColour(id, color); } virtual void DrawSash(wxDC& dc, - wxWindow *window, + wxWindow* window, int orientation, const wxRect& rect) = 0; virtual void DrawBackground(wxDC& dc, - wxWindow *window, + wxWindow* window, int orientation, const wxRect& rect) = 0; virtual void DrawCaption(wxDC& dc, - wxWindow *window, + wxWindow* window, const wxString& text, const wxRect& rect, - wxPaneInfo& pane) = 0; + wxAuiPaneInfo& pane) = 0; virtual void DrawGripper(wxDC& dc, - wxWindow *window, + wxWindow* window, const wxRect& rect, - wxPaneInfo& pane) = 0; + wxAuiPaneInfo& pane) = 0; virtual void DrawBorder(wxDC& dc, - wxWindow *window, + wxWindow* window, const wxRect& rect, - wxPaneInfo& pane) = 0; + wxAuiPaneInfo& pane) = 0; virtual void DrawPaneButton(wxDC& dc, - wxWindow *window, + wxWindow* window, int button, int button_state, const wxRect& rect, - wxPaneInfo& pane) = 0; + wxAuiPaneInfo& pane) = 0; }; -// this is the default art provider for wxFrameManager. Dock art +// this is the default art provider for wxAuiManager. Dock art // can be customized by creating a class derived from this one, // or replacing this class entirely -class WXDLLIMPEXP_AUI wxDefaultDockArt : public wxDockArt +class WXDLLIMPEXP_AUI wxAuiDefaultDockArt : public wxAuiDockArt { public: - wxDefaultDockArt(); + wxAuiDefaultDockArt(); int GetMetric(int metric_id); void SetMetric(int metric_id, int new_val); @@ -111,29 +111,35 @@ public: wxWindow *window, const wxString& text, const wxRect& rect, - wxPaneInfo& pane); + wxAuiPaneInfo& pane); void DrawGripper(wxDC& dc, wxWindow *window, const wxRect& rect, - wxPaneInfo& pane); + wxAuiPaneInfo& pane); void DrawBorder(wxDC& dc, wxWindow *window, const wxRect& rect, - wxPaneInfo& pane); + wxAuiPaneInfo& pane); void DrawPaneButton(wxDC& dc, wxWindow *window, int button, int button_state, const wxRect& rect, - wxPaneInfo& pane); + wxAuiPaneInfo& pane); + + void DrawIcon(wxDC& dc, + const wxRect& rect, + wxAuiPaneInfo& pane); protected: void DrawCaptionBackground(wxDC& dc, const wxRect& rect, bool active); + void InitBitmaps(); + protected: wxPen m_border_pen; @@ -152,6 +158,7 @@ protected: wxPen m_gripper_pen1; wxPen m_gripper_pen2; wxPen m_gripper_pen3; + wxColour m_base_colour; wxColour m_active_caption_colour; wxColour m_active_caption_gradient_colour; wxColour m_active_caption_text_colour;