git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
30 lines
361 B
C++
30 lines
361 B
C++
/*
|
|
|
|
MouseView.h
|
|
|
|
*/
|
|
|
|
#ifndef MOUSE_VIEW_H
|
|
#define MOUSE_VIEW_H
|
|
|
|
#include <Box.h>
|
|
#include <Bitmap.h>
|
|
|
|
class MouseView : public BBox
|
|
{
|
|
public:
|
|
typedef BBox inherited;
|
|
|
|
MouseView(BRect frame);
|
|
virtual void Draw(BRect frame);
|
|
|
|
private:
|
|
BBox *fBox;
|
|
|
|
BBitmap *fDoubleClickBitmap;
|
|
BBitmap *fSpeedBitmap;
|
|
BBitmap *fAccelerationBitmap;
|
|
};
|
|
|
|
#endif
|