diff --git a/examples/boxes/main.cpp b/examples/boxes/main.cpp index 012c992b..4325baa1 100644 --- a/examples/boxes/main.cpp +++ b/examples/boxes/main.cpp @@ -521,6 +521,18 @@ class TabView : public QskTabView addColoredBorderRectangles4( tab5, true, Box::Horizontal ); addColoredBorderRectangles5( tab5, true, Box::Horizontal ); + addColoredBorderRectangles1( tab5, false, Box::Vertical ); + addColoredBorderRectangles2( tab5, false, Box::Vertical ); + addColoredBorderRectangles3( tab5, false, Box::Vertical ); + addColoredBorderRectangles4( tab5, false, Box::Vertical ); + addColoredBorderRectangles5( tab5, false, Box::Vertical ); + + addColoredBorderRectangles1( tab5, true, Box::Vertical ); + addColoredBorderRectangles2( tab5, true, Box::Vertical ); + addColoredBorderRectangles3( tab5, true, Box::Vertical ); + addColoredBorderRectangles4( tab5, true, Box::Vertical ); + addColoredBorderRectangles5( tab5, true, Box::Vertical ); + addTab( tab5 ); setCurrentIndex( count() - 1 ); }