6#include "QskFunctions.h"
7#include "QskInternalMacros.h"
10#include <qfontmetrics.h>
13template<
class Rect,
class Value >
14static inline Rect qskAlignedRect(
const Rect& outerRect,
15 Value width, Value height, Qt::Alignment alignment )
17 Value x = outerRect.x();
18 Value y = outerRect.y();
20 switch ( alignment & Qt::AlignHorizontal_Mask )
22 case Qt::AlignHCenter:
23 x += ( outerRect.width() - width ) / 2;
27 x += outerRect.width() - width;
34 switch ( alignment & Qt::AlignVertical_Mask )
36 case Qt::AlignVCenter:
37 y += ( outerRect.height() - height ) / 2;
41 y += outerRect.height() - height;
48 return Rect( x, y, width, height );
51QRect qskAlignedRect(
const QRect& outerRect,
52 int width,
int height, Qt::Alignment alignment )
54 return qskAlignedRect< QRect, int >( outerRect, width, height, alignment );
57QRectF qskAlignedRectF(
const QRectF& outerRect,
58 qreal width, qreal height, Qt::Alignment alignment )
60 return qskAlignedRect< QRectF, qreal >( outerRect, width, height, alignment );
63QRect qskInnerRect(
const QRectF& rect )
65 const int left = qCeil( rect.left() );
66 const int top = qCeil( rect.top() );
67 const int right = qFloor( rect.right() );
68 const int bottom = qFloor( rect.bottom() );
70 return QRect( left, top, right - left, bottom - top );
73QRectF qskInnerRectF(
const QRectF& rect )
75 const qreal left = qCeil( rect.left() );
76 const qreal top = qCeil( rect.top() );
77 const qreal right = qFloor( rect.right() );
78 const qreal bottom = qFloor( rect.bottom() );
80 return QRectF( left, top, right - left, bottom - top );
83QRectF qskValidOrEmptyInnerRect(
const QRectF& rect,
const QMarginsF& margins )
87 if ( rect.width() > 0.0 )
89 const qreal marginsWidth = margins.left() + margins.right();
91 if ( marginsWidth > rect.width() )
93 x = rect.x() + rect.width() * ( margins.left() / marginsWidth );
98 x = rect.x() + margins.left();
99 w = rect.width() - marginsWidth;
108 if ( rect.height() > 0.0 )
110 const qreal marginsHeight = margins.top() + margins.bottom();
111 if ( marginsHeight > rect.height() )
113 y = rect.y() + rect.height() * ( margins.top() / marginsHeight );
118 y = rect.y() + margins.top();
119 h = rect.height() - marginsHeight;
128 return QRectF( x, y, w, h );
131QRectF qskInterpolatedRect(
const QRectF& from,
const QRectF& to, qreal progress )
133 if ( progress <= 0.0 )
136 if ( progress >= 1.0 )
139 const auto x = from.x() + progress * ( to.x() - from.x() );
140 const auto y = from.y() + progress * ( to.y() - from.y() );
141 const auto w = from.width() + progress * ( to.width() - from.width() );
142 const auto h = from.height() + progress * ( to.height() - from.height() );
144 return QRectF( x, y, w, h );
147QSizeF qskInterpolatedSize(
const QSizeF& from,
const QSizeF& to, qreal progress )
149 if ( progress <= 0.0 )
152 if ( progress >= 1.0 )
155 const auto w = from.width() + progress * ( to.width() - from.width() );
156 const auto h = from.height() + progress * ( to.height() - from.height() );
158 return QSizeF( w, h );
161qreal qskHorizontalAdvance(
const QFont& font,
const QString& text )
163 return qskHorizontalAdvance( QFontMetricsF( font ), text );
166qreal qskHorizontalAdvance(
const QFontMetricsF& fontMetrics,
const QString& text )
168 return fontMetrics.horizontalAdvance( text );
171QSizeF qskTextRenderSize(
const QFontMetricsF& fontMetrics,
const QString& text )
173 if ( text.isEmpty() )
174 return QSizeF( 0.0, 0.0 );
176 QRectF r( 0.0, 0.0, 10e6, 10e6 );
177 r = fontMetrics.boundingRect( r, 0, text );
182qreal qskFuzzyFloor( qreal value, qreal stepSize )
184 const double eps = 1.0e-6 * stepSize;
186 value = ( value + eps ) / stepSize;
187 return std::floor( value ) * stepSize;
190qreal qskFuzzyCeil( qreal value, qreal stepSize )
192 const double eps = 1.0e-6 * stepSize;
194 value = ( value - eps ) / stepSize;
195 return std::ceil( value ) * stepSize;
198double qskConstrainedDegrees(
double degrees )
200 degrees = fmod( degrees, 360.0 );
207float qskConstrainedDegrees(
float degrees )
209 degrees = fmodf( degrees, 360.0f );
210 if ( degrees < 0.0f )
216double qskConstrainedRadians(
double radians )
218 constexpr double pi2 = 2.0 * M_PI;
220 radians = fmod( radians, pi2 );
227float qskConstrainedRadians(
float radians )
229 constexpr float pi2 = 2.0f * M_PI;
231 radians = fmodf( radians, pi2 );
232 if ( radians < 0.0f )
238QSK_HIDDEN_EXTERNAL_BEGIN
240bool qskHasEnvironment(
const char* env )
244 const int value = qEnvironmentVariableIntValue( env, &ok );
249 auto result = qgetenv( env );
250 return !result.isEmpty() && result !=
"false";
253QSK_HIDDEN_EXTERNAL_END