// @(#)root/base:$Name: $:$Id: TBrowser.cxx,v 1.2 2000/09/08 07:40:59 brun Exp $
// Author: Fons Rademakers 25/10/95
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
//////////////////////////////////////////////////////////////////////////
// //
// Using a TBrowser one can browse all ROOT objects. It shows in a list //
// on the left side of the window all browsable ROOT classes. Selecting //
// one of the classes displays, in the iconbox on the right side, all //
// objects in the class. Selecting one of the objects in the iconbox, //
// will place all browsable objects in a new list and draws the //
// contents of the selected class in the iconbox. And so on.... //
// //
// //
// //
//////////////////////////////////////////////////////////////////////////
#include "TBrowser.h"
#include "TGuiFactory.h"
#include "TROOT.h"
#include "TSystem.h"
#include "TStyle.h"
#include "TTimer.h"
#include "TContextMenu.h"
#include "TInterpreter.h"
//////////////////////////////////////////////////////////////////////////
// //
// TBrowserTimer //
// //
//////////////////////////////////////////////////////////////////////////
class TBrowserTimer : public TTimer {
protected:
TBrowser *fBrowser;
Bool_t fActivate;
public:
TBrowserTimer(TBrowser *b, Long_t ms = 1000)
: TTimer(ms, kTRUE), fBrowser(b), fActivate(kFALSE) { }
Bool_t Notify();
};
ClassImp(TBrowser)
//______________________________________________________________________________
TBrowser::TBrowser(const char *name, const char *title)
: TNamed(name, title)
{
// Create a new browser with a name, title. Width and height are by
// default set to 640x400 and (optionally) adjusted by the screen factor
// (depending on Rint.Canvas.UseScreenFactor to be true or false, default
// is true).
Float_t cx = gStyle->GetScreenFactor();
UInt_t w = UInt_t(cx*640);
UInt_t h = UInt_t(cx*400);
fImp = gGuiFactory->CreateBrowserImp(this, title, w, h);
Create();
}
//______________________________________________________________________________
TBrowser::TBrowser(const char *name, const char *title, UInt_t width, UInt_t height)
: TNamed(name, title)
{
// Create a new browser with a name, title, width and height.
fImp = gGuiFactory->CreateBrowserImp(this, title, width, height);
Create();
}
//______________________________________________________________________________
TBrowser::TBrowser(const char *name, const char *title, Int_t x, Int_t y, UInt_t width, UInt_t height)
: TNamed(name, title)
{
// Create a new browser with a name, title, position, width and height.
fImp = gGuiFactory->CreateBrowserImp(this, title, x, y, width, height);
Create();
}
//______________________________________________________________________________
TBrowser::TBrowser(const char *name, TObject *obj, const char *title)
: TNamed(name, title)
{
// Create a new browser with a name, title, width and height for TObject *obj.
Float_t cx = gStyle->GetScreenFactor();
UInt_t w = UInt_t(cx*640);
UInt_t h = UInt_t(cx*400);
fImp = gGuiFactory->CreateBrowserImp(this, title, w, h);
Create(obj);
}
//______________________________________________________________________________
TBrowser::TBrowser(const char *name, TObject *obj, const char *title, UInt_t width, UInt_t height)
: TNamed(name, title)
{
// Create a new browser with a name, title, width and height for TObject *obj.
fImp = gGuiFactory->CreateBrowserImp(this, title, width, height);
Create(obj);
}
//______________________________________________________________________________
TBrowser::TBrowser(const char *name, TObject *obj, const char *title, Int_t x, Int_t y, UInt_t width, UInt_t height)
: TNamed(name, title)
{
// Create a new browser with a name, title, width and height for TObject *obj.
fImp = gGuiFactory->CreateBrowserImp(this, title, x, y, width, height);
Create(obj);
}
//______________________________________________________________________________
TBrowser::~TBrowser()
{
// Delete the browser.
gROOT->GetListOfBrowsers()->Remove(this);
if (fContextMenu) { delete fContextMenu; fContextMenu = 0; }
if (fTimer) delete fTimer;
delete fImp;
}
//______________________________________________________________________________
void TBrowser::Add(TObject *obj, const char *name)
{
// Add object with name to browser. If name not set the objects GetName()
// is used.
if (obj && fImp) {
fImp->Add(obj, name);
obj->SetBit(kMustCleanup);
}
}
//______________________________________________________________________________
void TBrowser::Create(TObject *obj)
{
// Create the browser, called by the ctors.
fNeedRefresh = kFALSE;
fTimer = new TBrowserTimer(this);
if (fTimer) gSystem->AddTimer(fTimer);
gROOT->GetListOfBrowsers()->Add(this);
// Get the list of globals
gROOT->GetListOfGlobals(kTRUE);
gROOT->GetListOfGlobalFunctions(kTRUE);
fContextMenu = new TContextMenu("BrowserContextMenu") ;
// Fill the first list from the present TObject obj
if (obj) {
Add(obj);
#ifndef WIN32
if (fImp) fImp->BrowseObj(obj);
#else
// obj->Browse(this);
#endif
}
// Fill the first list with all browsable classes from TROOT
#ifndef WIN32
else if (fImp) fImp->BrowseObj(gROOT);
#else
// The first list will be filled by TWin32BrowserImp ctor
// with all browsable classes from TROOT
#endif
}
//______________________________________________________________________________
void TBrowser::ExecuteDefaultAction(TObject *obj)
{
// Execute default action for selected object (action is specified
// in the $HOME/.root.mimes or $ROOTSYS/icons/root.mimes file.
if (obj && fImp)
fImp->ExecuteDefaultAction(obj);
}
//______________________________________________________________________________
TObject *TBrowser::GetSelected()
{
// return the last selected object
return fLastSelectedObject;
}
//______________________________________________________________________________
void TBrowser::RecursiveRemove(TObject *obj)
{
// Recursively remove obj from browser.
if (fImp && obj) {
fImp->RecursiveRemove(obj);
fNeedRefresh = kTRUE;
}
}
//______________________________________________________________________________
void TBrowser::Refresh()
{
// Refresh browser contents.
fNeedRefresh = kTRUE;
if (fImp) fImp->Refresh();
fNeedRefresh = kFALSE;
}
//______________________________________________________________________________
void TBrowser::SetSelected(TObject *clickedObject)
{
// assign the last selected object
fLastSelectedObject = clickedObject;
}
//////////////////////////////////////////////////////////////////////////
// //
// TBrowserTimer //
// //
//////////////////////////////////////////////////////////////////////////
//______________________________________________________________________________
Bool_t TBrowserTimer::Notify()
{
// Called whenever timer times out.
if (fBrowser) {
if (fBrowser->GetRefreshFlag()) {
fBrowser->SetRefreshFlag(kFALSE);
fActivate = kTRUE;
} else if (fActivate) {
fActivate = kFALSE;
fBrowser->Refresh();
}
}
Reset();
return kFALSE;
}
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.