xref: /haiku/src/apps/glteapot/ResScroll.h (revision 4f00613311d0bd6b70fa82ce19931c41f071ea4e)
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 
23 #endif
24