qskinny/src/layouts/QskLayoutConstraint.h

52 lines
1.5 KiB
C
Raw Normal View History

2017-07-21 18:21:34 +02:00
/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef QSK_LAYOUT_CONSTRAINT_H
#define QSK_LAYOUT_CONSTRAINT_H
#include "QskGlobal.h"
2018-08-03 08:30:23 +02:00
2018-07-19 14:10:48 +02:00
#include <qnamespace.h>
2017-07-21 18:21:34 +02:00
#include <limits>
class QskSizePolicy;
class QskControl;
2017-07-21 18:21:34 +02:00
class QQuickItem;
class QSizeF;
namespace std { template< typename T > class function; }
2017-07-21 18:21:34 +02:00
namespace QskLayoutConstraint
{
enum Type
{
WidthForHeight,
HeightForWidth
};
2017-07-21 18:21:34 +02:00
QSK_EXPORT bool hasDynamicConstraint( const QQuickItem* );
QSK_EXPORT qreal heightForWidth( const QQuickItem*, qreal width );
QSK_EXPORT qreal widthForHeight( const QQuickItem*, qreal height );
QSK_EXPORT qreal constrainedMetric(
Type, const QskControl*, qreal value,
std::function< qreal( Type, const QskControl*, qreal ) > );
QSK_EXPORT qreal constrainedChildrenMetric( Type, const QskControl*, qreal width );
2017-07-21 18:21:34 +02:00
QSK_EXPORT QSizeF effectiveConstraint( const QQuickItem*, Qt::SizeHint );
QSK_EXPORT QskSizePolicy sizePolicy( const QQuickItem* );
// bounded by Qt::MinimumSize/Qt::MaximumSize
QSK_EXPORT QSizeF boundedSize( const QQuickItem*, const QSizeF& );
QSK_EXPORT QSizeF adjustedSize( const QQuickItem*, const QSizeF& );
2017-07-21 18:21:34 +02:00
// QGridLayoutEngine internally uses FLT_MAX
const qreal unlimited = std::numeric_limits< float >::max();
}
#endif