]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/auidockart.tex
make XPM data pointer parameter fully const
[wxWidgets.git] / docs / latex / wx / auidockart.tex
1 %
2 % automatically generated by HelpGen $Revision$ from
3 % dockart.h at 04/Nov/06 21:54:42
4 %
5
6 \section{\class{wxAuiDockArt}}\label{wxauidockart}
7
8 wxAuiDockArt is part of the wxAUI class framework.
9 See also \helpref{wxAUI overview}{wxauioverview}.
10
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.
14
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.
22
23 \wxheading{Derived from}
24
25 No base class
26
27 \wxheading{Include files}
28
29 <wx/aui/dockart.h>
30
31 \wxheading{Library}
32
33 \helpref{wxAui}{librarieslist}
34
35 \wxheading{See also}
36
37 \helpref{wxAuiManager}{wxauimanager},
38 \helpref{wxAuiPaneInfo}{wxauipaneinfo}
39
40 \wxheading{Data structures}
41
42 \begin{verbatim}
43 enum wxAuiPaneDockArtSetting
44 {
45 wxAUI_DOCKART_SASH_SIZE = 0,
46 wxAUI_DOCKART_CAPTION_SIZE = 1,
47 wxAUI_DOCKART_GRIPPER_SIZE = 2,
48 wxAUI_DOCKART_PANE_BORDER_SIZE = 3,
49 wxAUI_DOCKART_PANE_BUTTON_SIZE = 4,
50 wxAUI_DOCKART_BACKGROUND_COLOUR = 5,
51 wxAUI_DOCKART_SASH_COLOUR = 6,
52 wxAUI_DOCKART_ACTIVE_CAPTION_COLOUR = 7,
53 wxAUI_DOCKART_ACTIVE_CAPTION_GRADIENT_COLOUR = 8,
54 wxAUI_DOCKART_INACTIVE_CAPTION_COLOUR = 9,
55 wxAUI_DOCKART_INACTIVE_CAPTION_GRADIENT_COLOUR = 10,
56 wxAUI_DOCKART_ACTIVE_CAPTION_TEXT_COLOUR = 11,
57 wxAUI_DOCKART_INACTIVE_CAPTION_TEXT_COLOUR = 12,
58 wxAUI_DOCKART_BORDER_COLOUR = 13,
59 wxAUI_DOCKART_GRIPPER_COLOUR = 14,
60 wxAUI_DOCKART_CAPTION_FONT = 15,
61 wxAUI_DOCKART_GRADIENT_TYPE = 16
62 }
63 \end{verbatim}
64
65 \begin{verbatim}
66 enum wxAuiPaneDockArtGradients
67 {
68 wxAUI_GRADIENT_NONE = 0,
69 wxAUI_GRADIENT_VERTICAL = 1,
70 wxAUI_GRADIENT_HORIZONTAL = 2
71 }
72 \end{verbatim}
73
74 \begin{verbatim}
75 enum wxAuiPaneButtonState
76 {
77 wxAUI_BUTTON_STATE_NORMAL = 0,
78 wxAUI_BUTTON_STATE_HOVER = 1,
79 wxAUI_BUTTON_STATE_PRESSED = 2
80 }
81 \end{verbatim}
82
83 \begin{verbatim}
84 enum wxAuiButtonId
85 {
86 wxAUI_BUTTON_CLOSE = 101,
87 wxAUI_BUTTON_MAXIMIZE_RESTORE = 102,
88 wxAUI_BUTTON_MINIMIZE = 103,
89 wxAUI_BUTTON_PIN = 104,
90 wxAUI_BUTTON_OPTIONS = 105,
91 wxAUI_BUTTON_WINDOWLIST = 106,
92 wxAUI_BUTTON_LEFT = 107,
93 wxAUI_BUTTON_RIGHT = 108,
94 wxAUI_BUTTON_UP = 109,
95 wxAUI_BUTTON_DOWN = 110,
96 wxAUI_BUTTON_CUSTOM1 = 201,
97 wxAUI_BUTTON_CUSTOM2 = 202,
98 wxAUI_BUTTON_CUSTOM3 = 203
99 };
100 \end{verbatim}
101
102
103 \latexignore{\rtfignore{\wxheading{Members}}}
104
105 \membersection{wxAuiDockArt::wxAuiDockArt}\label{wxauidockartwxauidockart}
106
107 \func{}{wxAuiDockArt}{\void}
108
109 Constructor.
110
111 \membersection{wxAuiDockArt::\destruct{wxAuiDockArt}}\label{wxauidockartdtor}
112
113 \func{}{\destruct{wxAuiDockArt}}{\void}
114
115 Destructor.
116
117 \membersection{wxAuiDockArt::DrawBackground}\label{wxauidockartdrawbackground}
118
119 \func{virtual void}{DrawBackground}{\param{wxDC\& }{dc}, \param{wxWindow* }{window}, \param{int }{orientation}, \param{const wxRect\& }{rect}}
120
121 Draws a background.
122
123 \membersection{wxAuiDockArt::DrawBorder}\label{wxauidockartdrawborder}
124
125 \func{virtual void}{DrawBorder}{\param{wxDC\& }{dc}, \param{wxWindow* }{window}, \param{const wxRect\& }{rect}, \param{wxAuiPaneInfo\& }{pane}}
126
127 Draws a border.
128
129 \membersection{wxAuiDockArt::DrawCaption}\label{wxauidockartdrawcaption}
130
131 \func{virtual void}{DrawCaption}{\param{wxDC\& }{dc}, \param{wxWindow* }{window}, \param{const wxString\& }{text}, \param{const wxRect\& }{rect}, \param{wxAuiPaneInfo\& }{pane}}
132
133 Draws a caption.
134
135 \membersection{wxAuiDockArt::DrawGripper}\label{wxauidockartdrawgripper}
136
137 \func{virtual void}{DrawGripper}{\param{wxDC\& }{dc}, \param{wxWindow* }{window}, \param{const wxRect\& }{rect}, \param{wxAuiPaneInfo\& }{pane}}
138
139 Draws a gripper.
140
141 \membersection{wxAuiDockArt::DrawPaneButton}\label{wxauidockartdrawpanebutton}
142
143 \func{virtual void}{DrawPaneButton}{\param{wxDC\& }{dc}, \param{wxWindow* }{window}, \param{int }{button}, \param{int }{button\_state}, \param{const wxRect\& }{rect}, \param{wxAuiPaneInfo\& }{pane}}
144
145 Draws a button in the pane's title bar.
146
147 {\it button} can be one of the values of {\bf wxAuiButtonId}.
148
149 {\it button\_state} can be one of the values of {\bf wxAuiPaneButtonState}.
150
151 \membersection{wxAuiDockArt::DrawSash}\label{wxauidockartdrawsash}
152
153 \func{virtual void}{DrawSash}{\param{wxDC\& }{dc}, \param{wxWindow* }{window}, \param{int }{orientation}, \param{const wxRect\& }{rect}}
154
155 Draws a sash between two windows.
156
157 \membersection{wxAuiDockArt::GetColor}\label{wxauidockartgetcolor}
158
159 \func{virtual wxColour}{GetColor}{\param{int }{id}}
160
161 The same as \helpref{GetColour}{wxauidockartgetcolour}.
162
163 \membersection{wxAuiDockArt::GetColour}\label{wxauidockartgetcolour}
164
165 \func{virtual wxColour}{GetColour}{\param{int }{id}}
166
167 Get the colour of a certain setting.
168
169 {\it id} can be one of the colour values of {\bf wxAuiPaneDockArtSetting}.
170
171
172 \membersection{wxAuiDockArt::GetFont}\label{wxauidockartgetfont}
173
174 \func{virtual wxFont}{GetFont}{\param{int }{id}}
175
176 Get a font setting.
177
178 \membersection{wxAuiDockArt::GetMetric}\label{wxauidockartgetmetric}
179
180 \func{virtual int}{GetMetric}{\param{int }{id}}
181
182 Get the value of a certain setting.
183
184 {\it id} can be one of the size values of {\bf wxAuiPaneDockArtSetting}.
185
186
187 \membersection{wxAuiDockArt::SetColor}\label{wxauidockartsetcolor}
188
189 \func{virtual void}{SetColor}{\param{int }{id}, \param{const wxColour\& }{color}}
190
191 The same as \helpref{SetColour}{wxauidockartsetcolour}.
192
193 \membersection{wxAuiDockArt::SetColour}\label{wxauidockartsetcolour}
194
195 \func{virtual void}{SetColour}{\param{int }{id}, \param{const wxColor\& }{colour}}
196
197 Set a certain setting with the value {\it colour}.
198
199 {\it id} can be one of the colour values of {\bf wxAuiPaneDockArtSetting}.
200
201 \membersection{wxAuiDockArt::SetFont}\label{wxauidockartsetfont}
202
203 \func{virtual void}{SetFont}{\param{int }{id}, \param{const wxFont\& }{font}}
204
205 Set a font setting.
206
207 \membersection{wxAuiDockArt::SetMetric}\label{wxauidockartsetmetric}
208
209 \func{virtual void}{SetMetric}{\param{int }{id}, \param{int }{new\_val}}
210
211 Set a certain setting with the value {\it new\_val}.
212
213 {\it id} can be one of the size values of {\bf wxAuiPaneDockArtSetting}.
214