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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: demo_dock.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:08:27  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: demo_dock.cpp,v 1000.1 2004/06/01 21:08:27 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 "dock_ui.hpp"
  44. USING_NCBI_SCOPE;
  45. /////////////////////////////////////////////////////////////////////////////
  46. //  CDockApp::
  47. class CDockApp : 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 CDockApp::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.                               "DOcking 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 CDockApp::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] = "demo_dock";
  79.     CDockUI dock;
  80.     return dock.Show(1, argv);
  81. }
  82. /////////////////////////////////////////////////////////////////////////////
  83. //  Cleanup
  84. void CDockApp::Exit(void)
  85. {
  86.     SetDiagStream(0);
  87. }
  88. /////////////////////////////////////////////////////////////////////////////
  89. //  MAIN
  90. int main(int argc, const char* argv[])
  91. {
  92.     // Execute main application function
  93.     return CDockApp().AppMain(argc, argv, 0, eDS_Default, 0);
  94. }
  95. /*
  96.  * ===========================================================================
  97.  * $Log: demo_dock.cpp,v $
  98.  * Revision 1000.1  2004/06/01 21:08:27  gouriano
  99.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  100.  *
  101.  * Revision 1.2  2004/05/21 22:27:53  gorelenk
  102.  * Added PCH ncbi_pch.hpp
  103.  *
  104.  * Revision 1.1  2004/01/08 16:45:32  dicuccio
  105.  * Initial revision
  106.  *
  107.  * Revision 1.2  2003/03/07 17:49:26  dicuccio
  108.  * Small clean-ups.  Added description for each class.
  109.  *
  110.  * Revision 1.1  2003/03/07 17:36:09  dicuccio
  111.  * Initial revision
  112.  *
  113.  * Revision 1.1  2002/04/18 16:05:09  ucko
  114.  * Add centralized tree for sample apps.
  115.  *
  116.  * Revision 6.4  2002/04/16 18:49:07  ivanov
  117.  * Centralize threatment of assert() in tests.
  118.  * Added #include <test/test_assert.h>. CVS log moved to end of file.
  119.  *
  120.  * Revision 6.3  2001/06/01 15:36:21  vakatov
  121.  * Fixed for the case when "logfile" is not provided in the cmd.line
  122.  *
  123.  * Revision 6.2  2001/06/01 15:17:57  vakatov
  124.  * Workaround a bug in SUN WorkShop 5.1 compiler
  125.  *
  126.  * Revision 6.1  2001/05/31 16:32:51  ivanov
  127.  * Initialization
  128.  *
  129.  * ===========================================================================
  130.  */