1 /*=========================================================================
7 =========================================================================*/
9 /* ---------------------------------------------------------------------
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
14 * This software is governed by the CeCILL-B license under French law and
15 * abiding by the rules of distribution of free software. You can use,
16 * modify and/ or redistribute the software under the terms of the CeCILL-B
17 * license as circulated by CEA, CNRS and INRIA at the following URL
18 * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
19 * or in the file LICENSE.txt.
21 * As a counterpart to the access to the source code and rights to copy,
22 * modify and redistribute granted by the license, users are provided only
23 * with a limited warranty and the software's author, the holder of the
24 * economic rights, and the successive licensors have only limited
27 * The fact that you are presently reading this means that you have had
28 * knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */
33 * \brief Class bbtk::GPortModel
37 * Design and Developpement of BBTK GEditor
38 * Ricardo A Corredor J <ra.corredor67@uniandes.edu.co>
41 #include "GPortModel.h"
46 //=========================================================================
48 GPortModel::GPortModel( ) {
52 _isConnected = false ;
59 //=========================================================================
61 GPortModel::~GPortModel( ) {
63 //=========================================================================
65 void GPortModel::registerInBox( GBoxModel *blackBox , int portType , int pos ) {
66 _parentBox = blackBox ;
67 _portType = portType ;
69 updatePortPosition( ) ;
72 //=========================================================================
74 void GPortModel::updatePortPosition( ) {
75 double xInic , yInic , zInic , xFin , yFin , zFin ;
76 _parentBox->getInicPoint( xInic , yInic , zInic ) ;
77 _parentBox->getFinalPoint( xFin , yFin , zFin ) ;
79 double posX = xInic , posY = yInic , posZ = zInic ;
80 if ( _portType == GOUTPUTPORT ) {
82 } else if ( _portType == GINPUTPORT ) {
83 posY = yInic + PORT_HEIGHT ;
86 //Attribute '_posInBox' starts with value 0 and it represents the position of the port in the box from left to right
87 posX = xInic + ( PORT_WIDTH / 2 ) + _posInBox * 1.1 * PORT_WIDTH ;
89 setInicPoint( posX , posY , posZ ) ;
91 posX = posX + PORT_WIDTH ;
92 posY = posY - PORT_HEIGHT ;
94 setFinalPoint( posX , posY , posZ ) ;
98 //=========================================================================
100 int GPortModel::getPortType( ) {
104 //=========================================================================
106 int GPortModel::getPosInBox( ) {
110 //=========================================================================
112 std::string GPortModel::getStatusText( ) {
113 std::string temp = "" ;
116 if ( isValueSet( ) ) {
127 //=========================================================================
129 GBoxModel* GPortModel::getParentBox( ) {
133 //=========================================================================
135 bool GPortModel::isConnected( ) {
136 return _isConnected ;
139 //=========================================================================
141 void GPortModel::setConnected( bool value ) {
142 _isConnected = value ;
143 notifyObservers( _objectId ) ;
146 //=========================================================================
148 void GPortModel::setValue( std::string value ) {
150 //Removing Colons JPRG
151 _parentBox->removeColons(value);
154 if ( _value == "" ) {
155 _isValueSet = false ;
159 notifyObservers( _objectId ) ;
162 //=========================================================================
164 std::string GPortModel::getValue( ) {
165 //JPRG::Adding Colons
166 std::string text = _value;
167 _parentBox->addColons(text);
172 //=========================================================================
174 bool GPortModel::isValueSet( ) {
178 //=========================================================================
180 void GPortModel::save( std::string &content ) {
181 content += "PORT\n" ;
184 content += _bbtkName ;
190 //=========================================================================
192 } // EO namespace bbtk