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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: about_dlg.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 20:47:29  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: about_dlg.cpp,v 1000.2 2004/06/01 20:47:29 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 the extension of the About dialog
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "about_dlg.hpp"
  41. #include <gui/core/version.hpp>
  42. BEGIN_NCBI_SCOPE
  43. // We include the generated _.cpp file here.  This avoids a nasty bug in some
  44. // versions of gcc in which inline functions are not intantiated.
  45. #include "about_dlg_.cpp"
  46. CAboutDlg::CAboutDlg()
  47. {
  48.     m_Window.reset(x_CreateWindow());
  49.     // m_VersionStr and m_BuildStr must either be static or member variables
  50.     // (FLTK doesn't copy the contents, it just stores a pointer)
  51.     m_VersionStr = "version ";
  52.     m_VersionStr += NStr::IntToString(CPluginVersion::eMajor) + ".";
  53.     m_VersionStr += NStr::IntToString(CPluginVersion::eMinor);
  54.     m_Version->label(m_VersionStr.c_str());
  55.     m_BuildStr = "build ";
  56.     m_BuildStr += __DATE__;
  57.     m_BuildStr += "  ";
  58.     m_BuildStr += __TIME__;
  59.     m_BuildDate->label(m_BuildStr.c_str());
  60. }
  61. END_NCBI_SCOPE
  62. /*
  63.  * ===========================================================================
  64.  * $Log: about_dlg.cpp,v $
  65.  * Revision 1000.2  2004/06/01 20:47:29  gouriano
  66.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  67.  *
  68.  * Revision 1.8  2004/05/21 22:27:42  gorelenk
  69.  * Added PCH ncbi_pch.hpp
  70.  *
  71.  * Revision 1.7  2003/11/24 15:40:25  dicuccio
  72.  * Renamed CVersion to CPluginVersion
  73.  *
  74.  * Revision 1.6  2003/09/29 15:32:43  dicuccio
  75.  * Inherit dialog from CDialog
  76.  *
  77.  * Revision 1.5  2003/04/29 14:51:52  dicuccio
  78.  * Reworked FLUID-generated code: more explicit control over constructor, better
  79.  * memeory management
  80.  *
  81.  * Revision 1.4  2003/01/13 13:10:10  dicuccio
  82.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  83.  * Moved all FLUID-generated code into namespace ncbi.
  84.  *
  85.  * Revision 1.3  2002/12/13 13:18:53  dicuccio
  86.  * Added work-around for inlining problems in some versions of gcc: directly
  87.  * include a FLUID-generated '*_.cpp' file in the corresponding '*.cpp' and
  88.  * remove this file from the build.  Thanks Aaron!
  89.  *
  90.  * Revision 1.2  2002/11/29 16:13:43  dicuccio
  91.  * Use USING_SCOPE insteadl of BEGIN/END_SCOPE for out-of-scope classes.
  92.  *
  93.  * Revision 1.1  2002/11/06 18:23:43  dicuccio
  94.  * Initial revision
  95.  *
  96.  * ===========================================================================
  97.  */