Logo ROOT   6.16/01
Reference Guide
TGeoGedFrame.h
Go to the documentation of this file.
1// @(#)root/geombuilder:$Id$
2// Author: Matevz Tadel 25/09/2006
3
4#ifndef ROOT_TGeoGedFrame
5#define ROOT_TGeoGedFrame
6
7#include "TGedFrame.h"
8
9class TGTab;
10class TGeoTabManager;
11class TVirtualPad;
12
13class TGeoGedFrame : public TGedFrame {
14
15protected:
16 TGTab *fTab; //tab of the ged-editor
17 TGeoTabManager *fTabMgr; //tab manager corresponding to ged-editor
18 TVirtualPad *fPad; //selected pad, if exists
19
20public:
21 TGeoGedFrame(const TGWindow *p = 0,
22 Int_t width = 140, Int_t height = 30,
23 UInt_t options = kChildFrame,
25
26 virtual void SetActive(Bool_t active = kTRUE);
27 virtual void Update();
28
29 ClassDef(TGeoGedFrame, 0) // Common base-class for geombuilder editors.
30};
31
32#endif
ULong_t Pixel_t
Definition: GuiTypes.h:39
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kTRUE
Definition: RtypesCore.h:87
#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
static Pixel_t GetDefaultFrameBackground()
Get default frame background.
Definition: TGFrame.cxx:665
Definition: TGTab.h:62
Common base class for geombuilder editors.
Definition: TGeoGedFrame.h:13
virtual void Update()
Override Update from TGedFrame as fGedEditor can be null.
TGTab * fTab
Definition: TGeoGedFrame.h:16
TVirtualPad * fPad
Definition: TGeoGedFrame.h:18
virtual void SetActive(Bool_t active=kTRUE)
Set active GUI attribute frames related to the selected object.
TGeoTabManager * fTabMgr
Definition: TGeoGedFrame.h:17
TGeoGedFrame(const TGWindow *p=0, Int_t width=140, Int_t height=30, UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground())
Constructor.
Manager for all editor tabs.
TVirtualPad is an abstract base class for the Pad and Canvas classes.
Definition: TVirtualPad.h:50