2 % automatically generated by HelpGen $Revision$ from
3 % dockart.h at 04/Nov/06 21:54:42
6 \section{\class{wxAuiDockArt
}}\label{wxauidockart
}
8 wxAuiDockArt is part of the wxAUI class framework.
9 See also
\helpref{wxAUI overview
}{wxauioverview
}.
11 Dock art provider code - a dock provider provides all drawing
12 functionality to the wxAui dock manager. This allows the dock
13 manager to have a plugable look-and-feel.
15 By default, a
\helpref{wxAuiManager
}{wxauimanager
} uses an
16 instance of this class called
{\bf wxAuiDefaultDockArt
} which
17 provides bitmap art and a colour scheme that is adapted to
18 the major platforms' look. You can either derive from that
19 class to alter its behaviour or write a completely new dock
20 art class. Call
\helpref{wxAuiManager::SetArtProvider
}{wxauimanagersetartprovider
}
21 to make use this new dock art.
23 \wxheading{Derived from
}
27 \wxheading{Include files
}
33 \helpref{wxAuiManager
}{wxauimanager
},
34 \helpref{wxAuiPaneInfo
}{wxauipaneinfo
}
36 \wxheading{Data structures
}
39 enum wxAuiPaneDockArtSetting
41 wxAUI_DOCKART_SASH_SIZE =
0,
42 wxAUI_DOCKART_CAPTION_SIZE =
1,
43 wxAUI_DOCKART_GRIPPER_SIZE =
2,
44 wxAUI_DOCKART_PANE_BORDER_SIZE =
3,
45 wxAUI_DOCKART_PANE_BUTTON_SIZE =
4,
46 wxAUI_DOCKART_BACKGROUND_COLOUR =
5,
47 wxAUI_DOCKART_SASH_COLOUR =
6,
48 wxAUI_DOCKART_ACTIVE_CAPTION_COLOUR =
7,
49 wxAUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR =
8,
50 wxAUI_DOCKART_INACTIVE_CAPTION_COLOUR =
9,
51 wxAUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR =
10,
52 wxAUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR =
11,
53 wxAUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR =
12,
54 wxAUI_DOCKART_BORDER_COLOUR =
13,
55 wxAUI_DOCKART_GRIPPER_COLOUR =
14,
56 wxAUI_DOCKART_CAPTION_FONT =
15,
57 wxAUI_DOCKART_GRADIENT_TYPE =
16
62 enum wxAuiPaneDockArtGradients
64 wxAUI_GRADIENT_NONE =
0,
65 wxAUI_GRADIENT_VERTICAL =
1,
66 wxAUI_GRADIENT_HORIZONTAL =
2
71 enum wxAuiPaneButtonState
73 wxAUI_BUTTON_STATE_NORMAL =
0,
74 wxAUI_BUTTON_STATE_HOVER =
1,
75 wxAUI_BUTTON_STATE_PRESSED =
2
82 wxAUI_BUTTON_CLOSE =
101,
83 wxAUI_BUTTON_MAXIMIZE_RESTORE =
102,
84 wxAUI_BUTTON_MINIMIZE =
103,
85 wxAUI_BUTTON_PIN =
104,
86 wxAUI_BUTTON_OPTIONS =
105,
87 wxAUI_BUTTON_WINDOWLIST =
106,
88 wxAUI_BUTTON_LEFT =
107,
89 wxAUI_BUTTON_RIGHT =
108,
90 wxAUI_BUTTON_UP =
109,
91 wxAUI_BUTTON_DOWN =
110,
92 wxAUI_BUTTON_CUSTOM1 =
201,
93 wxAUI_BUTTON_CUSTOM2 =
202,
94 wxAUI_BUTTON_CUSTOM3 =
203
100 \membersection{wxAuiDockArt::wxAuiDockArt
}\label{wxauidockartwxauidockart
}
102 \func{}{wxAuiDockArt
}{\void}
106 \membersection{wxAuiDockArt::
\destruct{wxAuiDockArt
}}\label{wxauidockartdtor
}
108 \func{}{\destruct{wxAuiDockArt
}}{\void}
112 \membersection{wxAuiDockArt::DrawBackground
}\label{wxauidockartdrawbackground
}
114 \func{virtual void
}{DrawBackground
}{\param{wxDC\&
}{dc
},
\param{wxWindow*
}{window
},
\param{int
}{orientation
},
\param{const wxRect\&
}{rect
}}
118 \membersection{wxAuiDockArt::DrawBorder
}\label{wxauidockartdrawborder
}
120 \func{virtual void
}{DrawBorder
}{\param{wxDC\&
}{dc
},
\param{wxWindow*
}{window
},
\param{const wxRect\&
}{rect
},
\param{wxAuiPaneInfo\&
}{pane
}}
124 \membersection{wxAuiDockArt::DrawCaption
}\label{wxauidockartdrawcaption
}
126 \func{virtual void
}{DrawCaption
}{\param{wxDC\&
}{dc
},
\param{wxWindow*
}{window
},
\param{const wxString\&
}{text
},
\param{const wxRect\&
}{rect
},
\param{wxAuiPaneInfo\&
}{pane
}}
130 \membersection{wxAuiDockArt::DrawGripper
}\label{wxauidockartdrawgripper
}
132 \func{virtual void
}{DrawGripper
}{\param{wxDC\&
}{dc
},
\param{wxWindow*
}{window
},
\param{const wxRect\&
}{rect
},
\param{wxAuiPaneInfo\&
}{pane
}}
136 \membersection{wxAuiDockArt::DrawPaneButton
}\label{wxauidockartdrawpanebutton
}
138 \func{virtual void
}{DrawPaneButton
}{\param{wxDC\&
}{dc
},
\param{wxWindow*
}{window
},
\param{int
}{button
},
\param{int
}{button
\_state},
\param{const wxRect\&
}{rect
},
\param{wxAuiPaneInfo\&
}{pane
}}
140 Draws a button in the pane's title bar.
142 {\it button
} can be one of the values of
{\bf wxAuiButtonId
}.
144 {\it button
\_state} can be one of the values of
{\bf wxAuiPaneButtonState
}.
146 \membersection{wxAuiDockArt::DrawSash
}\label{wxauidockartdrawsash
}
148 \func{virtual void
}{DrawSash
}{\param{wxDC\&
}{dc
},
\param{wxWindow*
}{window
},
\param{int
}{orientation
},
\param{const wxRect\&
}{rect
}}
150 Draws a sash between two windows.
152 \membersection{wxAuiDockArt::GetColor
}\label{wxauidockartgetcolor
}
154 \func{virtual wxColour
}{GetColor
}{\param{int
}{id
}}
156 The same as
\helpref{GetColour
}{wxauidockartgetcolour
}.
158 \membersection{wxAuiDockArt::GetColour
}\label{wxauidockartgetcolour
}
160 \func{virtual wxColour
}{GetColour
}{\param{int
}{id
}}
162 Get the colour of a certain setting.
164 {\it id
} can be one of the colour values of
{\bf wxAuiPaneDockArtSetting
}.
167 \membersection{wxAuiDockArt::GetFont
}\label{wxauidockartgetfont
}
169 \func{virtual wxFont
}{GetFont
}{\param{int
}{id
}}
173 \membersection{wxAuiDockArt::GetMetric
}\label{wxauidockartgetmetric
}
175 \func{virtual int
}{GetMetric
}{\param{int
}{id
}}
177 Get the value of a certain setting.
179 {\it id
} can be one of the size values of
{\bf wxAuiPaneDockArtSetting
}.
182 \membersection{wxAuiDockArt::SetColor
}\label{wxauidockartsetcolor
}
184 \func{virtual void
}{SetColor
}{\param{int
}{id
},
\param{const wxColour\&
}{color}}
186 The same as
\helpref{SetColour
}{wxauidockartsetcolour
}.
188 \membersection{wxAuiDockArt::SetColour
}\label{wxauidockartsetcolour
}
190 \func{virtual void
}{SetColour
}{\param{int
}{id
},
\param{const wxColor\&
}{colour
}}
192 Set a certain setting with the value
{\it colour
}.
194 {\it id
} can be one of the colour values of
{\bf wxAuiPaneDockArtSetting
}.
196 \membersection{wxAuiDockArt::SetFont
}\label{wxauidockartsetfont
}
198 \func{virtual void
}{SetFont
}{\param{int
}{id
},
\param{const wxFont\&
}{font
}}
202 \membersection{wxAuiDockArt::SetMetric
}\label{wxauidockartsetmetric
}
204 \func{virtual void
}{SetMetric
}{\param{int
}{id
},
\param{int
}{new
\_val}}
206 Set a certain setting with the value
{\it new
\_val}.
208 {\it id
} can be one of the size values of
{\bf wxAuiPaneDockArtSetting
}.