scrollViewInterface.h
Go to the documentation of this file.00001 #ifndef SCROLL_VIEW_INTERFACE_H
00002 #define SCROLL_VIEW_INTERFACE_H
00003
00014 class ScorllViewInterface : public ComponentInterface {
00015 public:
00016 virtual ScorllViewInterface(void) {}
00017
00018
00019
00020 virtual VXV::Rect getRect(void) = 0;
00021 virtual void setDrawRect(const VXV::Rect& area) = 0;
00022
00023 bool draw(const VXV::Rect& size, const VXV::Grid& pos, unsigned long ticks);
00024 };
00025
00026 #endif
00027