]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - EVE/Alieve/AliEveHOMERManagerEditor.h
Put all classes in Alieve/ sub-module out of the Alieve namespace and
[u/mrichter/AliRoot.git] / EVE / Alieve / AliEveHOMERManagerEditor.h
... / ...
CommitLineData
1// $Id$
2// Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 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 ALIEVE_AliEVEHOMERManagerEditor_H
11#define ALIEVE_AliEVEHOMERManagerEditor_H
12
13#include <TGedFrame.h>
14
15class TGCheckButton;
16class TGTextButton;
17class TGNumberEntry;
18class TGColorSelect;
19
20class AliEveHOMERManager;
21
22class AliEveHOMERManagerEditor : public TGedFrame
23{
24private:
25 AliEveHOMERManagerEditor(const AliEveHOMERManagerEditor&); // Not implemented
26 AliEveHOMERManagerEditor& operator=(const AliEveHOMERManagerEditor&); // Not implemented
27
28protected:
29 AliEveHOMERManager* fM; // fModel dynamic-casted to AliEveHOMERManagerEditor
30
31 // Declare widgets
32 // TGSomeWidget* fXYZZ;
33 TGTextButton *fButt;
34
35public:
36 AliEveHOMERManagerEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
37 virtual ~AliEveHOMERManagerEditor();
38
39 virtual void SetModel(TObject* obj);
40
41 // Declare callback/slot methods
42 // void DoXYZZ();
43 void DoButt();
44
45 ClassDef(AliEveHOMERManagerEditor, 0); // Editor for AliEveHOMERManager
46}; // endclass AliEveHOMERManagerEditor
47
48#endif