]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Reve/.SKEL-ged.h
Add Getters and Setters in TrackRnrStyle and TrackList to define rendering of path...
[u/mrichter/AliRoot.git] / EVE / Reve / .SKEL-ged.h
CommitLineData
5a5a1232 1// $Header$
2
3#ifndef REVE_CLASS_H
4#define REVE_CLASS_H
5
6#include <TGedFrame.h>
7
8class TGCheckButton;
9class TGNumberEntry;
10class TGColorSelect;
11
12namespace Reve {
13
14class STEM;
15
16class CLASS : public TGedFrame
17{
a8600b56 18private:
19 CLASS(const CLASS&); // Not implemented
20 CLASS& operator=(const CLASS&); // Not implemented
21
5a5a1232 22protected:
23 STEM* fM; // fModel dynamic-casted to CLASS
24
a8600b56 25 // Declare widgets
26 // TGSomeWidget* fXYZZ;
27
5a5a1232 28public:
a8600b56 29 CLASS(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
30 virtual ~CLASS();
5a5a1232 31
a8600b56 32 virtual void SetModel(TObject* obj);
5a5a1232 33
a8600b56 34 // Declare callback/slot methods
5a5a1232 35 // void DoXYZZ();
36
37 ClassDef(CLASS, 1); // Editor for STEM
38}; // endclass CLASS
39
40}
41
42#endif