]> Creatis software - cpPlugins.git/blob - appli/cpPipelineEditor/QNEBlock.h
...
[cpPlugins.git] / appli / cpPipelineEditor / QNEBlock.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__QNEBLOCK__H__\r
28 #define __PIPELINEEDITOR__QNEBLOCK__H__\r
29 \r
30 #include <QGraphicsPathItem>\r
31 #include <cpPlugins/Interface/ProcessObject.h>\r
32 \r
33 namespace PipelineEditor\r
34 {\r
35   class QNEPort;\r
36   class QNENamePort;\r
37   class QNETypePort;\r
38   class QNEInputPort;\r
39   class QNEOutputPort;\r
40 \r
41   class QNEBlock\r
42     : public QGraphicsPathItem\r
43   {\r
44   public:\r
45     typedef QNEBlock          Self;\r
46     typedef QGraphicsPathItem Superclass;\r
47     typedef cpPlugins::Interface::ProcessObject TFilter;\r
48   \r
49   public:\r
50     enum { Type = QGraphicsItem::UserType + 6 };\r
51 \r
52     QNEBlock(\r
53       TFilter* filter,\r
54       QGraphicsItem* parent = NULL, QGraphicsScene* scene = NULL\r
55       );\r
56     virtual ~QNEBlock( );\r
57 \r
58     void setNamePort( const QString& txt );\r
59     QNEInputPort* addInputPort( const QString& txt );\r
60     QNEOutputPort* addOutputPort( const QString& txt );\r
61     QNEInputPort* inputPort( const QString& txt );\r
62     QNEOutputPort* outputPort( const QString& txt );\r
63 \r
64     const QString& namePort( ) const;\r
65     const QNEInputPort* inputPort( const QString& txt ) const;\r
66     const QNEOutputPort* outputPort( const QString& txt ) const;\r
67 \r
68     inline int type( ) const\r
69       { return( this->Type ); }\r
70 \r
71     void paint(\r
72       QPainter* painter,\r
73       const QStyleOptionGraphicsItem* option,\r
74       QWidget* widget\r
75       );\r
76     \r
77   protected:\r
78     QVariant itemChange( GraphicsItemChange change, const QVariant& value );\r
79     void _setTypePort( const QString& txt );\r
80     void _configPort( QNEPort* port );\r
81 \r
82     virtual void mouseReleaseEvent( QGraphicsSceneMouseEvent* evt );\r
83 \r
84   private:\r
85     int m_HorzMargin;\r
86     int m_VertMargin;\r
87     int m_Width;\r
88     int m_Height;\r
89 \r
90     QNENamePort* m_NamePort;\r
91     QNETypePort* m_TypePort;\r
92     std::map< std::string, QNEInputPort* >  m_InputPorts;\r
93     std::map< std::string, QNEOutputPort* > m_OutputPorts;\r
94 \r
95     TFilter::Pointer m_Filter;\r
96   };\r
97 \r
98 } // ecapseman\r
99 \r
100 #endif // __PIPELINEEDITOR__QNEBLOCK__H__\r
101 \r
102 // eof - $RCSfile$\r