00001 /* 00002 This file is part of geometria. 00003 00004 geometria is free software; you can redistribute it and/or modify 00005 it under the terms of the GNU General Public License as published 00006 by the Free Software Foundation; either version 2 of the License, 00007 or (at your option) any later version. 00008 00009 geometria is distributed in the hope that it will be useful, but 00010 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 00011 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 00012 License for more details. 00013 00014 You should have received a copy of the GNU General Public 00015 License along with geometria; if not, write to the Free Software 00016 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 00017 00018 (c) Philipp Moritz, 2006 00019 */ 00020 00021 #ifndef QT_DRAWING_CONTEXT_HPP 00022 #define QT_DRAWING_CONTEXT_HPP 00023 00024 #include "drawing_context.hpp" 00025 00026 #include <QtGui/QtGui> 00027 00028 class qt_drawing_context : public drawing_context 00029 { 00030 private: 00031 QPainter& m_p; 00032 public: 00033 qt_drawing_context(QPainter& p); 00034 virtual ~qt_drawing_context(void); 00035 00036 virtual void draw_point(double x, double y); 00037 virtual void draw_line(double x1, double y1, double x2, double y2); 00038 }; 00039 00040 #endif