#ifndef ROOT_TQtRootGuiFactory
#define ROOT_TQtRootGuiFactory
#include "TGuiFactory.h"
class TQtApplication;
class TVirtualX;
class TGClient;
class TQtRootGuiFactory : public  TGuiFactory {
private:
   TGuiFactory *fGuiProxy;
   
protected:
  static void CreateQClient();
  static TGClient *gfQtClient;
public:
   TQtRootGuiFactory();
   TQtRootGuiFactory(const char *name, const char *title= "Qt-based ROOT GUI Factory");
   virtual ~TQtRootGuiFactory() { delete fGuiProxy; }
   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);
   virtual TInspectorImp *CreateInspectorImp(const TObject *obj, UInt_t width, UInt_t height);
   static TGClient *GetRootClient();
   ClassDef(TQtRootGuiFactory,0)  
};
inline TGClient *TQtRootGuiFactory::GetRootClient(){ return gfQtClient; }
#endif
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.