// @(#)root/gl:$Id$
// Author:  Richard Maunder, Olivier Couet  02/07/2005

/*************************************************************************
 * Copyright (C) 1995-2005, 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_TGLOutput
#define ROOT_TGLOutput

#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif

class TGLViewer;

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TGLOutput                                                            //
//                                                                      //
// Wrapper class for GL capture & output routines                       //
//////////////////////////////////////////////////////////////////////////

class TGLOutput {
public:
   enum EFormat { kEPS_SIMPLE, kEPS_BSP, kPDF_SIMPLE, kPDF_BSP };
   static Bool_t Capture(TGLViewer & viewer, EFormat format,
                         const char * filePath = 0);

   static void   StartEmbeddedPS();//gl to ps in pad, "embedded" does not mean eps format here
   static void   CloseEmbeddedPS();
   static void   Capture(TGLViewer & viewer);

   virtual ~TGLOutput() { }

private:
   static Bool_t CapturePostscript(TGLViewer & viewer, EFormat format,
                                   const char * filePath);

   ClassDef(TGLOutput,0) // Wrapper class for GL capture & output routines
};

#endif
 TGLOutput.h:1
 TGLOutput.h:2
 TGLOutput.h:3
 TGLOutput.h:4
 TGLOutput.h:5
 TGLOutput.h:6
 TGLOutput.h:7
 TGLOutput.h:8
 TGLOutput.h:9
 TGLOutput.h:10
 TGLOutput.h:11
 TGLOutput.h:12
 TGLOutput.h:13
 TGLOutput.h:14
 TGLOutput.h:15
 TGLOutput.h:16
 TGLOutput.h:17
 TGLOutput.h:18
 TGLOutput.h:19
 TGLOutput.h:20
 TGLOutput.h:21
 TGLOutput.h:22
 TGLOutput.h:23
 TGLOutput.h:24
 TGLOutput.h:25
 TGLOutput.h:26
 TGLOutput.h:27
 TGLOutput.h:28
 TGLOutput.h:29
 TGLOutput.h:30
 TGLOutput.h:31
 TGLOutput.h:32
 TGLOutput.h:33
 TGLOutput.h:34
 TGLOutput.h:35
 TGLOutput.h:36
 TGLOutput.h:37
 TGLOutput.h:38
 TGLOutput.h:39
 TGLOutput.h:40
 TGLOutput.h:41
 TGLOutput.h:42
 TGLOutput.h:43
 TGLOutput.h:44
 TGLOutput.h:45
 TGLOutput.h:46
 TGLOutput.h:47