]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsKernelEditorGraphic/GConnectorModel.h
9a79ad4fcc39e3d3710b81876e612ea66fa03b33
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsKernelEditorGraphic / GConnectorModel.h
1 /*=========================================================================                                                                               
2 Program:   bbtk
3 Module:    $RCSfile$
4 Language:  C++
5 Date:      $Date$
6 Version:   $Revision$
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
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.
20 *
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
25 *  liability. 
26 *
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 * ------------------------------------------------------------------------ */                                                                         
30
31
32 /****
33 * Design and Developpement of BBTK GEditor
34 * Ricardo A Corredor J <ra.corredor67@uniandes.edu.co>
35 * RaC - 2010
36 ****/
37
38 #ifndef __GConnectorModel_h__
39 #define __GConnectorModel_h__
40
41 //Includes same project
42 #include "GlobalConstants.h"
43 #include "GObjectModel.h"
44 #include "GPortModel.h"
45
46 //Includes creaMaracasVisu
47 #include <manualContourModel.h>
48
49 //Includes std
50 #include <iostream>
51
52
53 namespace bbtk
54 {
55
56         class GConnectorModel : public GObjectModel 
57         {
58
59         public: 
60
61                 //Constructors
62                 GConnectorModel();
63                 ~GConnectorModel();
64                 
65                 //Public methods
66
67                 // Sets the start port of the connection that will be used in the manualContourModel
68                 void setStartPort(GPortModel* startPort);
69
70                 // Sets the end port in the BBTKGEditor connector model and also in the contour model
71                 void setEndPort(GPortModel* endPort);
72
73                 // Assigns the creaMaracasVisu model
74                 void setManualContourModel(manualContourModel* model);
75                 manualContourModel* getManualContourModel();
76
77                 GPortModel* getStartPort();
78                 GPortModel* getEndPort();               
79
80                 // Refresh the position of the contourModel first and last points with the data of the connector model
81                 void updateStartEndPoints();
82
83                 // Set the ports as NO connected
84                 void disconnectConnection();
85
86                 virtual void save(std::string &content);
87                 
88         private:
89
90                 //Private Attributes
91
92                 GPortModel* _startPort;
93                 GPortModel* _endPort;
94
95                 manualContourModel* _model;
96
97                 //Private Methods
98
99         protected:
100
101                 //Protected Attributes
102
103                 //Protected methods
104                 
105         };
106
107
108 }
109 // namespace bbtk
110 #endif
111