ac8ef9cd5a
* QskBoxBorderColors: Use gradients instead of colors * QskBoxBorderColors: rename API * render gradients on borders * boxes example: Also draw gradient borders * calculate proper numbers of needed border colors * fixup with example * support rounded corners * support more colors in rounded color gradients I THINK WE DON'T REALLY NEED THIS COMMIT * We don't need this commit either * Revert "We don't need this commit either" This reverts commit 2dc38064f7fee1d0505262fe5cebcf9e1fb16cea. * Revert "support more colors in rounded color gradients" This reverts commit 5754d2d0773d8273d42ae1775b53d40f5e6af26a. * fix borders for rect ellipses * play around a bit * small fixes * some helper stuff and missing stuff * user border colors * close to something working somehow * works a bit better * put it into an own function * rearrange a bit * something's off * still off, but seems like we need an additional line * works but hackish * now it works * bring back samples * correction * pimp up example * fix normal rendering * some more debugging etc. * turn around gradients * turn around rectangular gradients as well * turn around easier * more test cases * fix fill case * more test cases * clean up a bit * clean up example * clean up some more * incorporate feedback from Uwe * fix bug when using horizontal gradients
570 lines
18 KiB
C++
570 lines
18 KiB
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
*****************************************************************************/
|
|
|
|
#include "Box.h"
|
|
|
|
#include <SkinnyFont.h>
|
|
#include <SkinnyShortcut.h>
|
|
|
|
#include <QskLinearBox.h>
|
|
#include <QskTabView.h>
|
|
#include <QskWindow.h>
|
|
|
|
#include <QskBoxBorderColors.h>
|
|
#include <QskBoxBorderMetrics.h>
|
|
#include <QskBoxShapeMetrics.h>
|
|
#include <QskGradient.h>
|
|
#include <QskRgbValue.h>
|
|
|
|
#include <QskObjectCounter.h>
|
|
|
|
#include <QGuiApplication>
|
|
|
|
class MyRectangle : public Box
|
|
{
|
|
public:
|
|
MyRectangle( QQuickItem* parentItem )
|
|
: Box( parentItem )
|
|
{
|
|
}
|
|
};
|
|
|
|
class MyRoundedRectangle : public Box
|
|
{
|
|
public:
|
|
MyRoundedRectangle( QQuickItem* parentItem )
|
|
: Box( parentItem )
|
|
{
|
|
setShape( 20, Qt::AbsoluteSize );
|
|
}
|
|
};
|
|
|
|
class MyEllipse : public Box
|
|
{
|
|
public:
|
|
MyEllipse( QQuickItem* parentItem )
|
|
: Box( parentItem )
|
|
{
|
|
setShape( 100, Qt::RelativeSize );
|
|
}
|
|
};
|
|
|
|
static void addTestRectangle( QskLinearBox* parent )
|
|
{
|
|
auto box = new Box( parent );
|
|
box->setMargins( 50 );
|
|
|
|
box->setBorder( Box::Flat, QskRgbPalette::DeepOrange );
|
|
box->setBorderWidth( 10, 20, 40, 20 );
|
|
|
|
QskBoxShapeMetrics shape( 50, Qt::RelativeSize );
|
|
shape.setRadius( Qt::BottomRightCorner, 30 );
|
|
shape.setRadius( Qt::TopRightCorner, 70 );
|
|
|
|
box->setShape( shape );
|
|
box->setGradient( QskGradient::Diagonal, QskRgbPalette::Blue );
|
|
}
|
|
|
|
static void addRectangles1( QskLinearBox* parent )
|
|
{
|
|
for ( auto type : { Box::Unfilled, Box::Solid,
|
|
Box::Horizontal, Box::Vertical, Box::Diagonal } )
|
|
{
|
|
auto* rectangle = new MyRectangle( parent );
|
|
rectangle->setBackground( type, QskRgbPalette::Teal );
|
|
}
|
|
}
|
|
|
|
static void addRectangles2( QskLinearBox* parent )
|
|
{
|
|
for ( auto type : { Box::Unfilled, Box::Solid,
|
|
Box::Horizontal, Box::Vertical, Box::Diagonal } )
|
|
{
|
|
auto* rectangle = new MyRectangle( parent );
|
|
rectangle->setBorder( Box::Flat, QskRgbPalette::Brown );
|
|
rectangle->setBackground( type, QskRgbPalette::Yellow );
|
|
}
|
|
}
|
|
|
|
static void addRectangles3( QskLinearBox* parent )
|
|
{
|
|
using namespace QskRgb;
|
|
|
|
const auto borderTheme = QskRgbPalette::Grey;
|
|
const auto fillTheme = QskRgbPalette::Blue;
|
|
|
|
Box* box;
|
|
|
|
box = new MyRectangle( parent );
|
|
box->setBorder( Box::Raised1, borderTheme );
|
|
box->setGradient( Grey400 );
|
|
|
|
box = new MyRectangle( parent );
|
|
box->setBorder( Box::Sunken1, borderTheme );
|
|
box->setGradient( QskGradient::Diagonal, Grey400, Grey500 );
|
|
|
|
box = new MyRectangle( parent );
|
|
box->setBorder( Box::Raised2, borderTheme );
|
|
box->setGradient( QskGradient::Vertical, Grey400, Grey500 );
|
|
|
|
box = new MyRectangle( parent );
|
|
box->setBorder( Box::Raised2, borderTheme );
|
|
box->setBackground( Box::Vertical, fillTheme, false );
|
|
|
|
box = new MyRectangle( parent );
|
|
box->setBorder( Box::Sunken2, borderTheme );
|
|
box->setBackground( Box::Vertical, fillTheme, true );
|
|
}
|
|
|
|
static void addRectangles4( QskLinearBox* parent )
|
|
{
|
|
for ( auto type : { Box::Unfilled, Box::Solid,
|
|
Box::Horizontal, Box::Vertical, Box::Diagonal } )
|
|
{
|
|
auto* box = new MyRoundedRectangle( parent );
|
|
box->setBackground( type, QskRgbPalette::DeepOrange );
|
|
}
|
|
}
|
|
|
|
static void addRectangles5( QskLinearBox* parent )
|
|
{
|
|
for ( auto type : { Box::Unfilled, Box::Solid,
|
|
Box::Horizontal, Box::Vertical, Box::Diagonal } )
|
|
{
|
|
auto* box = new MyRoundedRectangle( parent );
|
|
box->setBorder( Box::Flat, QskRgbPalette::Indigo );
|
|
box->setBackground( type, QskRgbPalette::Pink );
|
|
}
|
|
}
|
|
|
|
static void addRectangles6( QskLinearBox* parent )
|
|
{
|
|
using namespace QskRgb;
|
|
|
|
const auto borderTheme = QskRgbPalette::Grey;
|
|
const auto fillTheme = QskRgbPalette::Lime;
|
|
|
|
Box* box;
|
|
|
|
box = new MyRoundedRectangle( parent );
|
|
box->setBorder( Box::Raised1, borderTheme );
|
|
box->setGradient( Grey400 );
|
|
|
|
box = new MyRoundedRectangle( parent );
|
|
box->setBorder( Box::Sunken1, borderTheme );
|
|
box->setGradient( QskGradient::Diagonal, Grey400, Grey500 );
|
|
|
|
box = new MyRoundedRectangle( parent );
|
|
box->setBorder( Box::Raised2, borderTheme );
|
|
box->setGradient( QskGradient::Vertical, Grey400, Grey500 );
|
|
|
|
box = new MyRoundedRectangle( parent );
|
|
box->setBorder( Box::Raised2, borderTheme );
|
|
box->setBackground( Box::Vertical, fillTheme, false );
|
|
|
|
box = new MyRoundedRectangle( parent );
|
|
box->setBorder( Box::Sunken2, borderTheme );
|
|
box->setBackground( Box::Vertical, fillTheme, true );
|
|
}
|
|
|
|
static void addRectangles7( QskLinearBox* parent )
|
|
{
|
|
for ( auto type : { Box::Unfilled, Box::Solid,
|
|
Box::Horizontal, Box::Vertical, Box::Diagonal } )
|
|
{
|
|
auto* box = new MyEllipse( parent );
|
|
box->setBackground( type, QskRgbPalette::BlueGrey );
|
|
}
|
|
}
|
|
|
|
static void addRectangles8( QskLinearBox* parent )
|
|
{
|
|
for ( auto type : { Box::Unfilled, Box::Solid,
|
|
Box::Horizontal, Box::Vertical, Box::Diagonal } )
|
|
{
|
|
auto* box = new MyEllipse( parent );
|
|
box->setBorder( Box::Flat, QskRgbPalette::Indigo );
|
|
box->setBackground( type, QskRgbPalette::Red );
|
|
}
|
|
}
|
|
|
|
static void addRectangles9( QskLinearBox* parent )
|
|
{
|
|
using namespace QskRgb;
|
|
|
|
const auto borderTheme = QskRgbPalette::Grey;
|
|
const auto fillTheme = QskRgbPalette::Lime;
|
|
|
|
Box* box;
|
|
|
|
box = new MyEllipse( parent );
|
|
box->setBorder( Box::Raised1, borderTheme );
|
|
box->setGradient( Grey400 );
|
|
|
|
box = new MyEllipse( parent );
|
|
box->setBorder( Box::Sunken1, borderTheme );
|
|
box->setGradient( QskGradient::Diagonal, Grey400, Grey500 );
|
|
|
|
box = new MyEllipse( parent );
|
|
box->setBorder( Box::Raised2, borderTheme );
|
|
box->setGradient( QskGradient::Vertical, Grey400, Grey500 );
|
|
|
|
box = new MyEllipse( parent );
|
|
box->setBorder( Box::Raised2, borderTheme );
|
|
box->setBackground( Box::Vertical, fillTheme, false );
|
|
|
|
box = new MyEllipse( parent );
|
|
box->setBorder( Box::Sunken2, borderTheme );
|
|
box->setBackground( Box::Vertical, fillTheme, true );
|
|
}
|
|
|
|
static void addRectangles10( QskLinearBox* parent )
|
|
{
|
|
QColor borderTheme( "Indigo" );
|
|
// borderTheme.setAlpha( 100 );
|
|
|
|
Box* box;
|
|
|
|
box = new Box( parent );
|
|
box->setGradient( QskGradient::Horizontal, "DeepPink", "DarkOrange", "HotPink" );
|
|
|
|
box = new Box( parent );
|
|
box->setBorderWidth( 10 );
|
|
box->setBorderGradient( borderTheme );
|
|
box->setGradient( QskGradient::Diagonal, "DeepPink", "DarkOrange", "HotPink" );
|
|
|
|
box = new Box( parent );
|
|
box->setShape( 100, Qt::RelativeSize );
|
|
box->setBorderWidth( 5 );
|
|
box->setBorderGradient( borderTheme );
|
|
box->setGradient( QskGradient::Vertical, "DeepPink", "DarkOrange", "HotPink" );
|
|
|
|
box = new Box( parent );
|
|
box->setShape( 100, Qt::RelativeSize );
|
|
box->setBorderWidth( 5 );
|
|
box->setBorderGradient( borderTheme );
|
|
box->setGradient( QskGradient::Diagonal, "DeepPink", "DarkOrange", "HotPink" );
|
|
|
|
box = new Box( parent );
|
|
box->setShape( 100, Qt::RelativeSize );
|
|
box->setBorderWidth( 5, 20, 30, 5 );
|
|
box->setBorderGradient( borderTheme );
|
|
box->setGradient( QskGradient::Vertical, "DeepPink", "DarkOrange", "HotPink" );
|
|
}
|
|
|
|
static void addRectangles11( QskLinearBox* parent )
|
|
{
|
|
const qreal border = 5;
|
|
const Box::FillType fillType[ 5 ] = { Box::Solid, Box::Horizontal,
|
|
Box::Vertical, Box::Horizontal, Box::Vertical };
|
|
|
|
for ( int i = 0; i < 5; i++ )
|
|
{
|
|
auto box = new MyRectangle( parent );
|
|
|
|
box->setBorder( Box::Flat, QskRgbPalette::Teal );
|
|
|
|
qreal bw[ 4 ] = { border, border, border, border };
|
|
if ( i != 0 )
|
|
bw[ i - 1 ] = 0;
|
|
|
|
box->setBorderWidth( bw[ 0 ], bw[ 1 ], bw[ 2 ], bw[ 3 ] );
|
|
box->setBackground( fillType[ i ], QskRgbPalette::Brown, i >= 3 );
|
|
}
|
|
}
|
|
|
|
static void addRectangles12( QskLinearBox* parent )
|
|
{
|
|
for ( auto orientation : { QskGradient::Vertical,
|
|
QskGradient::Horizontal, QskGradient::Diagonal } )
|
|
{
|
|
auto* box = new Box( parent );
|
|
box->setBorderWidth( 0 );
|
|
box->setGradient( orientation, QskRgbPalette::Brown );
|
|
}
|
|
|
|
for ( auto orientation : { QskGradient::Vertical, QskGradient::Diagonal } )
|
|
{
|
|
auto* box = new Box( parent );
|
|
box->setBorder( Box::Flat, QskRgbPalette::DeepOrange );
|
|
box->setGradient( orientation, QskRgbPalette::Blue );
|
|
}
|
|
|
|
for ( auto orientation : { QskGradient::Vertical,
|
|
QskGradient::Horizontal, QskGradient::Diagonal } )
|
|
{
|
|
auto* box = new Box( parent );
|
|
box->setBorderWidth( 0 );
|
|
box->setShape( 30, 40, Qt::RelativeSize );
|
|
box->setGradient( orientation, QskRgbPalette::Brown );
|
|
}
|
|
|
|
for ( auto orientation : { QskGradient::Vertical, QskGradient::Diagonal } )
|
|
{
|
|
auto* box = new Box( parent );
|
|
box->setBorder( Box::Flat, QskRgbPalette::DeepOrange );
|
|
box->setShape( 30, 40, Qt::RelativeSize );
|
|
box->setGradient( orientation, QskRgbPalette::Blue );
|
|
}
|
|
|
|
for ( auto orientation : { QskGradient::Vertical,
|
|
QskGradient::Horizontal, QskGradient::Diagonal } )
|
|
{
|
|
auto* box = new Box( parent );
|
|
box->setBorderWidth( 0 );
|
|
box->setShape( 100, 100, Qt::RelativeSize );
|
|
box->setGradient( orientation, QskRgbPalette::Brown );
|
|
}
|
|
|
|
for ( auto orientation : { QskGradient::Vertical, QskGradient::Diagonal } )
|
|
{
|
|
auto* box = new Box( parent );
|
|
box->setBorder( Box::Flat, QskRgbPalette::DeepOrange );
|
|
box->setShape( 100, 100, Qt::RelativeSize );
|
|
box->setGradient( orientation, QskRgbPalette::Blue );
|
|
}
|
|
}
|
|
|
|
static void addRectanglesRest( QskLinearBox* parent )
|
|
{
|
|
Box* box;
|
|
|
|
box = new Box( parent );
|
|
box->setBorderWidth( 20, 0, 40, 0 );
|
|
box->setBorderGradient( { "DarkSeaGreen" } );
|
|
|
|
box = new Box( parent );
|
|
box->setShape( 40, Qt::RelativeSize );
|
|
box->setBorderWidth( 20, 10, 30, 15 );
|
|
box->setBorderGradient( { "DarkOrange" } );
|
|
box->setGradient( QskGradient::Vertical, "LightSteelBlue", "SteelBlue" );
|
|
|
|
box = new Box( parent );
|
|
box->setBorderWidth( 20, 0, 10, 20 );
|
|
box->setBorderGradient( { "MediumSeaGreen" } );
|
|
box->setGradient( "DodgerBlue" );
|
|
|
|
box = new Box( parent );
|
|
box->setShape( 20, Qt::AbsoluteSize );
|
|
box->setBorderWidth( 2, 10, 40, 2 );
|
|
box->setBorderGradient( { "Crimson" } );
|
|
box->setGradient( QskRgb::WhiteSmoke );
|
|
|
|
box = new Box( parent );
|
|
box->setShape( 100, Qt::RelativeSize );
|
|
box->setBorderWidth( 5, 20, 5, 0 );
|
|
box->setBorderGradient( { "CadetBlue" } );
|
|
box->setGradient( QskGradient::Vertical, "Gainsboro", "Seashell", "LightGray" );
|
|
}
|
|
|
|
static void addColoredBorderRectangles1( QskLinearBox* parent, bool rounded, Box::FillType fillType )
|
|
{
|
|
auto* box = new Box( parent );
|
|
box->setBorderWidth( 20 );
|
|
QskGradient gradient1( Qt::Vertical, { { 0.0, Qt::blue },
|
|
{ 0.9, Qt::yellow },
|
|
{ 1.0, Qt::darkRed } } );
|
|
QskGradient gradient2( Qt::Vertical, { { 0.0, Qt::black },
|
|
{ 0.3, Qt::white },
|
|
{ 0.7, Qt::white },
|
|
{ 1.0, Qt::black } } );
|
|
QskGradient gradient3( Qt::green );
|
|
QskGradient gradient4( Qt::Vertical, Qt::magenta, Qt::cyan );
|
|
box->setBorderGradients( gradient1, gradient2, gradient3, gradient4 );
|
|
|
|
if( fillType != Box::Unfilled )
|
|
box->setBackground( fillType, QskRgbPalette::Indigo );
|
|
|
|
if( rounded )
|
|
box->setShape( 30, Qt::AbsoluteSize );
|
|
}
|
|
|
|
static void addColoredBorderRectangles2( QskLinearBox* parent, bool rounded, Box::FillType fillType )
|
|
{
|
|
Box* box = new Box( parent );
|
|
box->setBorderWidth( 20 );
|
|
box->setBorderGradients( Qt::red, Qt::green, Qt::blue, Qt::yellow );
|
|
|
|
if( fillType != Box::Unfilled )
|
|
box->setBackground( fillType, QskRgbPalette::Indigo );
|
|
|
|
if( rounded )
|
|
box->setShape( 30, Qt::AbsoluteSize );
|
|
}
|
|
|
|
static void addColoredBorderRectangles3( QskLinearBox* parent, bool rounded, Box::FillType fillType )
|
|
{
|
|
Box* box = new Box( parent );
|
|
box->setBorderWidth( 20 );
|
|
QskGradient gradient1( Qt::Vertical, { { 0.0, Qt::yellow },
|
|
{ 0.2, Qt::gray },
|
|
{ 0.6, Qt::magenta },
|
|
{ 1.0, Qt::green } } );
|
|
QskGradient gradient2( Qt::Vertical, { { 0.0, Qt::darkYellow },
|
|
{ 0.2, Qt::cyan },
|
|
{ 1.0, Qt::darkMagenta } } );
|
|
QskGradient gradient3( Qt::Vertical, { { 0.0, Qt::red },
|
|
{ 0.25, Qt::green },
|
|
{ 0.5, Qt::blue },
|
|
{ 0.75, Qt::magenta },
|
|
{ 1.0, Qt::cyan } } );
|
|
QskGradient gradient4( Qt::Vertical, { { 0.0, Qt::red },
|
|
{ 0.3, Qt::green },
|
|
{ 0.7, Qt::blue },
|
|
{ 1.0, Qt::cyan } } );
|
|
box->setBorderGradients( gradient3, gradient3, gradient3, gradient3 );
|
|
|
|
if( fillType != Box::Unfilled )
|
|
box->setBackground( fillType, QskRgbPalette::Indigo );
|
|
|
|
if( rounded )
|
|
box->setShape( 30, Qt::AbsoluteSize );
|
|
}
|
|
|
|
static void addColoredBorderRectangles4( QskLinearBox* parent, bool rounded, Box::FillType fillType )
|
|
{
|
|
Box* box = new Box( parent );
|
|
box->setBorderWidth( 20 );
|
|
QskGradient gradient( Qt::Vertical, Qt::magenta, Qt::cyan );
|
|
box->setBorderGradients( gradient, gradient, gradient, gradient );
|
|
|
|
if( fillType != Box::Unfilled )
|
|
box->setBackground( fillType, QskRgbPalette::Indigo );
|
|
|
|
if( rounded )
|
|
box->setShape( 30, Qt::AbsoluteSize );
|
|
}
|
|
|
|
static void addColoredBorderRectangles5( QskLinearBox* parent, bool rounded, Box::FillType fillType )
|
|
{
|
|
Box* box = new Box( parent );
|
|
box->setBorderWidth( 20 );
|
|
QskGradient gradient( Qt::Vertical, { { 0.0, Qt::black },
|
|
{ 0.3, Qt::white },
|
|
{ 0.7, Qt::white },
|
|
{ 1.0, Qt::black } } );
|
|
box->setBorderGradients( gradient, gradient, gradient, gradient );
|
|
|
|
if( fillType != Box::Unfilled )
|
|
box->setBackground( fillType, QskRgbPalette::Indigo );
|
|
|
|
if( rounded )
|
|
box->setShape( { 10, 20, 20, 40 } );
|
|
}
|
|
|
|
class TabView : public QskTabView
|
|
{
|
|
public:
|
|
TabView( QQuickItem* parentItem = nullptr )
|
|
: QskTabView( parentItem )
|
|
{
|
|
setMargins( 10 );
|
|
setAutoFitTabs( true );
|
|
|
|
auto* tab1 = new QskLinearBox( Qt::Horizontal, 5 );
|
|
|
|
addRectangles1( tab1 );
|
|
addRectangles2( tab1 );
|
|
addRectangles3( tab1 );
|
|
addRectangles4( tab1 );
|
|
addRectangles5( tab1 );
|
|
addRectangles6( tab1 );
|
|
|
|
auto* tab2 = new QskLinearBox( Qt::Horizontal, 5 );
|
|
addRectangles7( tab2 );
|
|
addRectangles8( tab2 );
|
|
addRectangles9( tab2 );
|
|
addRectangles10( tab2 );
|
|
addRectangles11( tab2 );
|
|
|
|
auto* tab3 = new QskLinearBox( Qt::Horizontal, 5 );
|
|
addRectangles12( tab3 );
|
|
addRectanglesRest( tab3 );
|
|
|
|
addTab( tab1 );
|
|
addTab( tab2 );
|
|
addTab( tab3 );
|
|
|
|
#if 1
|
|
auto* tab4 = new QskLinearBox( Qt::Horizontal, 5 );
|
|
addTestRectangle( tab4 );
|
|
|
|
addTab( tab4 );
|
|
//setCurrentIndex( count() - 1 ); // setCurrentTab( tab4 ) -> TODO
|
|
#endif
|
|
|
|
auto* tab5 = new QskLinearBox( Qt::Horizontal, 5 );
|
|
addColoredBorderRectangles1( tab5, false, Box::Unfilled );
|
|
addColoredBorderRectangles2( tab5, false, Box::Unfilled );
|
|
addColoredBorderRectangles3( tab5, false, Box::Unfilled );
|
|
addColoredBorderRectangles4( tab5, false, Box::Unfilled );
|
|
addColoredBorderRectangles5( tab5, false, Box::Unfilled );
|
|
|
|
addColoredBorderRectangles1( tab5, true, Box::Unfilled );
|
|
addColoredBorderRectangles2( tab5, true, Box::Unfilled );
|
|
addColoredBorderRectangles3( tab5, true, Box::Unfilled );
|
|
addColoredBorderRectangles4( tab5, true, Box::Unfilled );
|
|
addColoredBorderRectangles5( tab5, true, Box::Unfilled );
|
|
|
|
addColoredBorderRectangles1( tab5, false, Box::Horizontal );
|
|
addColoredBorderRectangles2( tab5, false, Box::Horizontal );
|
|
addColoredBorderRectangles3( tab5, false, Box::Horizontal );
|
|
addColoredBorderRectangles4( tab5, false, Box::Horizontal );
|
|
addColoredBorderRectangles5( tab5, false, Box::Horizontal );
|
|
|
|
addColoredBorderRectangles1( tab5, true, Box::Horizontal );
|
|
addColoredBorderRectangles2( tab5, true, Box::Horizontal );
|
|
addColoredBorderRectangles3( tab5, true, Box::Horizontal );
|
|
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 );
|
|
}
|
|
|
|
private:
|
|
void addTab( QskLinearBox* layout )
|
|
{
|
|
layout->setMargins( 10 );
|
|
layout->setSpacing( 10 );
|
|
layout->setBackgroundColor( "Beige" );
|
|
|
|
const QString title = QString( "Page " ) + QString::number( count() + 1 );
|
|
QskTabView::addTab( title, layout );
|
|
}
|
|
};
|
|
|
|
int main( int argc, char* argv[] )
|
|
{
|
|
#ifdef ITEM_STATISTICS
|
|
QskObjectCounter counter( true );
|
|
#endif
|
|
|
|
QGuiApplication app( argc, argv );
|
|
|
|
SkinnyFont::init( &app );
|
|
SkinnyShortcut::enable( SkinnyShortcut::Quit | SkinnyShortcut::DebugShortcuts );
|
|
|
|
auto* tabView = new TabView();
|
|
|
|
QskWindow window;
|
|
window.addItem( tabView );
|
|
window.resize( 600, 600 );
|
|
window.show();
|
|
|
|
return app.exec();
|
|
}
|