xref: /haiku/src/tests/kits/opengl/glinfo/GearsView.h (revision 25a7b01d15612846f332751841da3579db313082)
1*70c51973SJohn Scipione /*
2*70c51973SJohn Scipione  * Copyright 2012 Haiku Inc. All rights reserved.
3*70c51973SJohn Scipione  * Distributed under the terms of the MIT License.
4*70c51973SJohn Scipione  */
5*70c51973SJohn Scipione #ifndef GEARS_VIEW_H
6*70c51973SJohn Scipione #define GEARS_VIEW_H
7*70c51973SJohn Scipione 
8*70c51973SJohn Scipione 
9*70c51973SJohn Scipione #include <View.h>
10*70c51973SJohn Scipione 
11*70c51973SJohn Scipione 
12*70c51973SJohn Scipione class BBitmap;
13*70c51973SJohn Scipione 
14*70c51973SJohn Scipione class GearsView : public BView {
15*70c51973SJohn Scipione public:
16*70c51973SJohn Scipione 								GearsView();
17*70c51973SJohn Scipione 	virtual						~GearsView();
18*70c51973SJohn Scipione 
19*70c51973SJohn Scipione 	virtual	void				Draw(BRect updateRect);
20*70c51973SJohn Scipione 
21*70c51973SJohn Scipione protected:
22*70c51973SJohn Scipione 			void				_InitGearsBitmap();
23*70c51973SJohn Scipione 
24*70c51973SJohn Scipione private:
25*70c51973SJohn Scipione 			BBitmap*			fGears;
26*70c51973SJohn Scipione };
27*70c51973SJohn Scipione 
28*70c51973SJohn Scipione 
29*70c51973SJohn Scipione #endif	/* GEARS_VIEW_H */
30