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 <ScrollBar.h> 10 11 class ObjectView; 12 13 class ResScroll : public BScrollBar { 14 public: 15 ResScroll(BRect r, const char* name, 16 ObjectView* target, orientation posture); 17 18 virtual void ValueChanged(float value); 19 20 private: 21 ObjectView* fObjectView; 22 }; 23 24 #endif // RESSCROLL_H 25