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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: testtl.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:14:33  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: testtl.cpp,v 1000.1 2004/06/01 21:14:33 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.  *    CCTestTL -- test MDI window
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <FL/Fl_Box.H>
  41. #include <gui/widgets/toplevel/child.hpp>
  42. #include "testtl.hpp"
  43. #include "testchild.hpp"
  44. BEGIN_NCBI_SCOPE
  45. // We include the generated _.cpp file here.  This avoids a nasty bug in some
  46. // versions of gcc in which inline functions are not intantiated.
  47. #include "testtl_.cpp"
  48. CTestTL::~CTestTL()
  49. {
  50.     NON_CONST_ITERATE (vector<CTestChild*>, iter, m_Children) {
  51.         delete *iter;
  52.     }
  53. }
  54. void CTestTL::x_PostConstruction()
  55. {
  56.     m_TopLevel->resizable(NULL);
  57. }
  58. void CTestTL::Show(int argc, char **argv)
  59. {
  60.     m_MainWin->show(argc, argv);
  61. }
  62. bool CTestTL::Shown() const
  63. {
  64.     if (m_MainWin.get()) {
  65.         return m_MainWin->shown();
  66.     }
  67.     return false;
  68. }
  69. void CTestTL::x_OnExit()
  70. {
  71.     if (m_MainWin.get()) {
  72.         m_MainWin->hide();
  73.     }
  74. }
  75. void CTestTL::x_OnNewChild()
  76. {
  77.     CTestChild* child = new CTestChild();
  78.     m_Children.push_back(child);
  79.     m_TopLevel->AddChild(child->m_Child);
  80.     m_TopLevel->redraw();
  81. }
  82. void CTestTL::x_OnDeleteCurrent()
  83. {
  84. }
  85. void CTestTL::x_OnCascade()
  86. {
  87.     m_TopLevel->Cascade();
  88. }
  89. void CTestTL::x_OnTile()
  90. {
  91.     m_TopLevel->Tile();
  92. }
  93. END_NCBI_SCOPE
  94. /*
  95.  * ===========================================================================
  96.  * $Log: testtl.cpp,v $
  97.  * Revision 1000.1  2004/06/01 21:14:33  gouriano
  98.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  99.  *
  100.  * Revision 1.4  2004/05/21 22:27:56  gorelenk
  101.  * Added PCH ncbi_pch.hpp
  102.  *
  103.  * Revision 1.3  2003/03/17 14:55:42  dicuccio
  104.  * Lots of clean-up.  Fixed memory leaks in test program; added more explicit
  105.  * destruction pathway to support integration into Genome Workbench.  Added
  106.  * explicit calls to cascade / tile widgets in a toplevel workspace.
  107.  *
  108.  * Revision 1.2  2003/03/07 17:49:26  dicuccio
  109.  * Small clean-ups.  Added description for each class.
  110.  *
  111.  * Revision 1.1  2003/03/07 17:36:09  dicuccio
  112.  * Initial revision
  113.  *
  114.  * ===========================================================================
  115.  */