Files
Upsilon/escher/include/escher/scroll_view_data_source.h
Émilie Feral af4d6b6e81 [escher] Divide class selectable table view delegate in 2: selectable
table view data source & selectable table view delegate

Change-Id: I90fbd61e271db3754c13bd0069b95c2026de6814
2017-05-18 14:16:41 +02:00

16 lines
270 B
C++

#ifndef ESCHER_SCROLL_VIEW_DATA_SOURCE_H
#define ESCHER_SCROLL_VIEW_DATA_SOURCE_H
#include <kandinsky.h>
class ScrollViewDataSource {
public:
ScrollViewDataSource();
KDPoint offset() const;
bool setOffset(KDPoint offset);
private:
KDPoint m_offset;
};
#endif