| 656 | } |
| 657 | |
| 658 | void SampleApp::OnToggleOrientationClick() { |
| 659 | if( m_boxorientation->GetOrientation() == sfg::Box::Orientation::HORIZONTAL ) { |
| 660 | m_boxorientation->SetOrientation( sfg::Box::Orientation::VERTICAL ); |
| 661 | } |
| 662 | else { |
| 663 | m_boxorientation->SetOrientation( sfg::Box::Orientation::HORIZONTAL ); |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | void SampleApp::OnToggleSpaceClick() { |
| 668 | if( m_scrolled_window_box->GetSpacing() > .0f ) { |
nothing calls this directly
no test coverage detected