mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
16 lines
260 B
C++
16 lines
260 B
C++
#ifndef ESCHER_SCROLL_VIEW_DELEGATE_H
|
|
#define ESCHER_SCROLL_VIEW_DELEGATE_H
|
|
|
|
#include <kandinsky.h>
|
|
|
|
class ScrollViewDelegate {
|
|
public:
|
|
ScrollViewDelegate();
|
|
KDPoint offset() const;
|
|
bool setOffset(KDPoint offset);
|
|
private:
|
|
KDPoint m_offset;
|
|
};
|
|
|
|
#endif
|