]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/HistogramBase.h
#2490 creaMaracasVisu Feature New High - Histogram Interaction
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / pPlotter / HistogramBase.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 __HISTOGRAMBASE__
27 #define __HISTOGRAMBASE__
28
29
30 // ----------------------------------------------------------------------------
31 // wx headers inclusion.
32 // For compilers that support precompilation, includes <wx/wx.h>.
33 // ----------------------------------------------------------------------------
34 #include <wx/wxprec.h>
35 #ifdef __BORLANDC__
36 #pragma hdrstop
37 #endif
38 #ifndef WX_PRECOMP
39 #include <wx/wx.h>
40 #endif
41
42 #include "marTypes.h"
43 #include "vtkImageData.h"
44 #include "mBarRange2.h"
45
46
47 class creaMaracasVisu_EXPORT HistogramBase
48 {
49 public:
50         //---------------------
51         // Constructor
52         //----------------------
53         HistogramBase();
54         ~HistogramBase();
55         virtual wxWindow* GetWindow() = 0;
56         virtual void Configure(vtkImageData*) = 0;
57         virtual HistogramBase* GetConcretComponent();
58 private:
59 protected:
60 };
61
62
63
64 //-----------------------------------------------------------------------------
65 //-----------------------------------------------------------------------------
66 //-----------------------------------------------------------------------------
67 class creaMaracasVisu_EXPORT HistogramDecorator:public HistogramBase
68 {
69 public:
70         HistogramDecorator();
71         ~HistogramDecorator();
72         virtual wxWindow* GetWindow() = 0;
73         virtual void Configure(vtkImageData*) = 0;
74         virtual HistogramBase* GetConcretComponent();
75 private:
76 protected:
77         HistogramBase*  _histogrambase;
78 };
79
80
81
82 //-----------------------------------------------------------------------------
83 //-----------------------------------------------------------------------------
84 //-----------------------------------------------------------------------------
85 class creaMaracasVisu_EXPORT HistogramMinMaxLevel:public HistogramDecorator,  wxEvtHandler
86 {
87 public:
88         //---------------------
89         // Constructor
90         //----------------------
91         HistogramMinMaxLevel(HistogramBase* histogrambase);
92         ~HistogramMinMaxLevel();
93         virtual wxWindow* GetWindow();
94         virtual void Configure(vtkImageData*);
95         void onBarRangeChange(wxCommandEvent& event);
96
97 private:
98         wxPanel*                        _panel;
99         mBarRange2*             _barrange2;
100 protected:
101 };
102
103
104 #endif  // __HISTOGRAMBASE__
105
106