1 /* 2 * Copyright 2006, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Stephan Aßmus <superstippi@gmx.de> 7 */ 8 9 #ifndef CANVAS_VIEW_H 10 #define CANVAS_VIEW_H 11 12 #include "StateView.h" 13 14 class CanvasView : public StateView { 15 public: 16 CanvasView(BRect frame); 17 virtual ~CanvasView(); 18 19 protected: 20 // StateView interface 21 virtual bool _HandleKeyDown(uint32 key, uint32 modifiers); 22 23 private: 24 }; 25 26 #endif // CANVAS_VIEW_H 27