]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/EveBase/AliEveCascadeEditor.h
* AliEveMagField
[u/mrichter/AliRoot.git] / EVE / EveBase / AliEveCascadeEditor.h
CommitLineData
2991d609 1// @(#)root/eve:$Id$
2// Author: Matevz Tadel 2007
3
4/**************************************************************************
5 * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6 * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for *
7 * full copyright notice. *
8 **************************************************************************/
9
10#ifndef ALIEVECASCADEEDITOR_H
11#define ALIEVECASCADEEDITOR_H
12
13#include "TGedFrame.h"
14
15class TGButton;
16class TGCheckButton;
17class TGNumberEntry;
18class TGColorSelect;
19
20class AliEveCascade;
21
22//______________________________________________________________________________
23// Short description of AliEveCascadeEditor
24//
25
26class AliEveCascadeEditor : public TGedFrame
27{
28public:
29 AliEveCascadeEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
30 UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
31 virtual ~AliEveCascadeEditor() {}
32
33 virtual void SetModel(TObject* obj);
34
35 // Declare callback/slot methods
36 // void DoXYZZ();
37 void DisplayDetailed();
38
39protected:
40 AliEveCascade *fM; // Model object.
41
42 TGLabel *fInfoLabel0; // label
43 TGLabel *fInfoLabel1; // label
44
45 TGButton *fXButton;
46
47private:
48 AliEveCascadeEditor(const AliEveCascadeEditor&); // Not implemented
49 AliEveCascadeEditor& operator=(const AliEveCascadeEditor&); // Not implemented
50
51 ClassDef(AliEveCascadeEditor, 0); // GUI editor for AliEveCascade.
52};
53
54#endif