]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/Histogram.h
#2490 creaMaracasVisu Feature New High - Histogram Interaction
[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 "HistogramBase.h"
45 #include "marTypes.h"
46 #include "pPlotterWindow.h"
47 #include "pFunctionPoint.h"
48 #include "vtkImageData.h"
49 #include "pHistogram.h"
50 #include "pPlotterScaleY.h"
51 #include "pPlotterScaleX.h"
52
53 //#define MAX 500
54 #define NUM_POINTS 100
55 #define WINDOW_SIZE 10
56
57 class creaMaracasVisu_EXPORT Histogram:public wxPanel, HistogramBase
58 {
59 public:
60         //---------------------
61         // Constructor
62         //----------------------
63
64         //HistogramWidget( wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, int flag );
65         
66  
67 //EED Borrame 07Mai2009
68 //      Histogram( wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, int flag,vtkImageData* imageData);
69         Histogram( wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, int flag);
70         
71         ~Histogram();
72
73         /*
74         Draw the histogram in the plotter
75         */
76         void drawHistogram();
77         /*
78                 if the user resize the window   
79         */
80         void OnSize( wxSizeEvent &WXUNUSED(event) );
81         //---------------------------------------
82         // Get Information from the widget
83         //---------------------------------------
84         
85         /*
86                 get a point of the Histogram
87                 given the grey value
88         */
89         int getHistogramPoint(int gValue);
90         int getHistogramSize();
91         pPlotterWindow* GetPlotterWindow(); 
92         virtual void Configure(vtkImageData* imageData);
93         virtual wxWindow* GetWindow();
94
95 private:
96         
97          pHistogram*            histogram;
98          pPlotterWindow*        plotter;
99          int                                    histogramSize;
100          int                                    idHistogram;
101          
102          
103          DECLARE_CLASS(Histogram);
104          //----------------------------------------------------------------------------
105         // wxWidget macro use declaration for handdling events
106         //----------------------------------------------------------------------------
107         DECLARE_EVENT_TABLE()
108         
109 };
110 #endif
111
112