]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/RGEditor.h
Merge from EVE-dev to HEAD.
[u/mrichter/AliRoot.git] / EVE / Reve / RGEditor.h
1 // $Header$
2
3 #ifndef REVE_RGEditor_H
4 #define REVE_RGEditor_H
5
6 #include <TGedEditor.h>
7
8 namespace Reve {
9
10 class RenderElement;
11
12 class RGEditor : public TGedEditor
13 {
14 protected:
15   RenderElement* fRnrElement;
16
17 public:
18   RGEditor(TCanvas* canvas=0);
19   virtual ~RGEditor() {}
20
21   RenderElement* GetRnrElement() const { return fRnrElement; }
22   
23   void DisplayRenderElement(RenderElement* re);
24   void DisplayObject(TObject* obj);
25
26   virtual void Update(TGedFrame* gframe=0);
27
28   ClassDef(RGEditor, 1);
29 }; // endclass RGEditor
30
31 }
32
33 #endif