From 73e703be918f82539f5b6f55182d07a8e2f05bcb Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Fri, 14 Jan 2022 15:44:46 +0100 Subject: [PATCH] more test cases --- examples/boxes/main.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 ); }