Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGLLightSetEditor.cxx
Go to the documentation of this file.
1// @(#)root/gl:$Id$
2// Author: Matevz Tadel, Feb 2007
3
4/*************************************************************************
5 * Copyright (C) 1995-2004, 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#include "TGLLightSetEditor.h"
13#include <TGLLightSet.h>
14
15#include <TGButton.h>
16
17/** \class TGLLightSetSubEditor
18\ingroup opengl
19Sub-editor for TGLLightSet.
20*/
21
22
23////////////////////////////////////////////////////////////////////////////////
24
27 fM (nullptr),
28
29 fLightFrame (nullptr),
30 fTopLight (nullptr),
31 fRightLight (nullptr),
32 fBottomLight (nullptr),
33 fLeftLight (nullptr),
34 fFrontLight (nullptr),
35 fSpecularLight (nullptr)
36{
37 // Constructor.
38
39 fLightFrame = new TGGroupFrame(this, "Light sources:", kVerticalFrame);//, kLHintsTop | kLHintsCenterX);
42 TGCompositeFrame* hf =nullptr;
43
48
53
57
59}
60
61////////////////////////////////////////////////////////////////////////////////
62/// Create a button for given lamp and set it up.
63
65 TGCompositeFrame* parent)
66{
67 TGButton* b = new TGCheckButton(parent, name, wid);
68 parent->AddFrame(b, new TGLayoutHints(kLHintsNormal|kLHintsExpandX, -2, 0, 0, 2));
69 b->Connect("Clicked()", "TGLLightSetSubEditor", this, "DoButton()");
70 return b;
71}
72
73////////////////////////////////////////////////////////////////////////////////
74/// New model was set, refresh data.
75
89
90////////////////////////////////////////////////////////////////////////////////
91/// Data in sub-editor has been changed, emit "Changed()" signal.
92
94{
95 Emit("Changed()");
96}
97
98////////////////////////////////////////////////////////////////////////////////
99/// Lights radio button was clicked.
100
102{
104 fM->SetLight(TGLLightSet::ELight(b->WidgetId()), b->IsOn());
105 Changed();
106}
107
108
109//______________________________________________________________________________
110// TGLLightSetEditor
111//
112// Editor for TGLLightSet.
113
114
115////////////////////////////////////////////////////////////////////////////////
116/// Constructor.
117
120 UInt_t options, Pixel_t back) :
121 TGedFrame(p, width, height, options | kVerticalFrame, back),
122 fM (nullptr),
123 fSE (nullptr)
124{
125 MakeTitle("TGLLightSet");
126
127 fSE = new TGLLightSetSubEditor(this);
128 AddFrame(fSE, new TGLayoutHints(kLHintsTop, 2, 0, 2, 2));
129 fSE->Connect("Changed()", "TGLLightSetEditor", this, "Update()");
130}
131
132////////////////////////////////////////////////////////////////////////////////
133/// Destructor.
134
138
139////////////////////////////////////////////////////////////////////////////////
140/// SetModel ... forward to sub-editor.
141
143{
144 fM = dynamic_cast<TGLLightSet*>(obj);
145 fSE->SetModel(fM);
146}
@ kVerticalFrame
Definition GuiTypes.h:381
ULong_t Pixel_t
Pixel value.
Definition GuiTypes.h:40
#define b(i)
Definition RSha256.hxx:100
@ kButtonDown
Definition TGButton.h:54
@ kButtonUp
Definition TGButton.h:53
@ kLHintsNormal
Definition TGLayout.h:32
@ kLHintsTop
Definition TGLayout.h:27
@ kLHintsExpandX
Definition TGLayout.h:30
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize wid
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 name[80]
Definition TGX11.cxx:110
R__EXTERN void * gTQSender
Definition TQObject.h:46
A button abstract base class.
Definition TGButton.h:68
virtual void SetState(EButtonState state, Bool_t emit=kFALSE)
Set button state.
Definition TGButton.cxx:229
Selects different options.
Definition TGButton.h:264
The base class for composite widgets (menu bars, list boxes, etc.).
Definition TGFrame.h:289
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=nullptr)
Add frame to the composite frame using the specified layout hints.
Definition TGFrame.cxx:1109
A composite frame with a border and a title.
Definition TGFrame.h:524
virtual void SetTitlePos(ETitlePos pos=kLeft)
Definition TGFrame.h:566
A composite frame that layout their children in horizontal way.
Definition TGFrame.h:387
void SetModel(TObject *obj) override
SetModel ... forward to sub-editor.
TGLLightSetEditor(const TGLLightSetEditor &)=delete
TGLLightSetSubEditor * fSE
~TGLLightSetEditor() override
Destructor.
Sub-editor for TGLLightSet.
void SetModel(TGLLightSet *m)
New model was set, refresh data.
TGGroupFrame * fLightFrame
void DoButton()
Lights radio button was clicked.
TGButton * MakeLampButton(const char *name, Int_t wid, TGCompositeFrame *parent)
Create a button for given lamp and set it up.
TGLLightSetSubEditor(const TGLLightSetSubEditor &)=delete
void Changed()
Data in sub-editor has been changed, emit "Changed()" signal.
Encapsulates a set of lights for OpenGL.
Definition TGLLightSet.h:22
Bool_t GetUseSpecular() const
Definition TGLLightSet.h:51
void SetLight(ELight light, Bool_t on)
Set a light on/off.
UInt_t GetLightState()
Definition TGLLightSet.h:49
This class describes layout hints used by the layout classes.
Definition TGLayout.h:50
A composite frame that layout their children in vertical way.
Definition TGFrame.h:376
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:94
Mother of all ROOT objects.
Definition TObject.h:41
void Emit(const char *signal, const T &arg)
Activate signal with single parameter.
Definition TQObject.h:164
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:865
TMarker m
Definition textangle.C:8