2022-04-19 08:42:53 +02:00

20 lines
533 B
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the 3-clause BSD License
*****************************************************************************/
#include "Page.h"
Page::Page( QQuickItem* parent )
: Page( Qt::Vertical )
{
}
Page::Page( Qt::Orientation orientation, QQuickItem* parent )
: QskLinearBox( orientation, parent )
{
setMargins( 20 );
setPadding( 10 );
setSpacing( 10 );
}