]> Creatis software - cpPlugins.git/blob - libs/cpPipelineEditor/Canvas.cxx
...
[cpPlugins.git] / libs / cpPipelineEditor / Canvas.cxx
1 // -------------------------------------------------------------------------
2 // @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co)
3 // -------------------------------------------------------------------------
4
5 #include <cpPipelineEditor/Canvas.h>
6
7 // -------------------------------------------------------------------------
8 cpPipelineEditor::Canvas::
9 Canvas( QWidget* parent )
10   : Superclass( parent )
11 {
12   this->m_Scene = new QGraphicsScene( this );
13   this->setScene( this->m_Scene );
14   this->setRenderHint( QPainter::Antialiasing );
15   this->setAcceptDrops( true );
16 }
17
18 // -------------------------------------------------------------------------
19 cpPipelineEditor::Canvas::
20 ~Canvas( )
21 {
22 }
23
24 // eof - $RCSfile$