1 /* 2 Copyright 1999, Be Incorporated. All Rights Reserved. 3 This file may be used under the terms of the Be Sample Code License. 4 */ 5 6 #ifndef RESSCROLL_H 7 #define RESSCROLL_H 8 9 #include <interface/ScrollBar.h> 10 11 class ObjectView; 12 13 class ResScroll : public BScrollBar { 14 public: 15 ObjectView * objectView; 16 17 ResScroll(BRect r, const char *name, 18 ObjectView *target, orientation posture); 19 virtual void ValueChanged(float value); 20 }; 21 22 #endif 23