cmtkQtRenderImageRGB.h

Go to the documentation of this file.
00001 /*
00002 //
00003 //  Copyright 1997-2009 Torsten Rohlfing
00004 //
00005 //  Copyright 2004-2010 SRI International
00006 //
00007 //  This file is part of the Computational Morphometry Toolkit.
00008 //
00009 //  http://www.nitrc.org/projects/cmtk/
00010 //
00011 //  The Computational Morphometry Toolkit is free software: you can
00012 //  redistribute it and/or modify it under the terms of the GNU General Public
00013 //  License as published by the Free Software Foundation, either version 3 of
00014 //  the License, or (at your option) any later version.
00015 //
00016 //  The Computational Morphometry Toolkit is distributed in the hope that it
00017 //  will be useful, but WITHOUT ANY WARRANTY; without even the implied
00018 //  warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019 //  GNU General Public License for more details.
00020 //
00021 //  You should have received a copy of the GNU General Public License along
00022 //  with the Computational Morphometry Toolkit.  If not, see
00023 //  <http://www.gnu.org/licenses/>.
00024 //
00025 //  $Revision: 2356 $
00026 //
00027 //  $LastChangedDate: 2010-09-24 11:54:25 -0700 (Fri, 24 Sep 2010) $
00028 //
00029 //  $LastChangedBy: torstenrohlfing $
00030 //
00031 */
00032 
00033 #ifndef __cmtkQtRenderImageRGB_h_included_
00034 #define __cmtkQtRenderImageRGB_h_included_
00035 
00036 #include <cmtkconfig.h>
00037 
00038 #include <Pipeline/cmtkRenderer.h>
00039 
00040 #include <qobject.h>
00041 #include <qwidget.h>
00042 #include <qimage.h>
00043 #include <qpixmap.h>
00044 #include <qpaintdevice.h>
00045 
00046 #include <Base/cmtkMacros.h>
00047 #include <Base/cmtkTypes.h>
00048 
00049 #include <QMouseEvent>
00050 #include <QPaintEvent>
00051 
00052 namespace
00053 cmtk
00054 {
00055 
00058 
00061 class QtRenderImageRGB :
00063   public QWidget,
00065   public Renderer
00066 {
00067   Q_OBJECT
00068 
00070   igsClassParameter(unsigned int,ZoomFactorPercent);
00071 
00073   igsClassParameter(bool,FlipX);
00074 
00076   igsClassParameter(bool,FlipY);
00077 
00079   typedef enum {
00081     AspectNone,
00083     AspectX,
00085     AspectY,
00087     AspectAuto
00088   } AspectMode;
00089 
00091   igsClassParameter(AspectMode,ImageAspectMode);
00092 
00094   igsClassParameter(bool,CrosshairMode);
00095 
00097   igsClassParameter2Array(unsigned int,CrosshairPosition);
00098 
00100   igsClassParameter2Array(QColor,CrosshairColors);
00101 
00102 public:
00104   QtRenderImageRGB( QWidget *const parent = 0, Qt::WFlags f = 0 );
00105 
00107   virtual ~QtRenderImageRGB();
00108 
00110   virtual void Execute();
00111 
00113   QPixmap GetPixmap();
00114 
00116   void RenderTo( QPaintDevice *pd );
00117 
00119   virtual void Render()
00120   {
00121     this->Renderer::Render();
00122     this->update();
00123   }
00124 
00125 signals:
00127   void signalMousePressed( Qt::MouseButton button, int x, int y );
00128 
00130   void signalMouse3D( Qt::MouseButton button, const Vector3D& v );
00131 
00132 protected:
00134   virtual void paintEvent( QPaintEvent *const );
00135 
00137   virtual void mousePressEvent( QMouseEvent *e );
00138 
00140   virtual void mouseMoveEvent( QMouseEvent *e );
00141 
00142 private:
00144   QImage Image;
00145 
00147   void DrawCrosshair( QPainter &painter, const unsigned int width, const unsigned int height ) const;
00148 };
00149 
00151 
00152 } // namespace cmtk
00153 
00154 #endif // #ifndef __cmtkQtRenderImageRGB_h_included_
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines