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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_multicoldlg.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 20:45:24  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_multicoldlg.cpp,v 1000.2 2004/06/01 20:45:24 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 platform for the table widget
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <corelib/ncbiapp.hpp>
  42. #include <corelib/ncbienv.hpp>
  43. #include <corelib/ncbiargs.hpp>
  44. #include <gui/dialogs/col/multi_col_dlg.hpp>
  45. USING_SCOPE(ncbi);
  46. class CTestMultiColDlgApp : public CNcbiApplication
  47. {
  48. private:
  49.     virtual void Init(void);
  50.     virtual int  Run(void);
  51.     virtual void Exit(void);
  52. };
  53. void CTestMultiColDlgApp::Init(void)
  54. {
  55.     // Create command-line argument descriptions class
  56.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  57.     // Specify USAGE context
  58.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  59.                               "CMultiColDlg demo program");
  60.     // Setup arg.descriptions for this application
  61.     SetupArgDescriptions(arg_desc.release());
  62. }
  63. int CTestMultiColDlgApp::Run(void)
  64. {
  65.     // Get arguments
  66.     CArgs args = GetArgs();
  67.     CMultiColDlg dlg;
  68.     dlg.SetTitle("Test of Multicolumn List Dialog");
  69.     dlg.SetLabel("This is a long labelncentered and nicely formatted.n"
  70.                  "How does it look?nNice, eh?");
  71.     dlg.SetCols(3);
  72.     dlg.SetColumn(0, "Col 0");
  73.     dlg.SetColumn(1, "Col 1");
  74.     dlg.SetColumn(2, "Col 2");
  75.     for (int r = 0;  r < 10;  ++r) {
  76.         for (int c = 0;  c < 3;  ++c) {
  77.             string str = "cell " + NStr::IntToString(r) + ","
  78.                 + NStr::IntToString(c);
  79.             dlg.SetCell(r, c, str);
  80.         }
  81.     }
  82.     char *argv[1];
  83.     argv[0] = "app";
  84.     Fl::args(1, argv);
  85.     dlg.Show();
  86.     return 0;
  87. }
  88. /////////////////////////////////////////////////////////////////////////////
  89. //  Cleanup
  90. void CTestMultiColDlgApp::Exit(void)
  91. {
  92.     SetDiagStream(0);
  93. }
  94. /////////////////////////////////////////////////////////////////////////////
  95. //  MAIN
  96. int main(int argc, const char* argv[])
  97. {
  98.     // Execute main application function
  99.     return CTestMultiColDlgApp().AppMain(argc, argv, 0, eDS_Default, 0);
  100. }
  101. /*
  102.  * ===========================================================================
  103.  * $Log: test_multicoldlg.cpp,v $
  104.  * Revision 1000.2  2004/06/01 20:45:24  gouriano
  105.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  106.  *
  107.  * Revision 1.4  2004/05/21 22:27:41  gorelenk
  108.  * Added PCH ncbi_pch.hpp
  109.  *
  110.  * Revision 1.3  2004/01/20 18:15:12  dicuccio
  111.  * Changed to match new API in CTablePanel.  Enabled demo sub-project
  112.  *
  113.  * Revision 1.2  2003/09/10 12:17:14  dicuccio
  114.  * Fixed typo in clas name
  115.  *
  116.  * Revision 1.1  2003/07/25 20:03:33  dicuccio
  117.  * Initial revision
  118.  *
  119.  * ===========================================================================
  120.  */