// @(#)root/gui:$Name: $:$Id: TGApplication.h,v 1.1 2001/06/05 16:41:54 rdm Exp $
// Author: Guy Barrand 30/05/2001
/*************************************************************************
* Copyright (C) 2001, Guy Barrand. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TGApplication
#define ROOT_TGApplication
//////////////////////////////////////////////////////////////////////////
// //
// TGApplication //
// //
// This class initialize the ROOT GUI toolkit. //
// This class must be instantiated exactly once in any given //
// application. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TApplication
#include "TApplication.h"
#endif
class TGClient;
class TGApplication : public TApplication {
private:
char *fDisplay; // display server to connect to
TGClient *fClient; // pointer to the client environment
protected:
TGApplication() : fDisplay(0), fClient(0) { }
virtual void LoadGraphicsLibs();
public:
TGApplication(const char *appClassName,
Int_t *argc, char **argv,
void *options = 0, Int_t numOptions = 0);
virtual ~TGApplication();
virtual void GetOptions(Int_t *argc, char **argv);
ClassDef(TGApplication,0) //GUI application singleton
};
#endif
syntax highlighted by Code2HTML, v. 0.9.1