Analysis  version 7.0 - august 2014
GEVContourNameRequester.hh
Go to the documentation of this file.
1 //======================================================================
2 /*! \file GEVContourNameRequester.hh
3  *
4  * Déclaration de la clase GEVContourNameRequester.
5  */
6 //======================================================================
7 
8 #ifndef GEV_CONTOUR_NAME_REQUESTER
9 #define GEV_CONTOUR_NAME_REQUESTER
10 
11 #include "EventCommon.hh"
12 #include "RContourList.hh"
13 #include "RGMessageRequester.hh"
14 
15 #include <TGTextEntry.h>
16 
17 //======================================================================
18 /*! class GEVContourNameRequester
19  *
20  * Classe définissant une interface graphique de saisie du nom d'un
21  * contour.
22  */
23 class GEVContourNameRequester : public RGMessageRequester
24 {
25 //----------------------------------------------------------------------
26  /*! \object_doc */
28 //----------------------------------------------------------------------
29 
30  protected:
31  RContourList * cont_list; ///< Pointeur sur la liste de contours
32  RContour * cont_ptr; ///< Pointeur sur le contour
33 
34  TGTextEntry * w_cont_name; ///< widget de saisie du texte
35 
36  public:
37  // Constructeur
38  GEVContourNameRequester ( RContour * c,
39  RContourList * c_list,
40  Int_t & result,
41  const TGWindow * mw = NULL );
42 
43  protected:
44  // Constructeur de recopie
46 
47 
48  public:
49  // Destructeur
50  virtual ~GEVContourNameRequester();
51 
52 
53  virtual void Button ( Int_t n );
54 
55  /*! Pour encapsulation dans ROOT.
56  */
58 };
59 
60 //======================================================================
61 #endif
62 
ClassDef(GEVContourNameRequester, 0)
GEVContourNameRequester(RContour *c, RContourList *c_list, Int_t &result, const TGWindow *mw=NULL)
Definition: GEVContourNameRequester.cpp:22
virtual ~GEVContourNameRequester()
Definition: GEVContourNameRequester.cpp:59
TGTextEntry * w_cont_name
widget de saisie du texte
Definition: GEVContourNameRequester.hh:34
RContourList * cont_list
Pointeur sur la liste de contours.
Definition: GEVContourNameRequester.hh:31
Definition: GEVContourNameRequester.hh:23
virtual void Button(Int_t n)
Definition: GEVContourNameRequester.cpp:69
GObject(GEVContourNameRequester)
RContour * cont_ptr
Pointeur sur le contour.
Definition: GEVContourNameRequester.hh:32