]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Reve/PointSetArrayEditor.h
This commit was generated by cvs2svn to compensate for changes in r13732,
[u/mrichter/AliRoot.git] / EVE / Reve / PointSetArrayEditor.h
1 // $Header$
2
3 #ifndef REVE_PointSetArrayEditor_H
4 #define REVE_PointSetArrayEditor_H
5
6 #include <TGedFrame.h>
7
8 class TGCheckButton;
9 class TGNumberEntry;
10 class TGColorSelect;
11 class TGDoubleHSlider;
12
13 namespace Reve {
14
15 class PointSetArray;
16
17 class PointSetArrayEditor : public TGedFrame
18 {
19 protected:
20   PointSetArray* fM; // fModel dynamic-casted to PointSetArrayEditor
21
22   TGDoubleHSlider* fSlider;
23
24 public:
25   PointSetArrayEditor(const TGWindow* p, Int_t id, Int_t width = 170, Int_t height = 30, UInt_t options = kChildFrame, Pixel_t back = GetDefaultFrameBackground());
26   ~PointSetArrayEditor();
27
28   virtual void SetModel(TVirtualPad* pad, TObject* obj, Int_t event);
29
30   void DoScroll();
31
32   ClassDef(PointSetArrayEditor, 1); // Editor for PointSetArray
33 }; // endclass PointSetArrayEditor
34
35 }
36
37 #endif