missing signal added

This commit is contained in:
Uwe Rathmann 2019-03-30 19:11:35 +01:00
parent 58a942bb2d
commit d3e9c1f010
2 changed files with 2 additions and 0 deletions

View File

@ -251,6 +251,7 @@ void QskScrollView::setScrollableSize( const QSizeF& size )
if ( boundedSize != m_data->scrollableSize ) if ( boundedSize != m_data->scrollableSize )
{ {
m_data->scrollableSize = boundedSize; m_data->scrollableSize = boundedSize;
Q_EMIT scrollableSizeChanged( m_data->scrollableSize );
setScrollPos( m_data->scrollPos ); // scroll pos might need to be re-bounded setScrollPos( m_data->scrollPos ); // scroll pos might need to be re-bounded

View File

@ -60,6 +60,7 @@ class QSK_EXPORT QskScrollView : public QskControl
Q_SIGNALS: Q_SIGNALS:
void scrolledTo( const QPointF& ); void scrolledTo( const QPointF& );
void scrollPosChanged(); void scrollPosChanged();
void scrollableSizeChanged( const QSizeF& );
void verticalScrollBarPolicyChanged(); void verticalScrollBarPolicyChanged();
void horizontalScrollBarPolicyChanged(); void horizontalScrollBarPolicyChanged();