mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
60 lines
2.1 KiB
C++
60 lines
2.1 KiB
C++
#include <escher/scrollable_view.h>
|
|
#include <escher/metric.h>
|
|
#include <assert.h>
|
|
|
|
ScrollableView::ScrollableView(Responder * parentResponder, View * view, ScrollViewDataSource * dataSource) :
|
|
Responder(parentResponder),
|
|
ScrollView(view, dataSource),
|
|
m_manualScrollingOffset(KDPointZero)
|
|
{
|
|
setShowsIndicators(false);
|
|
setColorsBackground(false);
|
|
}
|
|
|
|
bool ScrollableView::handleEvent(Ion::Events::Event event) {
|
|
KDPoint translation = KDPointZero;
|
|
if (event == Ion::Events::Left) {
|
|
KDCoordinate movementToEdge = m_manualScrollingOffset.x();
|
|
if (movementToEdge > 0) {
|
|
translation = KDPoint(-min(Metric::ScrollStep, movementToEdge), 0);
|
|
}
|
|
}
|
|
if (event == Ion::Events::Right) {
|
|
KDCoordinate movementToEdge = m_contentView->minimalSizeForOptimalDisplay().width() - bounds().width() - m_manualScrollingOffset.x();
|
|
if (movementToEdge > 0) {
|
|
translation = KDPoint(min(Metric::ScrollStep, movementToEdge), 0);
|
|
}
|
|
}
|
|
if (event == Ion::Events::Up) {
|
|
KDCoordinate movementToEdge = m_manualScrollingOffset.y();
|
|
if (movementToEdge > 0) {
|
|
translation = KDPoint(0, -min(Metric::ScrollStep, movementToEdge));
|
|
}
|
|
}
|
|
if (event == Ion::Events::Down) {
|
|
KDCoordinate movementToEdge = m_contentView->minimalSizeForOptimalDisplay().height() - bounds().height() - m_manualScrollingOffset.y();
|
|
if (movementToEdge > 0) {
|
|
translation = KDPoint(0, min(Metric::ScrollStep, movementToEdge));
|
|
}
|
|
}
|
|
if (translation != KDPointZero) {
|
|
m_manualScrollingOffset = m_manualScrollingOffset.translatedBy(translation);
|
|
setContentOffset(m_manualScrollingOffset);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void ScrollableView::reloadScroll(bool forceReLayout) {
|
|
m_manualScrollingOffset = KDPointZero;
|
|
setContentOffset(m_manualScrollingOffset, forceReLayout);
|
|
}
|
|
|
|
void ScrollableView::layoutSubviews() {
|
|
KDSize viewSize = contentSize();
|
|
KDCoordinate viewWidth = max(viewSize.width(), bounds().width() - leftMargin() - rightMargin());
|
|
KDCoordinate viewHeight = max(viewSize.height(), bounds().height() - topMargin() - bottomMargin());
|
|
m_contentView->setSize(KDSize(viewWidth, viewHeight));
|
|
ScrollView::layoutSubviews();
|
|
}
|