1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSplitterWindow sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
23 #include "wx/splitter.h"
29 class MyApp
: public wxApp
35 class MySplitterWindow
: public wxSplitterWindow
38 MySplitterWindow(wxFrame
*parent
, wxWindowID id
)
39 : wxSplitterWindow(parent
, id
, wxDefaultPosition
, wxDefaultSize
,
40 wxSP_3D
| wxSP_LIVE_UPDATE
| wxCLIP_CHILDREN
)
45 virtual bool OnSashPositionChange(int newSashPosition
)
47 if ( !wxSplitterWindow::OnSashPositionChange(newSashPosition
) )
51 str
.Printf( _T("Sash position = %d"), newSashPosition
);
52 m_frame
->SetStatusText(str
);
61 class MyFrame
: public wxFrame
64 MyFrame(wxFrame
* frame
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
);
68 void SplitHorizontal(wxCommandEvent
& event
);
69 void SplitVertical(wxCommandEvent
& event
);
70 void Unsplit(wxCommandEvent
& event
);
71 void SetMinSize(wxCommandEvent
& event
);
72 void Quit(wxCommandEvent
& event
);
74 // Menu command update functions
75 void UpdateUIHorizontal(wxUpdateUIEvent
& event
);
76 void UpdateUIVertical(wxUpdateUIEvent
& event
);
77 void UpdateUIUnsplit(wxUpdateUIEvent
& event
);
80 void UpdatePosition();
84 MyCanvas
* m_leftCanvas
;
85 MyCanvas
* m_rightCanvas
;
86 MySplitterWindow
* m_splitter
;
91 class MyCanvas
: public wxScrolledWindow
94 MyCanvas(wxWindow
* parent
, wxWindowID id
= -1, const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
, const wxString
& name
= "");
97 virtual void OnDraw(wxDC
& dc
);
102 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
105 // ID for the menu commands
116 #define SPLITTER_WINDOW 100
117 #define SPLITTER_FRAME 101
123 bool MyApp::OnInit(void)
125 MyFrame
* frame
= new MyFrame((wxFrame
*) NULL
, "wxSplitterWindow Example",
126 wxPoint(50, 50), wxSize(420, 300));
136 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
137 EVT_MENU(SPLIT_VERTICAL
, MyFrame::SplitVertical
)
138 EVT_MENU(SPLIT_HORIZONTAL
, MyFrame::SplitHorizontal
)
139 EVT_MENU(SPLIT_UNSPLIT
, MyFrame::Unsplit
)
140 EVT_MENU(SPLIT_QUIT
, MyFrame::Quit
)
141 EVT_MENU(SPLIT_SETMINSIZE
, MyFrame::SetMinSize
)
143 EVT_UPDATE_UI(SPLIT_VERTICAL
, MyFrame::UpdateUIVertical
)
144 EVT_UPDATE_UI(SPLIT_HORIZONTAL
, MyFrame::UpdateUIHorizontal
)
145 EVT_UPDATE_UI(SPLIT_UNSPLIT
, MyFrame::UpdateUIUnsplit
)
148 // My frame constructor
149 MyFrame::MyFrame(wxFrame
* frame
, const wxString
& title
,
150 const wxPoint
& pos
, const wxSize
& size
)
151 : wxFrame(frame
, SPLITTER_FRAME
, title
, pos
, size
,
152 wxDEFAULT_FRAME_STYLE
| wxNO_FULL_REPAINT_ON_RESIZE
)
157 fileMenu
= new wxMenu
;
158 fileMenu
->Append(SPLIT_VERTICAL
, "Split &Vertically\tCtrl-V", "Split vertically");
159 fileMenu
->Append(SPLIT_HORIZONTAL
, "Split &Horizontally\tCtrl-H", "Split horizontally");
160 fileMenu
->Append(SPLIT_UNSPLIT
, "&Unsplit\tCtrl-U", "Unsplit");
161 fileMenu
->AppendSeparator();
162 fileMenu
->Append(SPLIT_SETMINSIZE
, "Set &min size", "Set minimum pane size");
163 fileMenu
->AppendSeparator();
164 fileMenu
->Append(SPLIT_QUIT
, "E&xit\tAlt-X", "Exit");
166 menuBar
= new wxMenuBar
;
167 menuBar
->Append(fileMenu
, "&File");
171 m_splitter
= new MySplitterWindow(this, SPLITTER_WINDOW
);
174 wxSize
sz( m_splitter
->GetSize() );
175 wxLogMessage( "Initial splitter size: %d %d\n", (int)sz
.x
, (int)sz
.y
);
178 m_leftCanvas
= new MyCanvas(m_splitter
, CANVAS1
, wxPoint(0, 0), wxSize(400, 400), "Test1" );
179 m_leftCanvas
->SetBackgroundColour(*wxRED
);
180 m_leftCanvas
->SetScrollbars(20, 20, 50, 50);
181 m_leftCanvas
->SetCursor(wxCursor(wxCURSOR_MAGNIFIER
));
183 m_rightCanvas
= new MyCanvas(m_splitter
, CANVAS2
, wxPoint(0, 0), wxSize(400, 400), "Test2" );
184 m_rightCanvas
->SetBackgroundColour(*wxCYAN
);
185 m_rightCanvas
->SetScrollbars(20, 20, 50, 50);
187 // you can also do this to start with a single window
189 m_rightCanvas
->Show(FALSE
);
190 m_splitter
->Initialize(m_leftCanvas
);
192 m_splitter
->SplitVertically(m_leftCanvas
, m_rightCanvas
, 100);
195 SetStatusText("Min pane size = 0", 1);
202 void MyFrame::Quit(wxCommandEvent
& WXUNUSED(event
) )
207 void MyFrame::SplitHorizontal(wxCommandEvent
& WXUNUSED(event
) )
209 if ( m_splitter
->IsSplit() )
210 m_splitter
->Unsplit();
211 m_leftCanvas
->Show(TRUE
);
212 m_rightCanvas
->Show(TRUE
);
213 m_splitter
->SplitHorizontally( m_leftCanvas
, m_rightCanvas
);
217 void MyFrame::SplitVertical(wxCommandEvent
& WXUNUSED(event
) )
219 if ( m_splitter
->IsSplit() )
220 m_splitter
->Unsplit();
221 m_leftCanvas
->Show(TRUE
);
222 m_rightCanvas
->Show(TRUE
);
223 m_splitter
->SplitVertically( m_leftCanvas
, m_rightCanvas
);
227 void MyFrame::Unsplit(wxCommandEvent
& WXUNUSED(event
) )
229 if ( m_splitter
->IsSplit() )
230 m_splitter
->Unsplit();
231 SetStatusText("No splitter");
234 void MyFrame::SetMinSize(wxCommandEvent
& WXUNUSED(event
) )
237 str
.Printf( _T("%d"), m_splitter
->GetMinimumPaneSize());
238 str
= wxGetTextFromUser("Enter minimal size for panes:", "", str
, this);
242 int minsize
= wxStrtol( str
, (wxChar
**)NULL
, 10 );
243 m_splitter
->SetMinimumPaneSize(minsize
);
244 str
.Printf( _T("Min pane size = %d"), minsize
);
245 SetStatusText(str
, 1);
248 void MyFrame::UpdateUIHorizontal(wxUpdateUIEvent
& event
)
250 event
.Enable( ( (!m_splitter
->IsSplit()) || (m_splitter
->GetSplitMode() != wxSPLIT_HORIZONTAL
) ) );
253 void MyFrame::UpdateUIVertical(wxUpdateUIEvent
& event
)
255 event
.Enable( ( (!m_splitter
->IsSplit()) || (m_splitter
->GetSplitMode() != wxSPLIT_VERTICAL
) ) );
258 void MyFrame::UpdateUIUnsplit(wxUpdateUIEvent
& event
)
260 event
.Enable( m_splitter
->IsSplit() );
263 void MyFrame::UpdatePosition()
266 str
.Printf( _("Sash position = %d"), m_splitter
->GetSashPosition());
270 MyCanvas::MyCanvas(wxWindow
* parent
, wxWindowID id
, const wxPoint
& point
, const wxSize
& size
, const wxString
&name
) :
271 wxScrolledWindow(parent
, id
, point
, size
, 0, name
)
275 MyCanvas::~MyCanvas()
279 void MyCanvas::OnDraw(wxDC
& dc
)
281 dc
.SetPen(*wxBLACK_PEN
);
282 dc
.DrawLine(0, 0, 100, 100);
284 dc
.SetBackgroundMode(wxTRANSPARENT
);
285 dc
.DrawText("Testing", 50, 50);
287 dc
.SetPen(*wxRED_PEN
);
288 dc
.SetBrush(*wxGREEN_BRUSH
);
289 dc
.DrawRectangle(120, 120, 100, 80);