Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TEveStraightLineSetEditor.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 "TEveStraightLineSet.h"
14
15#include "TGButton.h"
16
17/** \class TEveStraightLineSetEditor
18\ingroup TEve
19Editor for TEveStraightLineSet class.
20*/
21
23
24////////////////////////////////////////////////////////////////////////////////
25/// Constructor.
26
28 UInt_t options, Pixel_t back) :
29 TGedFrame(p, width, height, options | kVerticalFrame, back),
30 fM(nullptr)
31 // Initialize widget pointers to 0
32{
33 MakeTitle("TEveStraightLineSet");
34
35 TGHorizontalFrame* frame = new TGHorizontalFrame(this);
36
37 fRnrMarkers = new TGCheckButton(frame, "RnrMarkers");
38 frame->AddFrame(fRnrMarkers, new TGLayoutHints(kLHintsLeft, 1, 2, 1, 1));
40 ("Toggled(Bool_t)",
41 "TEveStraightLineSetEditor", this, "DoRnrMarkers()");
42
43 fRnrLines = new TGCheckButton(frame, "RnrLines");
44 frame->AddFrame(fRnrLines, new TGLayoutHints(kLHintsLeft, 2, 1, 1, 1));
46 ("Toggled(Bool_t)",
47 "TEveStraightLineSetEditor", this, "DoRnrLines()");
48
49 AddFrame(frame, new TGLayoutHints(kLHintsTop, 0, 0, 0, 0));
50}
51
52////////////////////////////////////////////////////////////////////////////////
53/// Set model object.
54
56{
57 fM = dynamic_cast<TEveStraightLineSet*>(obj);
58
59 // Set values of widgets
62}
63
64////////////////////////////////////////////////////////////////////////////////
65/// Slot for RnrMarkers.
66
68{
70 Update();
71}
72
73////////////////////////////////////////////////////////////////////////////////
74/// Slot for RnrLines.
75
77{
79 Update();
80}
@ kVerticalFrame
Definition GuiTypes.h:381
ULong_t Pixel_t
Pixel value.
Definition GuiTypes.h:40
#define ClassImp(name)
Definition Rtypes.h:377
@ kButtonDown
Definition TGButton.h:54
@ kButtonUp
Definition TGButton.h:53
@ kLHintsLeft
Definition TGLayout.h:24
@ kLHintsTop
Definition TGLayout.h:27
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
Editor for TEveStraightLineSet class.
void DoRnrMarkers()
Slot for RnrMarkers.
void DoRnrLines()
Slot for RnrLines.
void SetModel(TObject *obj) override
Set model object.
TEveStraightLineSetEditor(const TEveStraightLineSetEditor &)
Set of straight lines with optional markers along the lines.
virtual void SetRnrMarkers(Bool_t x)
virtual void SetRnrLines(Bool_t x)
virtual Bool_t GetRnrLines()
virtual Bool_t GetRnrMarkers()
Selects different options.
Definition TGButton.h:264
Bool_t IsOn() const override
Definition TGButton.h:310
void SetState(EButtonState state, Bool_t emit=kFALSE) override
Set check button state.
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=nullptr)
Add frame to the composite frame using the specified layout hints.
Definition TGFrame.cxx:1117
A composite frame that layout their children in horizontal way.
Definition TGFrame.h:385
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
virtual void Update()
Update the current pad when an attribute is changed via GUI.
Definition TGedFrame.cxx:72
Mother of all ROOT objects.
Definition TObject.h:41
Bool_t Connect(const char *signal, const char *receiver_class, void *receiver, const char *slot)
Non-static method is used to connect from the signal of this object to the receiver slot.
Definition TQObject.cxx:869