1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Generic tabbed dialogs
4 // Author: Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "tabg.h"
19 #define WXTAB_VERSION 1.1
22 #include "wx/string.h"
23 #include "wx/dialog.h"
25 class WXDLLEXPORT wxTabView
;
28 * A wxTabControl is the internal and visual representation
32 class WXDLLEXPORT wxTabControl
: public wxObject
34 DECLARE_DYNAMIC_CLASS(wxTabControl
)
36 wxTabControl(wxTabView
*v
= (wxTabView
*) NULL
);
39 virtual void OnDraw(wxDC
& dc
, bool lastInRow
);
40 void SetLabel(const wxString
& str
) { m_controlLabel
= str
; }
41 wxString
GetLabel(void) const { return m_controlLabel
; }
43 void SetFont(const wxFont
& f
) { m_labelFont
= f
; }
44 wxFont
*GetFont(void) const { return (wxFont
*) & m_labelFont
; }
46 void SetSelected(bool sel
) { m_isSelected
= sel
; }
47 bool IsSelected(void) const { return m_isSelected
; }
49 void SetPosition(int x
, int y
) { m_offsetX
= x
; m_offsetY
= y
; }
50 void SetSize(int x
, int y
) { m_width
= x
; m_height
= y
; }
52 void SetRowPosition(int r
) { m_rowPosition
= r
; }
53 int GetRowPosition() const { return m_rowPosition
; }
54 void SetColPosition(int c
) { m_colPosition
= c
; }
55 int GetColPosition() const { return m_colPosition
; }
57 int GetX(void) const { return m_offsetX
; }
58 int GetY(void) const { return m_offsetY
; }
59 int GetWidth(void) const { return m_width
; }
60 int GetHeight(void) const { return m_height
; }
62 int GetId(void) const { return m_id
; }
63 void SetId(int i
) { m_id
= i
; }
65 virtual bool HitTest(int x
, int y
) const ;
69 wxString m_controlLabel
;
72 int m_offsetX
; // Offsets from top-left of tab view area (the area below the tabs)
77 int m_rowPosition
; // Position in row from 0
78 int m_colPosition
; // Position in col from 0
82 * Each wxTabLayer is a list of tabs. E.g. there
83 * are 3 layers in the MS Word Options dialog.
86 class WXDLLEXPORT wxTabLayer
: public wxList
88 DECLARE_DYNAMIC_CLASS(wxTabLayer
)
92 * The wxTabView controls and draws the tabbed object
95 #define wxTAB_STYLE_DRAW_BOX 1 // Draws 3D boxes round tab layers
96 #define wxTAB_STYLE_COLOUR_INTERIOR 2 // Colours interior of tabs, otherwise draws outline
98 class WXDLLEXPORT wxTabView
: public wxObject
100 DECLARE_DYNAMIC_CLASS(wxTabView
)
102 wxTabView(long style
= wxTAB_STYLE_DRAW_BOX
| wxTAB_STYLE_COLOUR_INTERIOR
);
105 inline int GetNumberOfLayers() const { return m_layers
.Number(); }
106 inline wxList
& GetLayers() { return m_layers
; }
108 inline void SetWindow(wxWindow
* wnd
) { m_window
= wnd
; }
109 inline wxWindow
* GetWindow(void) const { return m_window
; }
111 // Automatically positions tabs
112 wxTabControl
*AddTab(int id
, const wxString
& label
, wxTabControl
*existingTab
= (wxTabControl
*) NULL
);
114 // Remove the tab without deleting the window
115 bool RemoveTab(int id
);
117 void ClearTabs(bool deleteTabs
= TRUE
);
119 bool SetTabText(int id
, const wxString
& label
);
120 wxString
GetTabText(int id
) const;
122 // Layout tabs (optional, e.g. if resizing window)
126 virtual void Draw(wxDC
& dc
);
128 // Process mouse event, return FALSE if we didn't process it
129 virtual bool OnEvent(wxMouseEvent
& event
);
131 // Called when a tab is activated
132 virtual void OnTabActivate(int activateId
, int deactivateId
);
134 virtual bool OnTabPreActivate(int WXUNUSED(activateId
), int WXUNUSED(deactivateId
) ) { return TRUE
; };
136 // Allows use of application-supplied wxTabControl classes.
137 virtual wxTabControl
*OnCreateTabControl(void) { return new wxTabControl(this); }
139 void SetHighlightColour(const wxColour
& col
);
140 void SetShadowColour(const wxColour
& col
);
141 void SetBackgroundColour(const wxColour
& col
);
142 inline void SetTextColour(const wxColour
& col
) { m_textColour
= col
; }
144 inline wxColour
GetHighlightColour(void) const { return m_highlightColour
; }
145 inline wxColour
GetShadowColour(void) const { return m_shadowColour
; }
146 inline wxColour
GetBackgroundColour(void) const { return m_backgroundColour
; }
147 inline wxColour
GetTextColour(void) const { return m_textColour
; }
148 inline wxPen
*GetHighlightPen(void) const { return m_highlightPen
; }
149 inline wxPen
*GetShadowPen(void) const { return m_shadowPen
; }
150 inline wxPen
*GetBackgroundPen(void) const { return m_backgroundPen
; }
151 inline wxBrush
*GetBackgroundBrush(void) const { return m_backgroundBrush
; }
153 inline void SetViewRect(const wxRect
& rect
) { m_tabViewRect
= rect
; }
154 inline wxRect
GetViewRect(void) const { return m_tabViewRect
; }
156 // Calculate tab width to fit to view, and optionally adjust the view
157 // to fit the tabs exactly.
158 int CalculateTabWidth(int noTabs
, bool adjustView
= FALSE
);
160 inline void SetTabStyle(long style
) { m_tabStyle
= style
; }
161 inline long GetTabStyle(void) const { return m_tabStyle
; }
163 inline void SetTabSize(int w
, int h
) { m_tabWidth
= w
; m_tabHeight
= h
; }
164 inline int GetTabWidth(void) const { return m_tabWidth
; }
165 inline int GetTabHeight(void) const { return m_tabHeight
; }
166 inline void SetTabSelectionHeight(int h
) { m_tabSelectionHeight
= h
; }
167 inline int GetTabSelectionHeight(void) const { return m_tabSelectionHeight
; }
169 // Returns the total height of the tabs component -- this may be several
170 // times the height of a tab, if there are several tab layers (rows).
171 int GetTotalTabHeight();
173 inline int GetTopMargin(void) const { return m_topMargin
; }
174 inline void SetTopMargin(int margin
) { m_topMargin
= margin
; }
176 void SetTabSelection(int sel
, bool activateTool
= TRUE
);
177 inline int GetTabSelection() const { return m_tabSelection
; }
179 // Find tab control for id
180 wxTabControl
*FindTabControlForId(int id
) const ;
182 // Find tab control for layer, position (starting from zero)
183 wxTabControl
*FindTabControlForPosition(int layer
, int position
) const ;
185 inline int GetHorizontalTabOffset() const { return m_tabHorizontalOffset
; }
186 inline int GetHorizontalTabSpacing() const { return m_tabHorizontalSpacing
; }
187 inline void SetHorizontalTabOffset(int sp
) { m_tabHorizontalOffset
= sp
; }
188 inline void SetHorizontalTabSpacing(int sp
) { m_tabHorizontalSpacing
= sp
; }
190 inline void SetVerticalTabTextSpacing(int s
) { m_tabVerticalTextSpacing
= s
; }
191 inline int GetVerticalTabTextSpacing() const { return m_tabVerticalTextSpacing
; }
193 inline wxFont
*GetTabFont() const { return (wxFont
*) & m_tabFont
; }
194 inline void SetTabFont(const wxFont
& f
) { m_tabFont
= f
; }
196 inline wxFont
*GetSelectedTabFont() const { return (wxFont
*) & m_tabSelectedFont
; }
197 inline void SetSelectedTabFont(const wxFont
& f
) { m_tabSelectedFont
= f
; }
198 // Find the node and the column at which this control is positioned.
199 wxNode
*FindTabNodeAndColumn(wxTabControl
*control
, int *col
) const ;
201 // Do the necessary to change to this tab
202 virtual bool ChangeTab(wxTabControl
*control
);
204 // Move the selected tab to the bottom layer, if necessary,
205 // without calling app activation code
206 bool MoveSelectionTab(wxTabControl
*control
);
208 inline int GetNumberOfTabs() const { return m_noTabs
; }
211 // List of layers, from front to back.
220 // The height of the selected tab
221 int m_tabSelectionHeight
;
226 // Space between tabs
227 int m_tabHorizontalSpacing
;
229 // Space between top of normal tab and text
230 int m_tabVerticalTextSpacing
;
232 // Horizontal offset of each tab row above the first
233 int m_tabHorizontalOffset
;
235 // The distance between the bottom of the first tab row
236 // and the top of the client area (i.e. the margin)
239 // The position and size of the view above which the tabs are placed.
240 // I.e., the internal client area of the sheet.
241 wxRect m_tabViewRect
;
247 wxColour m_highlightColour
;
248 wxColour m_shadowColour
;
249 wxColour m_backgroundColour
;
250 wxColour m_textColour
;
252 // Pen and brush cache
253 wxPen
* m_highlightPen
;
255 wxPen
* m_backgroundPen
;
256 wxBrush
* m_backgroundBrush
;
259 wxFont m_tabSelectedFont
;
267 * A dialog box class that is tab-friendly
270 class WXDLLEXPORT wxTabbedDialog
: public wxDialog
272 DECLARE_DYNAMIC_CLASS(wxTabbedDialog
)
276 wxTabbedDialog(wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
277 const wxPoint
& pos
= wxDefaultPosition
,
278 const wxSize
& size
= wxDefaultSize
,
279 long windowStyle
= wxDEFAULT_DIALOG_STYLE
, const wxString
& name
= wxDialogNameStr
);
280 ~wxTabbedDialog(void);
282 inline wxTabView
*GetTabView() const { return m_tabView
; }
283 inline void SetTabView(wxTabView
*v
) { m_tabView
= v
; }
285 void OnCloseWindow(wxCloseEvent
& event
);
286 void OnMouseEvent(wxMouseEvent
& event
);
287 void OnPaint(wxPaintEvent
& event
);
290 wxTabView
* m_tabView
;
292 DECLARE_EVENT_TABLE()
296 * A panel class that is tab-friendly
299 class WXDLLEXPORT wxTabbedPanel
: public wxPanel
301 DECLARE_DYNAMIC_CLASS(wxTabbedPanel
)
305 wxTabbedPanel(wxWindow
*parent
, wxWindowID id
,
306 const wxPoint
& pos
= wxDefaultPosition
,
307 const wxSize
& size
= wxDefaultSize
,
308 long windowStyle
= 0, const wxString
& name
= wxPanelNameStr
);
309 ~wxTabbedPanel(void);
311 inline wxTabView
*GetTabView() const { return m_tabView
; }
312 inline void SetTabView(wxTabView
*v
) { m_tabView
= v
; }
314 void OnMouseEvent(wxMouseEvent
& event
);
315 void OnPaint(wxPaintEvent
& event
);
318 wxTabView
* m_tabView
;
320 DECLARE_EVENT_TABLE()
323 class WXDLLEXPORT wxPanelTabView
: public wxTabView
325 DECLARE_DYNAMIC_CLASS(wxPanelTabView
)
327 wxPanelTabView(wxPanel
*pan
, long style
= wxTAB_STYLE_DRAW_BOX
| wxTAB_STYLE_COLOUR_INTERIOR
);
328 ~wxPanelTabView(void);
330 // Called when a tab is activated
331 virtual void OnTabActivate(int activateId
, int deactivateId
);
333 // Specific to this class
334 void AddTabWindow(int id
, wxWindow
*window
);
335 wxWindow
*GetTabWindow(int id
) const ;
336 void ClearWindows(bool deleteWindows
= TRUE
);
337 inline wxWindow
*GetCurrentWindow() const { return m_currentWindow
; }
339 void ShowWindowForTab(int id
);
340 inline wxList
& GetWindows() const { return (wxList
&) m_tabWindows
; }
343 // List of panels, one for each tab. Indexed
346 wxWindow
* m_currentWindow
;