Fawkes API  Fawkes Development Version
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
geom_drawer.cpp
1 
2 /***************************************************************************
3  * geom_drawer.cpp - Drawer base class
4  *
5  * Created: Thu Oct 09 15:38:19 2008
6  * Copyright 2008 Daniel Beck
7  *
8  ****************************************************************************/
9 
10 /* This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version. A runtime exception applies to
14  * this software (see LICENSE.GPL_WRE file mentioned below for details).
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Library General Public License for more details.
20  *
21  * Read the full text in the LICENSE.GPL_WRE file in the doc directory.
22  */
23 
24 #include <geometry/gtk/geom_drawer.h>
25 
26 /** @class fawkes::GeomDrawer <geometry/gtk/geom_drawer.h>
27  * Abstract base class for all drawer classes. All objects that have
28  * corresponding drawer classes can easily be drawn on a
29  * GeomDrawingArea.
30  * @author Daniel Beck
31  */
32 
33 /** @fn void fawkes::GeomDrawer::draw(Cairo::RefPtr<Cairo::Context>& context)
34  * This method is called by the GeomDrawingArea. Here, derived classes
35  * should implement the drawing code.
36  * @param context the drawing context
37  */
38 
39 namespace fawkes {
40 
41 /** Constructor. */
43 {
44 }
45 
46 /** Destructor. */
48 {
49 }
50 
51 } // end namespace fawkes
virtual ~GeomDrawer()
Destructor.
Definition: geom_drawer.cpp:47
GeomDrawer()
Constructor.
Definition: geom_drawer.cpp:42