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