]> Creatis software - cpPlugins.git/blob - appli/cpPipelineEditor/QNEConnection.h
More on graph editor
[cpPlugins.git] / appli / cpPipelineEditor / QNEConnection.h
1 /* Copyright (c) 2012, STANISLAW ADASZEWSKI\r
2    All rights reserved.\r
3 \r
4    Redistribution and use in source and binary forms, with or without\r
5    modification, are permitted provided that the following conditions are met:\r
6    * Redistributions of source code must retain the above copyright\r
7    notice, this list of conditions and the following disclaimer.\r
8    * Redistributions in binary form must reproduce the above copyright\r
9    notice, this list of conditions and the following disclaimer in the\r
10    documentation and/or other materials provided with the distribution.\r
11    * Neither the name of STANISLAW ADASZEWSKI nor the\r
12    names of its contributors may be used to endorse or promote products\r
13    derived from this software without specific prior written permission.\r
14 \r
15    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND\r
16    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r
17    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r
18    DISCLAIMED. IN NO EVENT SHALL STANISLAW ADASZEWSKI BE LIABLE FOR ANY\r
19    DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r
20    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
21    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\r
22    ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
23    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\r
24    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
25 */\r
26 \r
27 #ifndef __PIPELINEEDITOR__QNECONNECTION__H__\r
28 #define __PIPELINEEDITOR__QNECONNECTION__H__\r
29 \r
30 #include <QGraphicsPathItem>\r
31 \r
32 namespace PipelineEditor\r
33 {\r
34   class QNEInputPort;\r
35   class QNEOutputPort;\r
36 \r
37   /**\r
38    */\r
39   class QNEConnection\r
40     : public QGraphicsPathItem\r
41   {\r
42   public:\r
43     typedef QNEConnection     Self;\r
44     typedef QGraphicsPathItem Superclass;\r
45 \r
46   public:\r
47     enum { Type = QGraphicsItem::UserType + 5 };\r
48 \r
49     QNEConnection( QGraphicsItem* parent = 0, QGraphicsScene* scene = 0 );\r
50     virtual ~QNEConnection( );\r
51 \r
52     void setPos1( const QPointF& p );\r
53     void setPos2( const QPointF& p );\r
54     void setPort1( QNEOutputPort* p );\r
55     void setPort2( QNEInputPort* p );\r
56     void updatePosFromPorts( );\r
57     void updatePath( );\r
58     QNEOutputPort* port1( ) const;\r
59     QNEInputPort* port2( ) const;\r
60 \r
61     inline int type( ) const\r
62       { return( this->Type ); }\r
63 \r
64   private:\r
65     QPointF m_Pos1;\r
66     QPointF m_Pos2;\r
67     QNEOutputPort* m_Port1;\r
68     QNEInputPort*  m_Port2;\r
69   };\r
70 \r
71 } // ecapseman\r
72 \r
73 #endif // __PIPELINEEDITOR__QNECONNECTION__H__\r
74 \r
75 // eof - $RCSfile$\r