/////////////////////////////////////////////////////////////////////////////// // $Id: DrawingArea.hxx,v 1.1 1995/01/08 06:50:55 bmott Exp $ /////////////////////////////////////////////////////////////////////////////// // // DrawingArea.hxx - DrawingArea widget class // // // Bradford W. Mott // Copyright (C) 1994 // December 13,1994 // /////////////////////////////////////////////////////////////////////////////// // $Log: DrawingArea.hxx,v $ // Revision 1.1 1995/01/08 06:50:55 bmott // Initial revision // /////////////////////////////////////////////////////////////////////////////// #ifndef DRAWINGAREA_HXX #define DRAWINGAREA_HXX #include "BasicWidget.hxx" class DrawingArea : public BasicWidget { protected: // Called whenever an event arrives for me (I need to override the default) virtual void handleEvent(XEvent* event); public: // Constructor DrawingArea(ContainerWidget* parent, const char *const widgetName, int x, int y, int width, int height); // Destructor ~DrawingArea(); // Answer the name of my class virtual const char *const className() const {return ("DrawingArea");} }; #endif