mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-24 16:20:49 +01:00
table view data source & selectable table view delegate Change-Id: I90fbd61e271db3754c13bd0069b95c2026de6814
16 lines
270 B
C++
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
|