SDK/ScrollAreaWidget: Add EnableScrollbar

This commit is contained in:
Lynix
2019-07-07 16:28:09 +02:00
parent f5dc27ba03
commit 7da8945c72
3 changed files with 46 additions and 8 deletions

View File

@@ -16,6 +16,21 @@ namespace Ndk
return m_scrollRatio;
}
inline bool ScrollAreaWidget::HasScrollbar() const
{
return m_hasScrollbar;
}
inline bool ScrollAreaWidget::IsScrollbarEnabled() const
{
return m_isScrollbarEnabled;
}
inline bool ScrollAreaWidget::IsScrollbarVisible() const
{
return HasScrollbar() && IsScrollbarEnabled();
}
inline void ScrollAreaWidget::ScrollToHeight(float height)
{
float contentHeight = m_content->GetHeight();