gltestui.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: gltestui.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:53:17  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: gltestui.cpp,v 1000.1 2004/06/01 20:53:17 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    User-modifiable implementation file for CGlTestUI
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "gltestui.hpp"
  41. #include <gui/opengl.h>
  42. #include <FL/Fl_File_Chooser.H>
  43. BEGIN_NCBI_SCOPE
  44. #include "gltestui_.cpp"
  45. void CGlTestUI::x_PostConstruction()
  46. {
  47.     m_Window->show();
  48.     m_GlWindow->make_current();
  49.     m_GlVersion->label
  50.         (reinterpret_cast<const char*> (glGetString(GL_VERSION)));
  51.     m_GlRenderer->label
  52.         (reinterpret_cast<const char*> (glGetString(GL_RENDERER)));
  53.     m_GlVendor->label
  54.         (reinterpret_cast<const char*> (glGetString(GL_VENDOR)));
  55.     m_GlExtensions->label
  56.         (reinterpret_cast<const char*> (glGetString(GL_EXTENSIONS)));
  57.     m_GluVersion->label
  58.         (reinterpret_cast<const char*> (glGetString(GLU_VERSION)));
  59.     m_GluExtensions->label
  60.         (reinterpret_cast<const char*> (glGetString(GLU_EXTENSIONS)));
  61. }
  62. void CGlTestUI::x_OnExit()
  63. {
  64.     m_Window->hide();
  65. }
  66. void CGlTestUI::x_OnSave()
  67. {
  68.     const char* file = fl_file_chooser("Select a file name", "", "");
  69.     if ( !file  ||  !*file) {
  70.         return;
  71.     }
  72.     CNcbiOfstream o_file(file);
  73.     o_file << "GL_VERSION: "
  74.         << (m_GlVersion->label() ? m_GlVersion->label() : "(not given)")
  75.         << endl;
  76.     o_file << "GL_RENDERER: "
  77.         << (m_GlRenderer->label() ? m_GlRenderer->label() : "(not given)")
  78.         << endl;
  79.     o_file << "GL_VENDOR: "
  80.         << (m_GlVendor->label() ? m_GlVendor->label() : "(not given)")
  81.         << endl;
  82.     o_file << "GL_EXTENSIONS: "
  83.         << (m_GlExtensions->label() ? m_GlExtensions->label() : "(not given)")
  84.         << endl;
  85.     o_file << "GLU_VERSION: "
  86.         << (m_GluVersion->label() ? m_GluVersion->label() : "(not given)")
  87.         << endl;
  88.     o_file << "GLU_EXTENSIONS: "
  89.         << (m_GluExtensions->label() ? m_GluExtensions->label() : "(not given)")
  90.         << endl;
  91. }
  92. END_NCBI_SCOPE
  93. /*
  94.  * ===========================================================================
  95.  * $Log: gltestui.cpp,v $
  96.  * Revision 1000.1  2004/06/01 20:53:17  gouriano
  97.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  98.  *
  99.  * Revision 1.2  2004/05/21 22:27:45  gorelenk
  100.  * Added PCH ncbi_pch.hpp
  101.  *
  102.  * Revision 1.1  2003/03/27 13:53:14  dicuccio
  103.  * Initial revision
  104.  *
  105.  * ===========================================================================
  106.  */