Logo ROOT   6.16/01
Reference Guide
TEveLineEditor.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_TEveLineEditor
13#define ROOT_TEveLineEditor
14
15#include "TGedFrame.h"
16
17class TGCheckButton;
18class TGNumberEntry;
19class TGColorSelect;
20
21class TEveLine;
22
24{
25private:
26 TEveLineEditor(const TEveLineEditor&); // Not implemented
27 TEveLineEditor& operator=(const TEveLineEditor&); // Not implemented
28
29protected:
30 TEveLine *fM; // Model object.
31
32 TGCheckButton *fRnrLine; // Checkbox for line-rendering.
33 TGCheckButton *fRnrPoints; // Checkbox for point-rendering.
34 TGCheckButton *fSmooth; // Checkbox for line smoothing.
35
36public:
37 TEveLineEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
38 virtual ~TEveLineEditor() {}
39
40 virtual void SetModel(TObject* obj);
41
42 void DoRnrLine();
43 void DoRnrPoints();
44 void DoSmooth();
45
46 ClassDef(TEveLineEditor, 0); // Editor for TEveLine class.
47};
48
49#endif
ULong_t Pixel_t
Definition: GuiTypes.h:39
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
#define ClassDef(name, id)
Definition: Rtypes.h:324
include TDocParser_001 C image html pict1_TDocParser_001 png width
Definition: TDocParser.cxx:121
@ kChildFrame
Definition: TGFrame.h:57
Editor for TEveLine class.
void DoSmooth()
Slot for anti-alias.
TEveLineEditor(const TEveLineEditor &)
virtual ~TEveLineEditor()
TGCheckButton * fRnrLine
void DoRnrPoints()
Slot for RnrPoints.
TEveLine * fM
void DoRnrLine()
Slot for RnrLine.
TGCheckButton * fSmooth
TGCheckButton * fRnrPoints
virtual void SetModel(TObject *obj)
Set model object.
TEveLineEditor & operator=(const TEveLineEditor &)
An arbitrary polyline with fixed line and marker attributes.
Definition: TEveLine.h:26
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
Mother of all ROOT objects.
Definition: TObject.h:37