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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_toplevel.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:14:20  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_toplevel.cpp,v 1000.1 2004/06/01 21:14:20 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.  *    Test application for a top-level MDI-like interface
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbiapp.hpp>
  41. #include <corelib/ncbienv.hpp>
  42. #include <corelib/ncbiargs.hpp>
  43. #include "testtl.hpp"
  44. USING_NCBI_SCOPE;
  45. /////////////////////////////////////////////////////////////////////////////
  46. //  CFooApplication::
  47. class CFooApplication : public CNcbiApplication
  48. {
  49. private:
  50.     virtual void Init(void);
  51.     virtual int  Run(void);
  52.     virtual void Exit(void);
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //  Init test for all different types of arguments
  56. void CFooApplication::Init(void)
  57. {
  58.     // Create command-line argument descriptions class
  59.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  60.     // Specify USAGE context
  61.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  62.                               "TopLevel widget test");
  63.     arg_desc->AddFlag("plastic", "Use the plastic scheme");
  64.     // Setup arg.descriptions for this application
  65.     SetupArgDescriptions(arg_desc.release());
  66. }
  67. /////////////////////////////////////////////////////////////////////////////
  68. //  Run test (printout arguments obtained from command-line)
  69. int CFooApplication::Run(void)
  70. {
  71.     //Fl::scheme("plastic");
  72.     // Get arguments
  73.     CArgs args = GetArgs();
  74.     if (args["plastic"]) {
  75.         Fl::scheme("plastic");
  76.     }
  77.     char *argv[1];
  78.     argv[0] = "test_toplevel";
  79.     CTestTL* tl = new CTestTL();
  80.     tl->Show(1, argv);
  81.     while (tl->Shown()) {
  82.         Fl::wait();
  83.     }
  84.     delete tl;
  85.     return 0;
  86. }
  87. /////////////////////////////////////////////////////////////////////////////
  88. //  Cleanup
  89. void CFooApplication::Exit(void)
  90. {
  91.     SetDiagStream(0);
  92. }
  93. /////////////////////////////////////////////////////////////////////////////
  94. //  MAIN
  95. int main(int argc, const char* argv[])
  96. {
  97.     // Execute main application function
  98.     return CFooApplication().AppMain(argc, argv, 0, eDS_Default, 0);
  99. }
  100. /*
  101.  * ===========================================================================
  102.  * $Log: test_toplevel.cpp,v $
  103.  * Revision 1000.1  2004/06/01 21:14:20  gouriano
  104.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  105.  *
  106.  * Revision 1.3  2004/05/21 22:27:56  gorelenk
  107.  * Added PCH ncbi_pch.hpp
  108.  *
  109.  * Revision 1.2  2003/03/07 17:49:26  dicuccio
  110.  * Small clean-ups.  Added description for each class.
  111.  *
  112.  * Revision 1.1  2003/03/07 17:36:09  dicuccio
  113.  * Initial revision
  114.  *
  115.  * Revision 1.1  2002/04/18 16:05:09  ucko
  116.  * Add centralized tree for sample apps.
  117.  *
  118.  * Revision 6.4  2002/04/16 18:49:07  ivanov
  119.  * Centralize threatment of assert() in tests.
  120.  * Added #include <test/test_assert.h>. CVS log moved to end of file.
  121.  *
  122.  * Revision 6.3  2001/06/01 15:36:21  vakatov
  123.  * Fixed for the case when "logfile" is not provided in the cmd.line
  124.  *
  125.  * Revision 6.2  2001/06/01 15:17:57  vakatov
  126.  * Workaround a bug in SUN WorkShop 5.1 compiler
  127.  *
  128.  * Revision 6.1  2001/05/31 16:32:51  ivanov
  129.  * Initialization
  130.  *
  131.  * ===========================================================================
  132.  */