102 lines
2.8 KiB
C++
102 lines
2.8 KiB
C++
![]() |
/******************************************************************************
|
||
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
||
|
* This file may be used under the terms of the 3-clause BSD License
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#include "LinearLayoutPage.h"
|
||
|
#include "TestRectangle.h"
|
||
|
#include "ButtonBox.h"
|
||
|
|
||
|
#include <QskAspect.h>
|
||
|
#include <QskLinearBox.h>
|
||
|
#include <QskRgbValue.h>
|
||
|
|
||
|
namespace
|
||
|
{
|
||
|
class Box : public QskLinearBox
|
||
|
{
|
||
|
public:
|
||
|
Box( QQuickItem* parent = nullptr ):
|
||
|
QskLinearBox( Qt::Horizontal, parent )
|
||
|
{
|
||
|
setObjectName( "Box" );
|
||
|
|
||
|
setBackgroundColor( Qt::white );
|
||
|
|
||
|
setMargins( 10 );
|
||
|
setSpacing( 5 );
|
||
|
|
||
|
addRectangle( "LightSalmon" );
|
||
|
addRectangle( "Salmon" );
|
||
|
addRectangle( "DarkSalmon" );
|
||
|
addRectangle( "LightCoral" );
|
||
|
addRectangle( "IndianRed" );
|
||
|
addRectangle( "Crimson" );
|
||
|
addRectangle( "FireBrick" );
|
||
|
addRectangle( "DarkRed" );
|
||
|
|
||
|
//setRowSpacing( 5, 30 );
|
||
|
insertSpacer( 5, 30 );
|
||
|
//insertStretch( 5, 2 );
|
||
|
//setRetainSizeWhenHidden( 2, true );
|
||
|
}
|
||
|
|
||
|
void mirror()
|
||
|
{
|
||
|
setLayoutMirroring( !layoutMirroring() );
|
||
|
}
|
||
|
|
||
|
void rotate()
|
||
|
{
|
||
|
const int index = 0;
|
||
|
|
||
|
QQuickItem* item = itemAtIndex( index );
|
||
|
removeAt( index );
|
||
|
|
||
|
if ( item == nullptr )
|
||
|
{
|
||
|
// how to get the spacer item and its settings ???
|
||
|
addSpacer( 30 );
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
addItem( item );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void incrementSpacing( int spacing )
|
||
|
{
|
||
|
setSpacing( this->spacing() + spacing );
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
|
||
|
void addRectangle( const char* colorName )
|
||
|
{
|
||
|
TestRectangle* rect = new TestRectangle( colorName );
|
||
|
rect->setText( QString::number( itemCount() + 1 ) );
|
||
|
|
||
|
addItem( rect, Qt::AlignCenter );
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
LinearLayoutPage::LinearLayoutPage( QQuickItem* parent ):
|
||
|
QskLinearBox( Qt::Vertical, parent )
|
||
|
{
|
||
|
setMargins( 10 );
|
||
|
setBackgroundColor( QskRgbValue::LightSteelBlue );
|
||
|
|
||
|
Box* box = new Box();
|
||
|
|
||
|
ButtonBox* buttonBox = new ButtonBox();
|
||
|
buttonBox->addButton( "Flip", [ = ]() { box->transpose(); } );
|
||
|
buttonBox->addButton( "Mirror", [ = ]() { box->mirror(); } );
|
||
|
buttonBox->addButton( "Rotate", [ = ]() { box->rotate(); } );
|
||
|
buttonBox->addButton( "Spacing+", [ = ]() { box->incrementSpacing( +1 ); }, true );
|
||
|
buttonBox->addButton( "Spacing-", [ = ]() { box->incrementSpacing( -1 ); }, true );
|
||
|
|
||
|
addItem( buttonBox, Qt::AlignTop | Qt::AlignLeft );
|
||
|
addItem( box );
|
||
|
}
|