dot.h

Go to the documentation of this file.
00001 #ifndef DOT_CLASS
00002 #define DOT_CLASS
00003 
00004 /*****************************************************************************\
00005 *                                                                             *
00006 *  Name   : dot                                                               *
00007 *  Author : Chris Koeritz                                                     *
00008 *                                                                             *
00009 *  Purpose:                                                                   *
00010 *                                                                             *
00011 *    Allows points to be plotted on a canvas.                                 *
00012 *                                                                             *
00013 *******************************************************************************
00014 * Copyright (c) 1991-$now By Author.  This program is free software; you can  *
00015 * redistribute it and/or modify it under the terms of the GNU General Public  *
00016 * License as published by the Free Software Foundation; either version 2 of   *
00017 * the License or (at your option) any later version.  This is online at:      *
00018 *     http://www.fsf.org/copyleft/gpl.html                                    *
00019 * Please send any updates to: fred@gruntose.com                               *
00020 \*****************************************************************************/
00021 
00022 #include "paintable.h"
00023 
00024 class WP_PASSIVE_CLASS_STYLE dot : public paintable
00025 {
00026 public:
00027   dot(canvas &draw_on, const c_point &origin, const color &foreground = colors::WHITE,
00028       bool attach = true);
00029   dot(canvas &draw_on, float x, float y, const color &foreground = colors::WHITE,
00030       bool attach = true);
00031   virtual c_rectangle dimensions() const;
00032   virtual void plot(const color &to_plot_in);
00033 
00034 private:
00035   c_point _origin;
00036 };
00037 
00038 #endif

Generated on Thu Nov 20 04:28:51 2008 for HOOPLE Libraries by  doxygen 1.5.1