Logo ROOT   6.08/07
Reference Guide
TEveTriangleSetEditor.h
Go to the documentation of this file.
1 // @(#)root/eve:$Id$
2 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TEveTriangleSetEditor
13 #define ROOT_TEveTriangleSetEditor
14 
15 #include "TGedFrame.h"
16 
17 class TEveTriangleSet;
18 
19 class TGLabel;
20 
22 {
23 private:
24  TEveTriangleSetEditor(const TEveTriangleSetEditor&); // Not implemented
25  TEveTriangleSetEditor& operator=(const TEveTriangleSetEditor&); // Not implemented
26 
27 protected:
28  TEveTriangleSet *fM; // Model object.
29 
30  TGLabel *fInfo; // Info label.
31 
32 public:
33  TEveTriangleSetEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
35 
36  virtual void SetModel(TObject* obj);
37 
38  ClassDef(TEveTriangleSetEditor, 0); // Editor for TEveTriangleSet class.
39 };
40 
41 #endif
Editor for TEveTriangleSet class.
int Int_t
Definition: RtypesCore.h:41
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual void SetModel(TObject *obj)
Set model object.
ULong_t Pixel_t
Definition: GuiTypes.h:41
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
unsigned int UInt_t
Definition: RtypesCore.h:42
TEveTriangleSetEditor & operator=(const TEveTriangleSetEditor &)
Made from a list of vertices and a list of triangles (triplets of vertex indices).
Mother of all ROOT objects.
Definition: TObject.h:37
TEveTriangleSetEditor(const TEveTriangleSetEditor &)