1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSplitterWindow sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
33 #include "wx/scrolwin.h"
36 #include "wx/textdlg.h" // for wxGetTextFromUser
39 #include "wx/splitter.h"
40 #include "wx/dcmirror.h"
43 #include "../sample.xpm"
46 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
50 // ID for the menu commands
66 // ----------------------------------------------------------------------------
68 // ----------------------------------------------------------------------------
70 class MyApp
: public wxApp
75 virtual bool OnInit();
77 wxDECLARE_NO_COPY_CLASS(MyApp
);
80 class MyFrame
: public wxFrame
86 void ToggleFlag(int flag
, bool enable
);
89 void OnSplitHorizontal(wxCommandEvent
& event
);
90 void OnSplitVertical(wxCommandEvent
& event
);
91 void OnUnsplit(wxCommandEvent
& event
);
92 void OnToggleLive(wxCommandEvent
& event
)
93 { ToggleFlag(wxSP_LIVE_UPDATE
, event
.IsChecked()); }
94 void OnToggleBorder(wxCommandEvent
& event
)
95 { ToggleFlag(wxSP_BORDER
, event
.IsChecked()); }
96 void OnToggle3DSash(wxCommandEvent
& event
)
97 { ToggleFlag(wxSP_3DSASH
, event
.IsChecked()); }
98 void OnSetPosition(wxCommandEvent
& event
);
99 void OnSetMinSize(wxCommandEvent
& event
);
100 void OnSetGravity(wxCommandEvent
& event
);
101 void OnReplace(wxCommandEvent
&event
);
103 void OnQuit(wxCommandEvent
& event
);
105 // Menu command update functions
106 void OnUpdateUIHorizontal(wxUpdateUIEvent
& event
);
107 void OnUpdateUIVertical(wxUpdateUIEvent
& event
);
108 void OnUpdateUIUnsplit(wxUpdateUIEvent
& event
);
111 wxScrolledWindow
*m_left
, *m_right
;
113 wxSplitterWindow
* m_splitter
;
114 wxWindow
*m_replacewindow
;
116 DECLARE_EVENT_TABLE()
117 wxDECLARE_NO_COPY_CLASS(MyFrame
);
120 class MySplitterWindow
: public wxSplitterWindow
123 MySplitterWindow(wxFrame
*parent
);
126 void OnPositionChanged(wxSplitterEvent
& event
);
127 void OnPositionChanging(wxSplitterEvent
& event
);
128 void OnDClick(wxSplitterEvent
& event
);
129 void OnUnsplitEvent(wxSplitterEvent
& event
);
134 DECLARE_EVENT_TABLE()
135 wxDECLARE_NO_COPY_CLASS(MySplitterWindow
);
138 class MyCanvas
: public wxScrolledWindow
141 MyCanvas(wxWindow
* parent
, bool mirror
);
142 virtual ~MyCanvas(){};
144 virtual void OnDraw(wxDC
& dc
);
149 wxDECLARE_NO_COPY_CLASS(MyCanvas
);
152 // ============================================================================
154 // ============================================================================
156 // ----------------------------------------------------------------------------
158 // ----------------------------------------------------------------------------
164 if ( !wxApp::OnInit() )
167 // create and show the main frame
168 MyFrame
* frame
= new MyFrame
;
175 // ----------------------------------------------------------------------------
177 // ----------------------------------------------------------------------------
179 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
180 EVT_MENU(SPLIT_VERTICAL
, MyFrame::OnSplitVertical
)
181 EVT_MENU(SPLIT_HORIZONTAL
, MyFrame::OnSplitHorizontal
)
182 EVT_MENU(SPLIT_UNSPLIT
, MyFrame::OnUnsplit
)
183 EVT_MENU(SPLIT_LIVE
, MyFrame::OnToggleLive
)
184 EVT_MENU(SPLIT_BORDER
, MyFrame::OnToggleBorder
)
185 EVT_MENU(SPLIT_3DSASH
, MyFrame::OnToggle3DSash
)
186 EVT_MENU(SPLIT_SETPOSITION
, MyFrame::OnSetPosition
)
187 EVT_MENU(SPLIT_SETMINSIZE
, MyFrame::OnSetMinSize
)
188 EVT_MENU(SPLIT_SETGRAVITY
, MyFrame::OnSetGravity
)
189 EVT_MENU(SPLIT_REPLACE
, MyFrame::OnReplace
)
191 EVT_MENU(SPLIT_QUIT
, MyFrame::OnQuit
)
193 EVT_UPDATE_UI(SPLIT_VERTICAL
, MyFrame::OnUpdateUIVertical
)
194 EVT_UPDATE_UI(SPLIT_HORIZONTAL
, MyFrame::OnUpdateUIHorizontal
)
195 EVT_UPDATE_UI(SPLIT_UNSPLIT
, MyFrame::OnUpdateUIUnsplit
)
198 // My frame constructor
200 : wxFrame(NULL
, wxID_ANY
, wxT("wxSplitterWindow sample"),
201 wxDefaultPosition
, wxSize(420, 300),
202 wxDEFAULT_FRAME_STYLE
| wxNO_FULL_REPAINT_ON_RESIZE
)
204 SetIcon(wxICON(sample
));
208 #endif // wxUSE_STATUSBAR
211 wxMenu
*splitMenu
= new wxMenu
;
212 splitMenu
->Append(SPLIT_VERTICAL
,
213 wxT("Split &Vertically\tCtrl-V"),
214 wxT("Split vertically"));
215 splitMenu
->Append(SPLIT_HORIZONTAL
,
216 wxT("Split &Horizontally\tCtrl-H"),
217 wxT("Split horizontally"));
218 splitMenu
->Append(SPLIT_UNSPLIT
,
219 wxT("&Unsplit\tCtrl-U"),
221 splitMenu
->AppendSeparator();
223 splitMenu
->AppendCheckItem(SPLIT_LIVE
,
224 wxT("&Live update\tCtrl-L"),
225 wxT("Toggle live update mode"));
226 splitMenu
->AppendCheckItem(SPLIT_BORDER
,
228 wxT("Toggle wxSP_BORDER flag"));
229 splitMenu
->Check(SPLIT_BORDER
, true);
230 splitMenu
->AppendCheckItem(SPLIT_3DSASH
,
232 wxT("Toggle wxSP_3DSASH flag"));
233 splitMenu
->Check(SPLIT_3DSASH
, true);
234 splitMenu
->Append(SPLIT_SETPOSITION
,
235 wxT("Set splitter &position\tCtrl-P"),
236 wxT("Set the splitter position"));
237 splitMenu
->Append(SPLIT_SETMINSIZE
,
238 wxT("Set &min size\tCtrl-M"),
239 wxT("Set minimum pane size"));
240 splitMenu
->Append(SPLIT_SETGRAVITY
,
241 wxT("Set &gravity\tCtrl-G"),
242 wxT("Set gravity of sash"));
243 splitMenu
->AppendSeparator();
245 splitMenu
->Append(SPLIT_REPLACE
,
246 wxT("&Replace right window"),
247 wxT("Replace right window"));
248 splitMenu
->AppendSeparator();
250 splitMenu
->Append(SPLIT_QUIT
, wxT("E&xit\tAlt-X"), wxT("Exit"));
252 wxMenuBar
*menuBar
= new wxMenuBar
;
253 menuBar
->Append(splitMenu
, wxT("&Splitter"));
257 menuBar
->Check(SPLIT_LIVE
, true);
258 m_splitter
= new MySplitterWindow(this);
260 m_splitter
->SetSashGravity(1.0);
263 m_left
= new MyCanvas(m_splitter
, true);
264 m_left
->SetBackgroundColour(*wxRED
);
265 m_left
->SetScrollbars(20, 20, 5, 5);
266 m_left
->SetCursor(wxCursor(wxCURSOR_MAGNIFIER
));
268 m_right
= new MyCanvas(m_splitter
, false);
269 m_right
->SetBackgroundColour(*wxCYAN
);
270 m_right
->SetScrollbars(20, 20, 5, 5);
271 #else // for testing kbd navigation inside the splitter
272 m_left
= new wxTextCtrl(m_splitter
, wxID_ANY
, wxT("first text"));
273 m_right
= new wxTextCtrl(m_splitter
, wxID_ANY
, wxT("second text"));
276 // you can also do this to start with a single window
278 m_right
->Show(false);
279 m_splitter
->Initialize(m_left
);
281 // you can also try -100
282 m_splitter
->SplitVertically(m_left
, m_right
, 100);
286 SetStatusText(wxT("Min pane size = 0"), 1);
287 #endif // wxUSE_STATUSBAR
289 m_replacewindow
= NULL
;
294 if (m_replacewindow
) {
295 m_replacewindow
->Destroy();
299 // menu command handlers
301 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
) )
306 void MyFrame::OnSplitHorizontal(wxCommandEvent
& WXUNUSED(event
) )
308 if ( m_splitter
->IsSplit() )
309 m_splitter
->Unsplit();
312 m_splitter
->SplitHorizontally( m_left
, m_right
);
313 m_replacewindow
= NULL
;
316 SetStatusText(wxT("Splitter split horizontally"), 1);
317 #endif // wxUSE_STATUSBAR
320 void MyFrame::OnSplitVertical(wxCommandEvent
& WXUNUSED(event
) )
322 if ( m_splitter
->IsSplit() )
323 m_splitter
->Unsplit();
326 m_splitter
->SplitVertically( m_left
, m_right
);
327 m_replacewindow
= NULL
;
330 SetStatusText(wxT("Splitter split vertically"), 1);
331 #endif // wxUSE_STATUSBAR
334 void MyFrame::OnUnsplit(wxCommandEvent
& WXUNUSED(event
) )
336 if ( m_splitter
->IsSplit() )
337 m_splitter
->Unsplit();
339 SetStatusText(wxT("No splitter"));
340 #endif // wxUSE_STATUSBAR
343 void MyFrame::ToggleFlag(int flag
, bool enable
)
345 long style
= m_splitter
->GetWindowStyleFlag();
351 m_splitter
->SetWindowStyleFlag(style
);
353 // we need to move sash to redraw it
354 int pos
= m_splitter
->GetSashPosition();
355 m_splitter
->SetSashPosition(pos
+ 1);
356 m_splitter
->SetSashPosition(pos
);
359 void MyFrame::OnSetPosition(wxCommandEvent
& WXUNUSED(event
) )
362 str
.Printf( wxT("%d"), m_splitter
->GetSashPosition());
364 str
= wxGetTextFromUser(wxT("Enter splitter position:"), wxT(""), str
, this);
370 if ( !str
.ToLong(&pos
) )
372 wxLogError(wxT("The splitter position should be an integer."));
376 m_splitter
->SetSashPosition(pos
);
378 wxLogStatus(this, wxT("Splitter position set to %ld"), pos
);
381 void MyFrame::OnSetMinSize(wxCommandEvent
& WXUNUSED(event
) )
384 str
.Printf( wxT("%d"), m_splitter
->GetMinimumPaneSize());
386 str
= wxGetTextFromUser(wxT("Enter minimal size for panes:"), wxT(""), str
, this);
391 int minsize
= wxStrtol( str
, (wxChar
**)NULL
, 10 );
392 m_splitter
->SetMinimumPaneSize(minsize
);
394 str
.Printf( wxT("Min pane size = %d"), minsize
);
395 SetStatusText(str
, 1);
396 #endif // wxUSE_STATUSBAR
399 void MyFrame::OnSetGravity(wxCommandEvent
& WXUNUSED(event
) )
402 str
.Printf( wxT("%g"), m_splitter
->GetSashGravity());
404 str
= wxGetTextFromUser(wxT("Enter sash gravity (0,1):"), wxT(""), str
, this);
409 double gravity
= wxStrtod( str
, (wxChar
**)NULL
);
410 m_splitter
->SetSashGravity(gravity
);
412 str
.Printf( wxT("Gravity = %g"), gravity
);
413 SetStatusText(str
, 1);
414 #endif // wxUSE_STATUSBAR
417 void MyFrame::OnReplace(wxCommandEvent
& WXUNUSED(event
) )
419 if (m_replacewindow
== NULL
) {
420 m_replacewindow
= m_splitter
->GetWindow2();
421 m_splitter
->ReplaceWindow(m_replacewindow
, new wxPanel(m_splitter
, wxID_ANY
));
422 m_replacewindow
->Hide();
424 wxWindow
*empty
= m_splitter
->GetWindow2();
425 wxASSERT(empty
!= m_replacewindow
);
426 m_splitter
->ReplaceWindow(empty
, m_replacewindow
);
427 m_replacewindow
->Show();
428 m_replacewindow
= NULL
;
433 // Update UI handlers
435 void MyFrame::OnUpdateUIHorizontal(wxUpdateUIEvent
& event
)
437 event
.Enable( (!m_splitter
->IsSplit()) || (m_splitter
->GetSplitMode() != wxSPLIT_HORIZONTAL
) );
440 void MyFrame::OnUpdateUIVertical(wxUpdateUIEvent
& event
)
442 event
.Enable( ( (!m_splitter
->IsSplit()) || (m_splitter
->GetSplitMode() != wxSPLIT_VERTICAL
) ) );
445 void MyFrame::OnUpdateUIUnsplit(wxUpdateUIEvent
& event
)
447 event
.Enable( m_splitter
->IsSplit() );
450 // ----------------------------------------------------------------------------
452 // ----------------------------------------------------------------------------
454 BEGIN_EVENT_TABLE(MySplitterWindow
, wxSplitterWindow
)
455 EVT_SPLITTER_SASH_POS_CHANGED(wxID_ANY
, MySplitterWindow::OnPositionChanged
)
456 EVT_SPLITTER_SASH_POS_CHANGING(wxID_ANY
, MySplitterWindow::OnPositionChanging
)
458 EVT_SPLITTER_DCLICK(wxID_ANY
, MySplitterWindow::OnDClick
)
460 EVT_SPLITTER_UNSPLIT(wxID_ANY
, MySplitterWindow::OnUnsplitEvent
)
463 MySplitterWindow::MySplitterWindow(wxFrame
*parent
)
464 : wxSplitterWindow(parent
, wxID_ANY
,
465 wxDefaultPosition
, wxDefaultSize
,
466 wxSP_3D
| wxSP_LIVE_UPDATE
|
467 wxCLIP_CHILDREN
/* | wxSP_NO_XP_THEME */ )
472 void MySplitterWindow::OnPositionChanged(wxSplitterEvent
& event
)
474 wxLogStatus(m_frame
, wxT("Position has changed, now = %d (or %d)"),
475 event
.GetSashPosition(), GetSashPosition());
480 void MySplitterWindow::OnPositionChanging(wxSplitterEvent
& event
)
482 wxLogStatus(m_frame
, wxT("Position is changing, now = %d (or %d)"),
483 event
.GetSashPosition(), GetSashPosition());
488 void MySplitterWindow::OnDClick(wxSplitterEvent
& event
)
491 m_frame
->SetStatusText(wxT("Splitter double clicked"), 1);
492 #endif // wxUSE_STATUSBAR
497 void MySplitterWindow::OnUnsplitEvent(wxSplitterEvent
& event
)
500 m_frame
->SetStatusText(wxT("Splitter unsplit"), 1);
501 #endif // wxUSE_STATUSBAR
506 // ----------------------------------------------------------------------------
508 // ----------------------------------------------------------------------------
510 MyCanvas::MyCanvas(wxWindow
* parent
, bool mirror
)
511 : wxScrolledWindow(parent
, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
,
512 wxHSCROLL
| wxVSCROLL
| wxNO_FULL_REPAINT_ON_RESIZE
)
517 void MyCanvas::OnDraw(wxDC
& dcOrig
)
519 wxMirrorDC
dc(dcOrig
, m_mirror
);
521 dc
.SetPen(*wxBLACK_PEN
);
522 dc
.DrawLine(0, 0, 100, 200);
524 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
525 dc
.DrawText(wxT("Testing"), 50, 50);
527 dc
.SetPen(*wxRED_PEN
);
528 dc
.SetBrush(*wxGREEN_BRUSH
);
529 dc
.DrawRectangle(120, 120, 100, 80);