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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: multi_demo.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:07:40  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: multi_demo.cpp,v 1000.1 2004/06/01 21:07:40 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 multiple alignment viewer
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbiapp.hpp>
  41. #include <corelib/ncbiargs.hpp>
  42. #include <corelib/ncbienv.hpp>
  43. #include <corelib/ncbireg.hpp>
  44. #include <FL/Fl.H>
  45. #include "multi_demo_ui.hpp"
  46. USING_NCBI_SCOPE;
  47. class CMultiDemoApp : public CNcbiApplication
  48. {
  49. public:
  50.     virtual void Init(void);
  51.     virtual int  Run(void);
  52.     virtual void Exit(void);
  53. private:
  54.     auto_ptr<CMultiDemoUI> m_Window;
  55. };
  56. void CMultiDemoApp::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.                               "Plug-in test application");
  63.     // Setup arg.descriptions for this application
  64.     SetupArgDescriptions(arg_desc.release());
  65. }
  66. int CMultiDemoApp::Run(void)
  67. {
  68.     // Get arguments
  69.     CArgs args = GetArgs();
  70.     Fl::scheme("plastic");
  71.     m_Window.reset(new CMultiDemoUI());
  72.     char* argv[] = {
  73.         "app"
  74.     };
  75.     m_Window->Show(1, argv);
  76.     return 0;
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. //  Cleanup
  80. void CMultiDemoApp::Exit(void)
  81. {
  82.     SetDiagStream(0);
  83. }
  84. /////////////////////////////////////////////////////////////////////////////
  85. //  MAIN
  86. int main(int argc, const char* argv[])
  87. {
  88.     // Execute main application function
  89.     return CMultiDemoApp().AppMain(argc, argv, 0, eDS_Default, 0);
  90. }
  91. /*
  92.  * ===========================================================================
  93.  * $Log: multi_demo.cpp,v $
  94.  * Revision 1000.1  2004/06/01 21:07:40  gouriano
  95.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  96.  *
  97.  * Revision 1.2  2004/05/21 22:27:52  gorelenk
  98.  * Added PCH ncbi_pch.hpp
  99.  *
  100.  * Revision 1.1  2003/07/14 17:36:47  dicuccio
  101.  * Initial revision
  102.  *
  103.  * ===========================================================================
  104.  */