// $Id$ //----------------------------------------------------------------------- // The GSI Online Offline Object Oriented (Go4) Project // Experiment Data Processing at EE department, GSI //----------------------------------------------------------------------- // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH // Planckstr. 1, 64291 Darmstadt, Germany // Contact: http://go4.gsi.de //----------------------------------------------------------------------- // This software can be used under the license agreements as stated // in Go4License.txt file which is part of the distribution. //----------------------------------------------------------------------- //Author : Denis Bertini 01.11.2000 /************************************************************************** * Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI * * Planckstr. 1, 64291 Darmstadt, Germany * * All rights reserved. * * Contact: http://go4.gsi.de * * * * This software can be used under the license agreements as stated in * * Go4License.txt file which is part of the distribution. * ***************************************************************************/ #ifndef TQAPPLICATION_H #define TQAPPLICATION_H /** * TQApplication * * This class creates Root environement that will * interface with the Qt windowing system eventloop and eventhandlers. * This class will be instantiated ones (singleton) in a main() * program. * * @short Root application interfaced with Qt * * @see TApplication * @authors Denis Bertini , Manuel Sanchez * @version 0.7b */ #include "TApplication.h" class TQApplication : public TApplication { public: TQApplication(); TQApplication(const char *appClassName, int *argc, char **argv, void *options = 0, int numOptions = 0); virtual ~TQApplication(); /** Here we overload the LoadGraphicsLibs() function. * This function now just instantiates a QRootGuiFactory * object and redirect the global pointer gGuiFactory to point to it. */ virtual void LoadGraphicsLibs(); void setCustomized(); private: Bool_t customized; }; #endif