]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/LogicalColorBar.h
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / pPlotter / LogicalColorBar.h
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 #ifndef __LOGICAL_COLOR_BAR__
27 #define __LOGICAL_COLOR_BAR__
28
29 // -----------------------------------------------------------------------------------------------------------
30 // WX headers inclusion.
31 // For compilers that support precompilation, includes <wx/wx.h>.
32 // -----------------------------------------------------------------------------------------------------------
33 #include <wx/wxprec.h>
34 #ifdef __BORLANDC__
35 #pragma hdrstop
36 #endif
37 #ifndef WX_PRECOMP
38 #include <wx/wx.h>
39 #endif
40
41
42 //------------------------------------------------------------------------------------------------------------
43 // Includes
44 //------------------------------------------------------------------------------------------------------------
45
46 #include <vector>
47 #include <math.h>
48 #include <iostream>
49 #include <string>
50 #include <deque>
51 #include <vector>
52
53 #include "pColorPoint.h"
54
55 /** file LogicalColorBar.h */
56 class LogicalColorBar {
57
58 public:
59
60         //------------------------------------------------------------------------------------------------------------
61         // Constructors & Destructors
62         //------------------------------------------------------------------------------------------------------------
63
64         LogicalColorBar ();
65
66         ~LogicalColorBar();
67
68         //------------------------------------------------------------------------------------------------------------
69         // Methods
70         //------------------------------------------------------------------------------------------------------------
71
72         /*
73         * Gets the first point
74         */
75         pColorPoint * getFirstPoint();
76
77         /*
78         * Gets the last point
79         */
80         pColorPoint * getLastPoint();
81
82         double getMinValue();
83
84         void  setMinValue(double valueMin);
85
86         double getMaxValue();
87
88         void setMaxValue(double valueMax);
89
90         bool getOrientation();
91
92         void setOrientation(bool orientation);
93
94         bool addColorPoint(double xRealValue, wxColour theColour);
95
96         bool deleteColorPoint ( double  valErase );
97
98         //void getListIndexRangeLimits( int &startIndex, int &endIndex, int startSearched, int endSearched );
99         
100         void getPointersToRangeLimits( std::deque<pColorPoint *> &theInputQueue, int &startIndex, int &endIndex, int startSearched, int endSearched );
101
102         pColorPoint * getLastAddedPoint();
103
104         pColorPoint * getPointAtIndex(int anIndex);
105
106         int getCount();
107
108         void getDataAt(int index, double &x,int &red,int &green,int &blue);
109
110         void clearPoints();
111
112         double getMinAddedValue();
113
114         double getMaxAddedValue();
115
116         void changeColor(double pointValue, wxColour theNewColor);
117
118         bool setColorPoints (std::vector<pColorPoint *> pointsVector);
119 //      
120 //private: 
121
122         bool bar_orientation;
123
124         //wxList        logicColorPoints;
125         std::vector<pColorPoint * > logicColorPoints;
126
127         pColorPoint * lastAddedPoint;
128
129         double minValue;
130
131         double maxValue;
132
133         //DECLARE_CLASS(LogicalColorBar)
134 };      
135 #endif 
136
137
138