// @(#)root/gui:$Id: TRootGuiFactory.h 23115 2008-04-10 13:35:37Z rdm $ // 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. * *************************************************************************/ #ifndef ROOT_TRootGuiFactory #define ROOT_TRootGuiFactory ////////////////////////////////////////////////////////////////////////// // // // TRootGuiFactory // // // // This class is a factory for ROOT GUI components. It overrides // // the member functions of the ABS TGuiFactory. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TGuiFactory #include "TGuiFactory.h" #endif class TApplicationImp; class TCanvasImp; class TBrowserImp; class TContextMenuImp; class TContextMenu; class TControlBarImp; class TControlBar; class TRootGuiFactory : public TGuiFactory { public: TRootGuiFactory(const char *name = "Root", const char *title = "ROOT GUI Factory"); virtual ~TRootGuiFactory() { } virtual TApplicationImp *CreateApplicationImp(const char *classname, int *argc, char **argv); virtual TCanvasImp *CreateCanvasImp(TCanvas *c, const char *title, UInt_t width, UInt_t height); virtual TCanvasImp *CreateCanvasImp(TCanvas *c, const char *title, Int_t x, Int_t y, UInt_t width, UInt_t height); virtual TBrowserImp *CreateBrowserImp(TBrowser *b, const char *title, UInt_t width, UInt_t height, Option_t *opt=""); virtual TBrowserImp *CreateBrowserImp(TBrowser *b, const char *title, Int_t x, Int_t y, UInt_t width, UInt_t height, Option_t *opt=""); virtual TContextMenuImp *CreateContextMenuImp(TContextMenu *c, const char *name, const char *title); virtual TControlBarImp *CreateControlBarImp(TControlBar *c, const char *title); virtual TControlBarImp *CreateControlBarImp(TControlBar *c, const char *title, Int_t x, Int_t y); ClassDef(TRootGuiFactory,0) //Factory for ROOT GUI components }; #endif