Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
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 (nullptr),
32 fInfo (nullptr)
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
Pixel value.
Definition GuiTypes.h:40
#define ClassImp(name)
Definition Rtypes.h:377
@ kLHintsNormal
Definition TGLayout.h:32
@ kLHintsExpandX
Definition TGLayout.h:30
@ kTextLeft
Definition TGWidget.h:23
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t width
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t height
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
Definition TString.cxx:2489
Editor for TEveTriangleSet class.
TEveTriangleSetEditor(const TEveTriangleSetEditor &)
void SetModel(TObject *obj) override
Set model object.
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=nullptr)
Add frame to the composite frame using the specified layout hints.
Definition TGFrame.cxx:1117
This class handles GUI labels.
Definition TGLabel.h:24
void SetTextJustify(Int_t tmode)
Set text justification.
Definition TGLabel.cxx:396
virtual void SetText(TGString *newText)
Set new text in label.
Definition TGLabel.cxx:180
This class describes layout hints used by the layout classes.
Definition TGLayout.h:50
ROOT GUI Window base class.
Definition TGWindow.h:23
Base frame for implementing GUI - a service class.
Definition TGedFrame.h:27
virtual void MakeTitle(const char *title)
Create attribute frame title.
Definition TGedFrame.cxx:95
Mother of all ROOT objects.
Definition TObject.h:41