EPSImage.hpp

Go to the documentation of this file.
00001 #pragma ident "$Id: EPSImage.hpp 1644 2009-01-27 19:26:14Z ckiesch $"
00002 
00004 
00005 //============================================================================
00006 //
00007 //  This file is part of GPSTk, the GPS Toolkit.
00008 //
00009 //  The GPSTk is free software; you can redistribute it and/or modify
00010 //  it under the terms of the GNU Lesser General Public License as published
00011 //  by the Free Software Foundation; either version 2.1 of the License, or
00012 //  any later version.
00013 //
00014 //  The GPSTk is distributed in the hope that it will be useful,
00015 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
00016 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017 //  GNU Lesser General Public License for more details.
00018 //
00019 //  You should have received a copy of the GNU Lesser General Public
00020 //  License along with GPSTk; if not, write to the Free Software Foundation,
00021 //  Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00022 //  
00023 //  Copyright 2004, The University of Texas at Austin
00024 //
00025 //============================================================================
00026 
00027 
00028 #ifndef VDRAW_EPSIMAGE_H
00029 #define VDRAW_EPSIMAGE_H
00030 #include <string>
00031 #include "PSImageBase.hpp"
00032 #include "ViewerManager.hpp"
00033 
00034 namespace vdraw
00035 {
00038 
00046    class EPSImage : public PSImageBase {
00047 
00048    public:
00049 
00059       EPSImage(std::ostream& stream, double llx, double lly,
00060                 double urx, double ury,
00061                 ORIGIN_LOCATION iloc=LOWER_LEFT);
00062 
00063 
00073       EPSImage(const char* fname, double llx, double lly,
00074                 double urx, double ury,
00075                 ORIGIN_LOCATION iloc=LOWER_LEFT);
00076 
00078       ~EPSImage(void);
00079 
00081       void view (void) throw (VDrawException);
00082 
00084       ViewerManager viewerManager;
00085 
00086    protected:
00087 
00088    private:
00089 
00090       /* Location of the lower left and upper right corners.
00091        * Units are points. 72 points = one inch. 28 points = 1 cm.
00092       */
00093       double llx, lly, urx, ury;
00094 
00095       virtual void outputHeader(void);
00096       virtual void outputFooter(void);
00097    }; // class EPSImage
00098 
00100 
00101 } // end namespace vdraw
00102 
00103 #endif //VDRAW_EPSIMAGE_H
00104 

Generated on Wed Feb 8 03:30:59 2012 for GPS ToolKit Software Library by  doxygen 1.3.9.1