예제 #1
0
void MySplitterWindow::OnPositionChanging(wxSplitterEvent& event)
{
    wxLogStatus(m_frame, wxT("Position is changing, now = %d (or %d)"),
                event.GetSashPosition(), GetSashPosition());

    event.Skip();
}
예제 #2
0
void MySplitterWindow::OnUnsplitEvent(wxSplitterEvent& event)
{
#if wxUSE_STATUSBAR
    m_frame->SetStatusText(wxT("Splitter unsplit"), 1);
#endif // wxUSE_STATUSBAR

    event.Skip();
}
예제 #3
0
void MySplitterWindow::OnDClick(wxSplitterEvent& event)
{
#if wxUSE_STATUSBAR
    m_frame->SetStatusText(wxT("Splitter double clicked"), 1);
#endif // wxUSE_STATUSBAR

    event.Skip();
}
예제 #4
0
void WidgetDownloadPanel::OnSashChanged( wxSplitterEvent& evt )
{
    sett().SetSashPosition( GetName(), evt.GetSashPosition( ) );
    evt.Skip();
}
예제 #5
0
void MySplitterWindow::OnUnsplitEvent(wxSplitterEvent& event)
{

    event.Skip();
}
예제 #6
0
void MySplitterWindow::OnDClick(wxSplitterEvent& event)
{
    event.Skip();
}
예제 #7
0
void MySplitterWindow::OnPositionChanging(wxSplitterEvent& event)
{

    event.Skip();
}