// @(#)root/gui:$Name: $:$Id: TRootGuiFactory.cxx,v 1.1.1.1 2000/05/16 17:00:42 rdm Exp $
// Author: Fons Rademakers 15/01/98
/*************************************************************************
* 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. *
*************************************************************************/
//////////////////////////////////////////////////////////////////////////
// //
// TRootGuiFactory //
// //
// This class is a factory for ROOT GUI components. It overrides //
// the member functions of the ABS TGuiFactory. //
// //
//////////////////////////////////////////////////////////////////////////
#include "TRootGuiFactory.h"
#include "TRootApplication.h"
#include "TRootCanvas.h"
#include "TRootBrowser.h"
#include "TRootContextMenu.h"
#include "TRootControlBar.h"
ClassImp(TRootGuiFactory)
//______________________________________________________________________________
TRootGuiFactory::TRootGuiFactory(const char *name, const char *title)
: TGuiFactory(name, title)
{
// TRootGuiFactory ctor.
}
//______________________________________________________________________________
TApplicationImp *TRootGuiFactory::CreateApplicationImp(const char *classname,
Int_t *argc, char **argv, void *options, Int_t numOptions)
{
// Create a ROOT native GUI version of TApplicationImp
return new TRootApplication(classname, argc, argv, options, numOptions);
}
//______________________________________________________________________________
TCanvasImp *TRootGuiFactory::CreateCanvasImp(TCanvas *c, const char *title,
UInt_t width, UInt_t height)
{
// Create a ROOT native GUI version of TCanvasImp
return new TRootCanvas(c, title, width, height);
}
//______________________________________________________________________________
TCanvasImp *TRootGuiFactory::CreateCanvasImp(TCanvas *c, const char *title,
Int_t x, Int_t y, UInt_t width, UInt_t height)
{
// Create a ROOT native GUI version of TCanvasImp
return new TRootCanvas(c, title, x, y, width, height);
}
//______________________________________________________________________________
TBrowserImp *TRootGuiFactory::CreateBrowserImp(TBrowser *b, const char *title,
UInt_t width, UInt_t height)
{
// Create a ROOT native GUI version of TBrowserImp
return new TRootBrowser(b, title, width, height);
}
//______________________________________________________________________________
TBrowserImp *TRootGuiFactory::CreateBrowserImp(TBrowser *b, const char *title,
Int_t x, Int_t y, UInt_t width, UInt_t height)
{
// Create a ROOT native GUI version of TBrowserImp
return new TRootBrowser(b, title, x, y, width, height);
}
//______________________________________________________________________________
TContextMenuImp *TRootGuiFactory::CreateContextMenuImp(TContextMenu *c,
const char *name, const char *)
{
// Create a ROOT native GUI version of TContextMenuImp
return new TRootContextMenu(c, name);
}
//______________________________________________________________________________
TControlBarImp *TRootGuiFactory::CreateControlBarImp(TControlBar *c, const char *title)
{
// Create a ROOT native GUI version of TControlBarImp
return new TRootControlBar(c, title);
}
//______________________________________________________________________________
TControlBarImp *TRootGuiFactory::CreateControlBarImp(TControlBar *c, const char *title,
Int_t x, Int_t y)
{
// Create a ROOT native GUI version of TControlBarImp
return new TRootControlBar(c, title, x, y);
}
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.