]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/NLTPolygonSetEditor.h
Dummy methods DefineParticle required by the interface added.
[u/mrichter/AliRoot.git] / EVE / Reve / NLTPolygonSetEditor.h
1 #ifndef REVE_NLTPolygonSetEditor_H
2 #define REVE_NLTPolygonSetEditor_H
3
4 #include <TGedFrame.h>
5 class TGNumberEntry;
6 class TGColorSelect;
7
8 namespace Reve {
9
10 class NLTPolygonSet;
11 class NLTPolygonSetEditor : public TGedFrame
12 {
13   NLTPolygonSetEditor(const NLTPolygonSetEditor&);            // Not implemented
14   NLTPolygonSetEditor& operator=(const NLTPolygonSetEditor&); // Not implemented
15
16 protected:
17   NLTPolygonSet* fPS; // fModel dynamic-casted to NLTPolygonSetEditor
18
19   // TGColorSelect       *fFillColor;      // fill color widget
20   
21   TGNumberEntry       *fLineWidth;
22   TGColorSelect       *fLineColor;      // fill color widget
23
24 public:
25   NLTPolygonSetEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
26                    UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
27   ~NLTPolygonSetEditor();
28
29   virtual void SetModel(TObject* obj);
30
31   //virtual void DoFillColor(Pixel_t color);
32
33   virtual void DoLineWidth();
34   virtual void DoLineColor(Pixel_t color);
35
36   ClassDef(NLTPolygonSetEditor, 0); // Editor for NLTPolygonSet
37 }; // endclass  NLTPolygonSetEditor
38 }
39 #endif