]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/Histogram.h
3bd3b081ec785efaf2680abd6461d422f09d3f9d
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / pPlotter / Histogram.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
27
28 #ifndef __HISTOGRAMW1__
29 #define __HISTOGRAMW1__
30
31
32 // ----------------------------------------------------------------------------
33 // wx headers inclusion.
34 // For compilers that support precompilation, includes <wx/wx.h>.
35 // ----------------------------------------------------------------------------
36 #include <wx/wxprec.h>
37 #ifdef __BORLANDC__
38 #pragma hdrstop
39 #endif
40 #ifndef WX_PRECOMP
41 #include <wx/wx.h>
42 #endif
43
44 #include "marTypes.h"
45 #include "pPlotterWindow.h"
46 #include "pFunctionPoint.h"
47 #include  "vtkImageData.h"
48 #include "pHistogram.h"
49 #include "pPlotterScaleY.h"
50 #include "pPlotterScaleX.h"
51
52 //#define MAX 500
53 #define NUM_POINTS 100
54 #define WINDOW_SIZE 10
55
56 class creaMaracasVisu_EXPORT Histogram:public wxPanel
57 {
58 public:
59         //---------------------
60         // Constructor
61         //----------------------
62
63         //HistogramWidget( wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, int flag );
64         
65  
66 //EED Borrame 07Mai2009
67 //      Histogram( wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, int flag,vtkImageData* imageData);
68         Histogram( wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, int flag);
69         
70         ~Histogram();
71
72         /*
73         Draw the histogram in the plotter
74         */
75         void drawHistogram();
76         /*
77                 if the user resize the window   
78         */
79         void OnSize( wxSizeEvent &WXUNUSED(event) );
80         //---------------------------------------
81         // Get Information from the widget
82         //---------------------------------------
83         
84         /*
85                 get a point of the Histogram
86                 given the grey value
87         */
88         int getHistogramPoint(int gValue);
89         int getHistogramSize();
90         void Configure(vtkImageData* imageData);
91         
92 private:
93         
94          pHistogram*            histogram;
95          pPlotterWindow*        plotter;
96          int                            histogramSize;
97          int                             idHistogram;
98          
99          
100          DECLARE_CLASS(Histogram);
101          //----------------------------------------------------------------------------
102         // wxWidget macro use declaration for handdling events
103         //----------------------------------------------------------------------------
104         DECLARE_EVENT_TABLE()
105         
106 };
107 #endif
108
109