Logo ROOT  
Reference Guide
TEveTriangleSetEditor.cxx
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
13#include "TEveTriangleSet.h"
14
15#include "TGWidget.h"
16#include "TGLabel.h"
17
18/** \class TEveTriangleSetEditor
19\ingroup TEve
20Editor for TEveTriangleSet class.
21*/
22
24
25////////////////////////////////////////////////////////////////////////////////
26/// Constructor.
27
29 UInt_t options, Pixel_t back) :
30 TGedFrame(p, width, height, options | kVerticalFrame, back),
31 fM (0),
32 fInfo (0)
33{
34 MakeTitle("TEveTriangleSet");
35
36 fInfo = new TGLabel(this);
39}
40
41////////////////////////////////////////////////////////////////////////////////
42/// Set model object.
43
45{
46 fM = dynamic_cast<TEveTriangleSet*>(obj);
47
48 fInfo->SetText(Form("Vertices: %d, Triangles: %d", fM->GetNVerts(), fM->GetNTrings()));
49}
@ kVerticalFrame
Definition: GuiTypes.h:381
ULong_t Pixel_t
Definition: GuiTypes.h:39
#define ClassImp(name)
Definition: Rtypes.h:361
include TDocParser_001 C image html pict1_TDocParser_001 png width
Definition: TDocParser.cxx:121
@ kLHintsNormal
Definition: TGLayout.h:39
@ kLHintsExpandX
Definition: TGLayout.h:37
@ kTextLeft
Definition: TGWidget.h:34
char * Form(const char *fmt,...)
Editor for TEveTriangleSet class.
virtual void SetModel(TObject *obj)
Set model object.
TEveTriangleSetEditor(const TEveTriangleSetEditor &)
Made from a list of vertices and a list of triangles (triplets of vertex indices).
Int_t GetNTrings() const
Int_t GetNVerts() const
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=0)
Add frame to the composite frame using the specified layout hints.
Definition: TGFrame.cxx:1101
void SetTextJustify(Int_t tmode)
Set text justification.
Definition: TGLabel.cxx:394
virtual void SetText(TGString *newText)
Set new text in label.
Definition: TGLabel.cxx:178
virtual void MakeTitle(const char *title)
Create attribute frame title.
Definition: TGedFrame.cxx:96
Mother of all ROOT objects.
Definition: TObject.h:37