Analysis  version 7.0 - august 2014
GEVPlotPropertiesEditor.hh
Go to the documentation of this file.
1 //======================================================================
2 /*! \file GEVPlotPropertiesEditor.hh
3  *
4  * Déclaration de la classe GEVPlotPropertiesEditor, qui est
5  * une interface graphique pour éditer les propriétés d'un tracé. * * 14 septembre 2009 * - nouveau widget pour mode de tracé (Root2.9 : classe RGHistoPlotModeSelect) * - prise en compte des spectres 3D */ //====================================================================== #ifndef GEV_PLOT_PROPERTIES_EDITOR_HH #define GEV_PLOT_PROPERTIES_EDITOR_HH #include "GEVPlot.hh" // includes ROOT #include <TGFrame.h> #include <TGButton.h> #include "RGLineAttrSelect.hh" #include "RGFillAttrSelect.hh" #include "RGMarkerAttrSelect.hh" #include "RGHistoPlotModeSelect.hh" //====================================================================== /*! \class GEVPlotPropertiesEditor * * Interface graphique permettant d'éditer les propriétés d'une * zone graphique. */ class GEVPlotPropertiesEditor : public TGTransientFrame { //---------------------------------------------------------------------- /*! \object_doc */ GObject(GEVPlotPropertiesEditor); //---------------------------------------------------------------------- protected: GEVPlot * plot_ptr; ///< Pointeur sur le tracé à modifier GEVPlotProperties init_properties; ///< Propriétés initiales du tracé GEVPad * pad_ptr; ///< Pointeur sur la zone graphique contenant le tracé #ifndef __MAKECINT__ int * result_ptr; ///< Pointeur sur le résultat en sortie de la requête #endif bool update; ///< Teste s'il faut mettre à jour en sortie // widgets de l'interface RGLineAttrSelect * w_line_attr; ///< Attributs de ligne RGFillAttrSelect * w_fill_attr; ///< Attributs de remplissage RGMarkerAttrSelect * w_marker_attr; ///< Attributs de marqueur RGHistoPlotModeSelect * w_plot_mode; ///< Mode de tracé TGComboBox * w_scale_mode; ///< Type de mise à l'échelle TGNumberEntry * w_scale_value; ///< Valeur du paramètre d'échelle TGTextButton * w_button_ok; ///< Bouton de validation TGTextButton * w_button_apply; ///< Bouton d'affichage TGTextButton * w_button_cancel; ///< Bouton d'annulation public: //---------------------------------------------------------------------- // Constructeur, destructeur, affectation GEVPlotPropertiesEditor ( GEVPlot &plot, GEVPad *pad, int &result ); virtual ~GEVPlotPropertiesEditor ( ); protected: GEVPlotPropertiesEditor ( const GEVPlotPropertiesEditor & original ); //---------------------------------------------------------------------- public: virtual void Construct ( ); virtual void Start ( ); //---------------------------------------------------------------------- // Fonctions associées virtual void Quit ( ); //---------------------------------------------------------------------- // Slots virtual void LineColorChanged ( Color_t c ); virtual void LineWidthChanged ( Width_t w ); virtual void LineStyleChanged ( Style_t s ); virtual void FillColorChanged ( Color_t c ); virtual void FillStyleChanged ( Style_t s ); virtual void MarkerColorChanged ( Color_t c ); virtual void MarkerStyleChanged ( Style_t s ); virtual void MarkerSizeChanged ( Size_t s ); virtual void PlotModeChanged ( Int_t m ); virtual void ScaleModeChanged ( Int_t m ); virtual void ScaleTextChanged ( const char * str ); // boutons principaux virtual void Ok ( ); virtual void Apply ( ); virtual void Cancel ( ); //---------------------------------------------------------------------- public: /*! Définition à usage de ROOT... */ ClassDef(GEVPlotPropertiesEditor,0); }; //---------------------------------------------------------------------- // FONCTIONS INLINE //---------------------------------------------------------------------- /*! Slot appelé lorsque la couleur de ligne est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::LineColorChanged ( Color_t c ) { plot_ptr->SetLineColor(c); } /*! Slot appelé lorsque l'épaisseur de ligne est sélectionnée. * \param w nouvelle épaisseur sélectionnée */ inline void GEVPlotPropertiesEditor::LineWidthChanged ( Width_t w ) { plot_ptr->SetLineWidth(w); } /*! Slot appelé lorsque le style de ligne est sélectionné. * \param s nouveau style sélectionné */ inline void GEVPlotPropertiesEditor::LineStyleChanged ( Style_t s ) { plot_ptr->SetLineStyle(s); } /*! Slot appelé lorsque la couleur de remplissage est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::FillColorChanged ( Color_t c ) { plot_ptr->SetFillColor(c); } /*! Slot appelé lorsque le type de remplissage est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::FillStyleChanged ( Style_t s ) { plot_ptr->SetFillStyle(s); } /*! Slot appelé lorsque la couleur de marqueur est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerColorChanged ( Color_t c ) { plot_ptr->SetMarkerColor(c); } /*! Slot appelé lorsque le type de marqueur est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerStyleChanged ( Style_t s ) { plot_ptr->SetMarkerStyle(s); } /*! Slot appelé lorsque la taille de marqueur est sélectionnée. * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
6  *
7  * 14 septembre 2009
8  * - nouveau widget pour mode de tracé (Root2.9 : classe RGHistoPlotModeSelect)
9  * - prise en compte des spectres 3D
10  */
11 //======================================================================
12 
13 #ifndef GEV_PLOT_PROPERTIES_EDITOR_HH
14 #define GEV_PLOT_PROPERTIES_EDITOR_HH
15 
16 #include "GEVPlot.hh"
17 
18 // includes ROOT
19 #include <TGFrame.h>
20 #include <TGButton.h>
21 
22 #include "RGLineAttrSelect.hh"
23 #include "RGFillAttrSelect.hh"
24 #include "RGMarkerAttrSelect.hh"
25 #include "RGHistoPlotModeSelect.hh"
26 
27 //======================================================================
28 /*! \class GEVPlotPropertiesEditor
29  *
30  * Interface graphique permettant d'éditer les propriétés d'une
31  * zone graphique.
32  */
33 
34 class GEVPlotPropertiesEditor : public TGTransientFrame
35 {
36 //----------------------------------------------------------------------
37  /*! \object_doc */
39 //----------------------------------------------------------------------
40 
41  protected:
42  GEVPlot * plot_ptr; ///< Pointeur sur le tracé à modifier
43  GEVPlotProperties init_properties; ///< Propriétés initiales du tracé29fc0!
44 
45  GEVPad * pad_ptr; ///< Pointeur sur la zone graphique contenant le tracé!
46 
47 #ifndef __MAKECINT__
48  int * result_ptr; ///< Pointeur sur le résultat en sortie de la requête
49 #endif
50  bool update; ///< Teste s'il faut mettre à jour en sortie
51 
52 
53  // widgets de l'interface
54  RGLineAttrSelect * w_line_attr; ///< Attributs de ligne
55  RGFillAttrSelect * w_fill_attr; ///< Attributs de remplissage
56  RGMarkerAttrSelect * w_marker_attr; ///< Attributs de marqueur
57 
58  RGHistoPlotModeSelect * w_plot_mode; ///< Mode de tracéct
59  TGComboBox * w_scale_mode; ///< Type de mise à l'échelle
60  TGNumberEntry * w_scale_value; ///< Valeur du paramètre d'échelle
61 
62  TGTextButton * w_button_ok; ///< Bouton de validation
63  TGTextButton * w_button_apply; ///< Bouton d'affichage
64  TGTextButton * w_button_cancel; ///< Bouton d'annulation
65 
66  public:
67 //----------------------------------------------------------------------
68 // Constructeur, destructeur, affectation
70  GEVPad *pad,
71  int &result );
72  virtual ~GEVPlotPropertiesEditor ( );
73 
74  protected:
76 
77 //----------------------------------------------------------------------
78  public:
79 
80  virtual void Construct ( );
81  virtual void Start ( );
82 
83 //----------------------------------------------------------------------
84 // Fonctions associées
85  virtual void Quit ( );
86 
87 //----------------------------------------------------------------------
88 // Slots
89 
90  virtual void LineColorChanged ( Color_t c );
91  virtual void LineWidthChanged ( Width_t w );
92  virtual void LineStyleChanged ( Style_t s );
93 
94  virtual void FillColorChanged ( Color_t c );
95  virtual void FillStyleChanged ( Style_t s );
96 
97  virtual void MarkerColorChanged ( Color_t c );
98  virtual void MarkerStyleChanged ( Style_t s );
99  virtual void MarkerSizeChanged ( Size_t s );
100 
101  virtual void PlotModeChanged ( Int_t m );
102  virtual void ScaleModeChanged ( Int_t m );
103  virtual void ScaleTextChanged ( const char * str );
104 
105  // boutons principaux
106  virtual void Ok ( );
107  virtual void Apply ( );
108  virtual void Cancel ( );
109 
110 
111 
112 //----------------------------------------------------------------------
113  public:
114  /*! Définition à usage de ROOT... */
116 };
117 
118 //----------------------------------------------------------------------
119 // FONCTIONS INLINE
120 //----------------------------------------------------------------------
121 
122 /*! Slot appelé lorsque la couleur de ligne est sélectionnée.
123  * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::LineColorChanged ( Color_t c ) { plot_ptr->SetLineColor(c); } /*! Slot appelé lorsque l'épaisseur de ligne est sélectionnée. * \param w nouvelle épaisseur sélectionnée */ inline void GEVPlotPropertiesEditor::LineWidthChanged ( Width_t w ) { plot_ptr->SetLineWidth(w); } /*! Slot appelé lorsque le style de ligne est sélectionné. * \param s nouveau style sélectionné */ inline void GEVPlotPropertiesEditor::LineStyleChanged ( Style_t s ) { plot_ptr->SetLineStyle(s); } /*! Slot appelé lorsque la couleur de remplissage est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::FillColorChanged ( Color_t c ) { plot_ptr->SetFillColor(c); } /*! Slot appelé lorsque le type de remplissage est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::FillStyleChanged ( Style_t s ) { plot_ptr->SetFillStyle(s); } /*! Slot appelé lorsque la couleur de marqueur est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerColorChanged ( Color_t c ) { plot_ptr->SetMarkerColor(c); } /*! Slot appelé lorsque le type de marqueur est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerStyleChanged ( Style_t s ) { plot_ptr->SetMarkerStyle(s); } /*! Slot appelé lorsque la taille de marqueur est sélectionnée. * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
124  */
126  { plot_ptr->SetLineColor(c); }
127 
128 /*! Slot appelé lorsque l'épaisseur de ligne est sélectionnée.
129  * \param w nouvelle épaisseur sélectionnée */ inline void GEVPlotPropertiesEditor::LineWidthChanged ( Width_t w ) { plot_ptr->SetLineWidth(w); } /*! Slot appelé lorsque le style de ligne est sélectionné. * \param s nouveau style sélectionné */ inline void GEVPlotPropertiesEditor::LineStyleChanged ( Style_t s ) { plot_ptr->SetLineStyle(s); } /*! Slot appelé lorsque la couleur de remplissage est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::FillColorChanged ( Color_t c ) { plot_ptr->SetFillColor(c); } /*! Slot appelé lorsque le type de remplissage est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::FillStyleChanged ( Style_t s ) { plot_ptr->SetFillStyle(s); } /*! Slot appelé lorsque la couleur de marqueur est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerColorChanged ( Color_t c ) { plot_ptr->SetMarkerColor(c); } /*! Slot appelé lorsque le type de marqueur est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerStyleChanged ( Style_t s ) { plot_ptr->SetMarkerStyle(s); } /*! Slot appelé lorsque la taille de marqueur est sélectionnée. * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
130  */
132  { plot_ptr->SetLineWidth(w); }
133 
134 /*! Slot appelé lorsque le style de ligne est sélectionné. * \param s nouveau style sélectionné */ inline void GEVPlotPropertiesEditor::LineStyleChanged ( Style_t s ) { plot_ptr->SetLineStyle(s); } /*! Slot appelé lorsque la couleur de remplissage est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::FillColorChanged ( Color_t c ) { plot_ptr->SetFillColor(c); } /*! Slot appelé lorsque le type de remplissage est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::FillStyleChanged ( Style_t s ) { plot_ptr->SetFillStyle(s); } /*! Slot appelé lorsque la couleur de marqueur est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerColorChanged ( Color_t c ) { plot_ptr->SetMarkerColor(c); } /*! Slot appelé lorsque le type de marqueur est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerStyleChanged ( Style_t s ) { plot_ptr->SetMarkerStyle(s); } /*! Slot appelé lorsque la taille de marqueur est sélectionnée. * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
135  * \param s nouveau style sélectionné */ inline void GEVPlotPropertiesEditor::LineStyleChanged ( Style_t s ) { plot_ptr->SetLineStyle(s); } /*! Slot appelé lorsque la couleur de remplissage est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::FillColorChanged ( Color_t c ) { plot_ptr->SetFillColor(c); } /*! Slot appelé lorsque le type de remplissage est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::FillStyleChanged ( Style_t s ) { plot_ptr->SetFillStyle(s); } /*! Slot appelé lorsque la couleur de marqueur est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerColorChanged ( Color_t c ) { plot_ptr->SetMarkerColor(c); } /*! Slot appelé lorsque le type de marqueur est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerStyleChanged ( Style_t s ) { plot_ptr->SetMarkerStyle(s); } /*! Slot appelé lorsque la taille de marqueur est sélectionnée. * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
136  */
138  { plot_ptr->SetLineStyle(s); }
139 
140 
141 /*! Slot appelé lorsque la couleur de remplissage est sélectionnée.
142  * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::FillColorChanged ( Color_t c ) { plot_ptr->SetFillColor(c); } /*! Slot appelé lorsque le type de remplissage est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::FillStyleChanged ( Style_t s ) { plot_ptr->SetFillStyle(s); } /*! Slot appelé lorsque la couleur de marqueur est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerColorChanged ( Color_t c ) { plot_ptr->SetMarkerColor(c); } /*! Slot appelé lorsque le type de marqueur est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerStyleChanged ( Style_t s ) { plot_ptr->SetMarkerStyle(s); } /*! Slot appelé lorsque la taille de marqueur est sélectionnée. * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
143  */
145  { plot_ptr->SetFillColor(c); }
146 
147 /*! Slot appelé lorsque le type de remplissage est sélectionnée.
148  * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::FillStyleChanged ( Style_t s ) { plot_ptr->SetFillStyle(s); } /*! Slot appelé lorsque la couleur de marqueur est sélectionnée. * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerColorChanged ( Color_t c ) { plot_ptr->SetMarkerColor(c); } /*! Slot appelé lorsque le type de marqueur est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerStyleChanged ( Style_t s ) { plot_ptr->SetMarkerStyle(s); } /*! Slot appelé lorsque la taille de marqueur est sélectionnée. * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
149  */
151  { plot_ptr->SetFillStyle(s); }
152 
153 
154 /*! Slot appelé lorsque la couleur de marqueur est sélectionnée.
155  * \param c nouvelle couleur sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerColorChanged ( Color_t c ) { plot_ptr->SetMarkerColor(c); } /*! Slot appelé lorsque le type de marqueur est sélectionnée. * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerStyleChanged ( Style_t s ) { plot_ptr->SetMarkerStyle(s); } /*! Slot appelé lorsque la taille de marqueur est sélectionnée. * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
156  */
158  { plot_ptr->SetMarkerColor(c); }
159 
160 /*! Slot appelé lorsque le type de marqueur est sélectionnée.
161  * \param s nouveau type sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerStyleChanged ( Style_t s ) { plot_ptr->SetMarkerStyle(s); } /*! Slot appelé lorsque la taille de marqueur est sélectionnée. * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
162  */
164  { plot_ptr->SetMarkerStyle(s); }
165 
166 /*! Slot appelé lorsque la taille de marqueur est sélectionnée.
167  * \param s nouvelle taille sélectionnée */ inline void GEVPlotPropertiesEditor::MarkerSizeChanged ( Size_t s ) { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); } //====================================================================== #endif
168  */
170  { plot_ptr->SetMarkerSize(w_marker_attr->GetMarkerSize()); }
171 
172 
173 //======================================================================
174 #endif
virtual void Quit()
Definition: GEVPlotPropertiesEditor.cpp:334
virtual void MarkerSizeChanged(Size_t s)
Definition: GEVPlotPropertiesEditor.hh:169
virtual void PlotModeChanged(Int_t m)
Definition: GEVPlotPropertiesEditor.cpp:359
TGComboBox * w_scale_mode
Type de mise à l&#39;échelle.
Definition: GEVPlotPropertiesEditor.hh:59
GObject(GEVPlotPropertiesEditor)
GEVPlot * plot_ptr
Pointeur sur le tracé à modifier.
Definition: GEVPlotPropertiesEditor.hh:42
GEVPlotProperties init_properties
Propriétés initiales du tracé
Definition: GEVPlotPropertiesEditor.hh:43
virtual void Apply()
Definition: GEVPlotPropertiesEditor.cpp:414
virtual void LineStyleChanged(Style_t s)
Definition: GEVPlotPropertiesEditor.hh:137
TGNumberEntry * w_scale_value
Valeur du paramètre d&#39;échelle.
Definition: GEVPlotPropertiesEditor.hh:60
virtual void ScaleTextChanged(const char *str)
Definition: GEVPlotPropertiesEditor.cpp:374
RGLineAttrSelect * w_line_attr
Attributs de ligne.
Definition: GEVPlotPropertiesEditor.hh:54
virtual void MarkerColorChanged(Color_t c)
Definition: GEVPlotPropertiesEditor.hh:157
TGTextButton * w_button_apply
Bouton d&#39;affichage.
Definition: GEVPlotPropertiesEditor.hh:63
RGFillAttrSelect * w_fill_attr
Attributs de remplissage.
Definition: GEVPlotPropertiesEditor.hh:55
virtual void FillColorChanged(Color_t c)
Definition: GEVPlotPropertiesEditor.hh:144
GEVPad * pad_ptr
Pointeur sur la zone graphique contenant le tracé
Definition: GEVPlotPropertiesEditor.hh:45
virtual void LineColorChanged(Color_t c)
Definition: GEVPlotPropertiesEditor.hh:125
GEVPlotPropertiesEditor(GEVPlot &plot, GEVPad *pad, int &result)
Definition: GEVPlotPropertiesEditor.cpp:32
virtual void Start()
Definition: GEVPlotPropertiesEditor.cpp:312
Definition: GEVPlotProperties.hh:38
virtual void Cancel()
Definition: GEVPlotPropertiesEditor.cpp:398
Definition: GEVPad.hh:62
virtual void Construct()
Definition: GEVPlotPropertiesEditor.cpp:83
virtual void Ok()
Definition: GEVPlotPropertiesEditor.cpp:384
virtual void LineWidthChanged(Width_t w)
Definition: GEVPlotPropertiesEditor.hh:131
virtual void MarkerStyleChanged(Style_t s)
Definition: GEVPlotPropertiesEditor.hh:163
ClassDef(GEVPlotPropertiesEditor, 0)
TGTextButton * w_button_ok
Bouton de validation.
Definition: GEVPlotPropertiesEditor.hh:62
int * result_ptr
Pointeur sur le résultat en sortie de la requête
Definition: GEVPlotPropertiesEditor.hh:48
bool update
Teste s&#39;il faut mettre à jour en sortie.
Definition: GEVPlotPropertiesEditor.hh:50
RGMarkerAttrSelect * w_marker_attr
Attributs de marqueur.
Definition: GEVPlotPropertiesEditor.hh:56
Definition: GEVPlot.hh:40
virtual void FillStyleChanged(Style_t s)
Definition: GEVPlotPropertiesEditor.hh:150
Definition: GEVPlotPropertiesEditor.hh:34
TGTextButton * w_button_cancel
Bouton d&#39;annulation.
Definition: GEVPlotPropertiesEditor.hh:64
virtual void ScaleModeChanged(Int_t m)
Definition: GEVPlotPropertiesEditor.cpp:366
RGHistoPlotModeSelect * w_plot_mode
Mode de tracé
Definition: GEVPlotPropertiesEditor.hh:58
virtual ~GEVPlotPropertiesEditor()
Definition: GEVPlotPropertiesEditor.cpp:71