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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dlg_demo.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:05:22  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: dlg_demo.cpp,v 1000.1 2004/06/01 21:05:22 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 plugins
  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 <gui/utils/message_box.hpp>
  46. USING_NCBI_SCOPE;
  47. class CPluginTestApp : public CNcbiApplication
  48. {
  49. public:
  50.     virtual void Init(void);
  51.     virtual int  Run(void);
  52.     virtual void Exit(void);
  53. };
  54. void CPluginTestApp::Init(void)
  55. {
  56.     // Create command-line argument descriptions class
  57.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  58.     // Specify USAGE context
  59.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  60.                               "Plug-in test application");
  61.     // Setup arg.descriptions for this application
  62.     SetupArgDescriptions(arg_desc.release());
  63. }
  64. int CPluginTestApp::Run(void)
  65. {
  66.     // Get arguments
  67.     CArgs args = GetArgs();
  68. #ifdef NCBI_OS_DARWIN
  69.     // plastic scheme mimics the Darwin look-and-feel
  70.     Fl::scheme("plastic");
  71. #endif
  72.     EDialogReturnValue ret_val;
  73.     // first dialog box: OK only
  74.     ret_val = NcbiMessageBox("This has one button ('OK')",
  75.                              eDialog_Ok, eIcon_Info,
  76.                              "OK Dialog");
  77.     switch (ret_val) {
  78.     case eOK:
  79.         cout << "user chose OK" << endl;
  80.         break;
  81.     case eCancel:
  82.         LOG_POST(Error << "user chose CANCEL: invalid value");
  83.         break;
  84.     default:
  85.         LOG_POST(Error << "unexpected return value: " << ret_val);
  86.         break;
  87.     }
  88.     // second dialog: OK and Cancel, multi-line message
  89.     ret_val = NcbiMessageBox("This has two buttons:n('OK' and 'Cancel')n"
  90.                              "as well as having a few longer mesagesn"
  91.                              "that span several lines,n"
  92.                              "so we can see how our justification andn"
  93.                              "text measuring stacks upnn"
  94.                              "What do you think - works or not?n",
  95.                              eDialog_OkCancel, eIcon_Exclamation,
  96.                              "OK Dialog");
  97.     switch (ret_val) {
  98.     case eOK:
  99.         cout << "user chose OK" << endl;
  100.         break;
  101.     case eCancel:
  102.         cout << "user chose Cancel" << endl;
  103.         break;
  104.     default:
  105.         LOG_POST(Error << "unexpected return value: " << ret_val);
  106.         break;
  107.     }
  108.     // third dialog: yes/no, long lines
  109.     ret_val = NcbiMessageBox("This has two buttons ('Yes' and 'No'), and "
  110.                              "this line is exceptionally long, don't you "
  111.                              "think?",
  112.                              eDialog_YesNo, eIcon_Question,
  113.                              "OK Dialog");
  114.     switch (ret_val) {
  115.     case eYes:
  116.         cout << "user chose Yes" << endl;
  117.         break;
  118.     case eNo:
  119.         cout << "user chose No" << endl;
  120.         break;
  121.     default:
  122.         LOG_POST(Error << "unexpected return value: " << ret_val);
  123.         break;
  124.     }
  125.     return 0;
  126. }
  127. /////////////////////////////////////////////////////////////////////////////
  128. //  Cleanup
  129. void CPluginTestApp::Exit(void)
  130. {
  131.     SetDiagStream(0);
  132. }
  133. /////////////////////////////////////////////////////////////////////////////
  134. //  MAIN
  135. int main(int argc, const char* argv[])
  136. {
  137.     // Execute main application function
  138.     return CPluginTestApp().AppMain(argc, argv, 0, eDS_Default, 0);
  139. }
  140. /*
  141.  * ===========================================================================
  142.  * $Log: dlg_demo.cpp,v $
  143.  * Revision 1000.1  2004/06/01 21:05:22  gouriano
  144.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  145.  *
  146.  * Revision 1.3  2004/05/21 22:27:51  gorelenk
  147.  * Added PCH ncbi_pch.hpp
  148.  *
  149.  * Revision 1.2  2003/05/30 14:15:45  dicuccio
  150.  * Renamed MessageBox to NcbiMessageBox because brain-dead MSVC thinks this is
  151.  * ::MessageBox and rewrites the symbol as MessageBoxA, which results in an
  152.  * unresolved external and conflict with the Win32 API :(.
  153.  *
  154.  * Revision 1.1  2003/05/30 12:51:12  dicuccio
  155.  * Moved message box code from gui/dialogs/general -> gui/utils, as it is a very
  156.  * basic piece of code that lots of other code depends on (specifically works
  157.  * around circular dependency with various gui/widget libraries)
  158.  *
  159.  * Revision 1.5  2003/05/19 13:36:00  dicuccio
  160.  * Moved gui/core/plugin/ -> gui/plugin/.  Merged gui/core/algo, gui/core/doc/,
  161.  * and gui/core/view/ into one library (gui/core/)
  162.  *
  163.  * Revision 1.4  2003/05/09 16:50:28  dicuccio
  164.  * Previous log message should have been:
  165.  * Revised all tests - made reporting more explicit.  Added tests for optional and
  166.  * default arguments, explicitly test IsValid() and IsEmpty()
  167.  *
  168.  * Revision 1.3  2003/05/09 16:48:25  dicuccio
  169.  * Added explicit verification that default set-constraint string arguments will
  170.  * ave their menu values shown
  171.  *
  172.  * Revision 1.2  2003/04/25 14:15:24  dicuccio
  173.  * Fix compilation errors resulting from changes to plugin API
  174.  *
  175.  * Revision 1.1  2003/03/20 19:57:28  dicuccio
  176.  * Initial revision
  177.  *
  178.  * ===========================================================================
  179.  */