1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSplitterWindow class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __SPLITTERH_G__
13 #define __SPLITTERH_G__
16 #pragma interface "splitter.h"
19 #include "wx/window.h" // base class declaration
21 class WXDLLEXPORT wxSplitterEvent
;
23 // ---------------------------------------------------------------------------
25 // ---------------------------------------------------------------------------
29 wxSPLIT_HORIZONTAL
= 1,
36 wxSPLIT_DRAG_DRAGGING
,
37 wxSPLIT_DRAG_LEFT_DOWN
40 // ---------------------------------------------------------------------------
41 // wxSplitterWindow maintains one or two panes, with
42 // an optional vertical or horizontal split which
43 // can be used with the mouse or programmatically.
44 // ---------------------------------------------------------------------------
47 // 1) Perhaps make the borders sensitive to dragging in order to create a split.
48 // The MFC splitter window manages scrollbars as well so is able to
49 // put sash buttons on the scrollbars, but we probably don't want to go down
51 // 2) for wxWindows 2.0, we must find a way to set the WS_CLIPCHILDREN style
52 // to prevent flickering. (WS_CLIPCHILDREN doesn't work in all cases so can't be
55 class WXDLLEXPORT wxSplitterWindow
: public wxWindow
59 ////////////////////////////////////////////////////////////////////////////
62 // Default constructor
66 wxSplitterWindow(wxWindow
*parent
, wxWindowID id
= -1,
67 const wxPoint
& pos
= wxDefaultPosition
,
68 const wxSize
& size
= wxDefaultSize
,
69 long style
= wxSP_3D
|wxCLIP_CHILDREN
,
70 const wxString
& name
= "splitter");
73 // Gets the only or left/top pane
74 wxWindow
*GetWindow1() const { return m_windowOne
; }
76 // Gets the right/bottom pane
77 wxWindow
*GetWindow2() const { return m_windowTwo
; }
79 // Sets the split mode
80 void SetSplitMode(int mode
) { m_splitMode
= mode
; }
82 // Gets the split mode
83 int GetSplitMode() const { return m_splitMode
; };
85 // Initialize with one window
86 void Initialize(wxWindow
*window
);
88 // Associates the given window with window 2, drawing the appropriate sash
89 // and changing the split mode.
90 // Does nothing and returns FALSE if the window is already split.
91 // A sashPosition of 0 means choose a default sash position,
92 // negative sashPosition specifies the size of right/lower pane as it's
93 // absolute value rather than the size of left/upper pane.
94 virtual bool SplitVertically(wxWindow
*window1
,
96 int sashPosition
= 0);
97 virtual bool SplitHorizontally(wxWindow
*window1
,
99 int sashPosition
= 0);
101 // Removes the specified (or second) window from the view
102 // Doesn't actually delete the window.
103 bool Unsplit(wxWindow
*toRemove
= (wxWindow
*) NULL
);
105 // Replaces one of the windows with another one (neither old nor new
106 // parameter should be NULL)
107 bool ReplaceWindow(wxWindow
*winOld
, wxWindow
*winNew
);
109 // Is the window split?
110 bool IsSplit() const { return (m_windowTwo
!= NULL
); }
112 // Sets the sash size
113 void SetSashSize(int width
) { m_sashSize
= width
; }
115 // Sets the border size
116 void SetBorderSize(int width
) { m_borderSize
= width
; }
118 // Gets the sash size
119 int GetSashSize() const { return m_sashSize
; }
121 // Gets the border size
122 int GetBorderSize() const { return m_borderSize
; }
124 // Set the sash position
125 void SetSashPosition(int position
, bool redraw
= TRUE
);
127 // Gets the sash position
128 int GetSashPosition() const { return m_sashPosition
; }
130 // If this is zero, we can remove panes by dragging the sash.
131 void SetMinimumPaneSize(int min
) { m_minimumPaneSize
= min
; }
132 int GetMinimumPaneSize() const { return m_minimumPaneSize
; }
134 // Called when the sash position is about to be changed, return
135 // FALSE from here to prevent the change from taking place.
136 // Repositions sash to minimum position if pane would be too small.
137 // newSashPosition here is always positive or zero.
138 virtual bool OnSashPositionChange(int WXUNUSED(newSashPosition
))
141 // If the sash is moved to an extreme position, a subwindow
142 // is removed from the splitter window, and the app is
143 // notified. The app should delete or hide the window.
144 virtual void OnUnsplit(wxWindow
*WXUNUSED(removed
)) { }
146 // Called when the sash is double-clicked.
147 // The default behaviour is to remove the sash if the
148 // minimum pane size is zero.
149 virtual void OnDoubleClickSash(int WXUNUSED(x
), int WXUNUSED(y
)) { }
151 ////////////////////////////////////////////////////////////////////////////
154 // Paints the border and sash
155 void OnPaint(wxPaintEvent
& event
);
157 // Handles mouse events
158 void OnMouseEvent(wxMouseEvent
& ev
);
161 void OnSize(wxSizeEvent
& event
);
163 // In live mode, resize child windows in idle time
164 void OnIdle(wxIdleEvent
& event
);
167 void DrawBorders(wxDC
& dc
);
170 void DrawSash(wxDC
& dc
);
172 // Draws the sash tracker (for whilst moving the sash)
173 void DrawSashTracker(int x
, int y
);
175 // Tests for x, y over sash
176 bool SashHitTest(int x
, int y
, int tolerance
= 2);
178 // Resizes subwindows
181 // Initialize colours
185 // our event handlers
186 void OnSashPosChanged(wxSplitterEvent
& event
);
187 void OnSashPosChanging(wxSplitterEvent
& event
);
188 void OnDoubleClick(wxSplitterEvent
& event
);
189 void OnUnsplitEvent(wxSplitterEvent
& event
);
191 void SendUnsplitEvent(wxWindow
*winRemoved
);
194 bool m_permitUnsplitAlways
;
195 bool m_needUpdating
; // when in live mode, set the to TRUE to resize children in idle
196 wxWindow
* m_windowOne
;
197 wxWindow
* m_windowTwo
;
202 int m_sashSize
; // Sash width or height
203 int m_sashPosition
; // Number of pixels from left or top
206 int m_minimumPaneSize
;
207 wxCursor
* m_sashCursorWE
;
208 wxCursor
* m_sashCursorNS
;
209 wxPen
* m_sashTrackerPen
;
210 wxPen
* m_lightShadowPen
;
211 wxPen
* m_mediumShadowPen
;
212 wxPen
* m_darkShadowPen
;
214 wxBrush
* m_faceBrush
;
218 DECLARE_DYNAMIC_CLASS(wxSplitterWindow
)
219 DECLARE_EVENT_TABLE()
222 // ----------------------------------------------------------------------------
223 // event class and macros
224 // ----------------------------------------------------------------------------
226 // we reuse the same class for all splitter event types because this is the
227 // usual wxWin convention, but the three event types have different kind of
228 // data associated with them, so the accessors can be only used if the real
229 // event type matches with the one for which the accessors make sense
230 class WXDLLEXPORT wxSplitterEvent
: public wxCommandEvent
233 wxSplitterEvent(wxEventType type
= wxEVT_NULL
,
234 wxSplitterWindow
*splitter
= (wxSplitterWindow
*)NULL
)
235 : wxCommandEvent(type
)
237 SetEventObject(splitter
);
238 if (splitter
) m_id
= splitter
->GetId();
241 // SASH_POS_CHANGED methods
243 // setting the sash position to -1 prevents the change from taking place at
245 void SetSashPosition(int pos
)
247 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
248 || GetEventType() == wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
);
253 int GetSashPosition() const
255 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
256 || GetEventType() == wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
);
261 // UNSPLIT event methods
262 wxWindow
*GetWindowBeingRemoved() const
264 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_UNSPLIT
);
269 // DCLICK event methods
272 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
);
279 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
);
285 friend class WXDLLEXPORT wxSplitterWindow
;
287 // data for the different types of event
290 int pos
; // position for SASH_POS_CHANGED event
291 wxWindow
*win
; // window being removed for UNSPLIT event
295 } pt
; // position of double click for DCLICK event
298 DECLARE_DYNAMIC_CLASS(wxSplitterEvent
)
301 typedef void (wxEvtHandler::*wxSplitterEventFunction
)(wxSplitterEvent
&);
303 #define EVT_SPLITTER_SASH_POS_CHANGED(id, fn) \
305 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, \
308 (wxObjectEventFunction)(wxEventFunction)(wxSplitterEventFunction) &fn, \
312 #define EVT_SPLITTER_SASH_POS_CHANGING(id, fn) \
314 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, \
317 (wxObjectEventFunction)(wxEventFunction)(wxSplitterEventFunction) &fn, \
321 #define EVT_SPLITTER_DCLICK(id, fn) \
323 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, \
326 (wxObjectEventFunction)(wxEventFunction)(wxSplitterEventFunction) &fn, \
330 #define EVT_SPLITTER_UNSPLIT(id, fn) \
332 wxEVT_COMMAND_SPLITTER_UNSPLIT, \
335 (wxObjectEventFunction)(wxEventFunction)(wxSplitterEventFunction) &fn, \
339 #endif // __SPLITTERH_G__