- /*
- * ===========================================================================
- * PRODUCTION $Log: gltestui.cpp,v $
- * PRODUCTION Revision 1000.1 2004/06/01 20:53:17 gouriano
- * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
- * PRODUCTION
- * ===========================================================================
- */
- /* $Id: gltestui.cpp,v 1000.1 2004/06/01 20:53:17 gouriano Exp $
- * ===========================================================================
- *
- * PUBLIC DOMAIN NOTICE
- * National Center for Biotechnology Information
- *
- * This software/database is a "United States Government Work" under the
- * terms of the United States Copyright Act. It was written as part of
- * the author's official duties as a United States Government employee and
- * thus cannot be copyrighted. This software/database is freely available
- * to the public for use. The National Library of Medicine and the U.S.
- * Government have not placed any restriction on its use or reproduction.
- *
- * Although all reasonable efforts have been taken to ensure the accuracy
- * and reliability of the software and data, the NLM and the U.S.
- * Government do not and cannot warrant the performance or results that
- * may be obtained by using this software or data. The NLM and the U.S.
- * Government disclaim all warranties, express or implied, including
- * warranties of performance, merchantability or fitness for any particular
- * purpose.
- *
- * Please cite the author in any work or product based on this material.
- *
- * ===========================================================================
- *
- * Authors: Mike DiCuccio
- *
- * File Description:
- * User-modifiable implementation file for CGlTestUI
- */
- #include <ncbi_pch.hpp>
- #include "gltestui.hpp"
- #include <gui/opengl.h>
- #include <FL/Fl_File_Chooser.H>
- BEGIN_NCBI_SCOPE
- #include "gltestui_.cpp"
- void CGlTestUI::x_PostConstruction()
- {
- m_Window->show();
- m_GlWindow->make_current();
- m_GlVersion->label
- (reinterpret_cast<const char*> (glGetString(GL_VERSION)));
- m_GlRenderer->label
- (reinterpret_cast<const char*> (glGetString(GL_RENDERER)));
- m_GlVendor->label
- (reinterpret_cast<const char*> (glGetString(GL_VENDOR)));
- m_GlExtensions->label
- (reinterpret_cast<const char*> (glGetString(GL_EXTENSIONS)));
- m_GluVersion->label
- (reinterpret_cast<const char*> (glGetString(GLU_VERSION)));
- m_GluExtensions->label
- (reinterpret_cast<const char*> (glGetString(GLU_EXTENSIONS)));
- }
- void CGlTestUI::x_OnExit()
- {
- m_Window->hide();
- }
- void CGlTestUI::x_OnSave()
- {
- const char* file = fl_file_chooser("Select a file name", "", "");
- if ( !file || !*file) {
- return;
- }
- CNcbiOfstream o_file(file);
- o_file << "GL_VERSION: "
- << (m_GlVersion->label() ? m_GlVersion->label() : "(not given)")
- << endl;
- o_file << "GL_RENDERER: "
- << (m_GlRenderer->label() ? m_GlRenderer->label() : "(not given)")
- << endl;
- o_file << "GL_VENDOR: "
- << (m_GlVendor->label() ? m_GlVendor->label() : "(not given)")
- << endl;
- o_file << "GL_EXTENSIONS: "
- << (m_GlExtensions->label() ? m_GlExtensions->label() : "(not given)")
- << endl;
- o_file << "GLU_VERSION: "
- << (m_GluVersion->label() ? m_GluVersion->label() : "(not given)")
- << endl;
- o_file << "GLU_EXTENSIONS: "
- << (m_GluExtensions->label() ? m_GluExtensions->label() : "(not given)")
- << endl;
- }
- END_NCBI_SCOPE
- /*
- * ===========================================================================
- * $Log: gltestui.cpp,v $
- * Revision 1000.1 2004/06/01 20:53:17 gouriano
- * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
- *
- * Revision 1.2 2004/05/21 22:27:45 gorelenk
- * Added PCH ncbi_pch.hpp
- *
- * Revision 1.1 2003/03/27 13:53:14 dicuccio
- * Initial revision
- *
- * ===========================================================================
- */