// @(#)root/gui:$Name: $:$Id: TRootGuiFactory.h,v 1.3 2002/03/17 00:50:20 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. *
*************************************************************************/
#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);
virtual TBrowserImp *CreateBrowserImp(TBrowser *b, const char *title, Int_t x, Int_t y, UInt_t width, UInt_t height);
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
syntax highlighted by Code2HTML, v. 0.9.1