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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: multi_col_dlg.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 20:45:12  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: multi_col_dlg.cpp,v 1000.2 2004/06/01 20:45:12 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.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/dialogs/col/multi_col_dlg.hpp>
  41. #include "multi_col_table.hpp"
  42. BEGIN_NCBI_SCOPE
  43. #include "multi_col_dlg_.cpp"
  44. CMultiColDlg::CMultiColDlg()
  45. {
  46.     m_Window.reset(x_CreateWindow());
  47. }
  48. void CMultiColDlg::Show()
  49. {
  50.     m_Table->redraw();
  51.     CDialog::Show();
  52. }
  53. void CMultiColDlg::SetWindowSize(int w, int h)
  54. {
  55.     m_Window->size(w, h);
  56. }
  57. void CMultiColDlg::SetTableSize(size_t rows, size_t cols)
  58. {
  59.     m_Table->SetSize(rows, cols);
  60. }
  61. void CMultiColDlg::SetTitle(const string& str)
  62. {
  63.     m_TitleStr = str;
  64.     m_Window->label(m_TitleStr.c_str());
  65. }
  66. void CMultiColDlg::SetLabel(const string& str)
  67. {
  68.     m_LabelStr = str;
  69.     m_LabelGroup->label(m_LabelStr.c_str());
  70.     // get current font state
  71.     int current_font = fl_font();
  72.     int current_size = fl_size();
  73.     // change state, measure and set widget size
  74.     int label_w = 0;
  75.     int label_h = 0;
  76.     fl_font(m_LabelGroup->labelfont(), m_LabelGroup->labelsize());
  77.     fl_measure(m_LabelGroup->label(), label_w, label_h);
  78.     label_h += 10;
  79.     label_h = max(label_h, 50);
  80.     m_LabelGroup->size(m_LabelGroup->w(), label_h);
  81.     // return to original state
  82.     fl_font(current_font, current_size);
  83. }
  84. void CMultiColDlg::SetColumn(size_t col, const string& header,
  85.                              Fl_Align align, float rel_width)
  86. {
  87.     m_Table->SetColumn(col, header, CTablePanel<int>::eString,
  88.                        align, rel_width);
  89. }
  90. void CMultiColDlg::SetColumnHeader(size_t col, const string& str)
  91. {
  92.     m_Table->SetColHeader(col, str);
  93. }
  94. void CMultiColDlg::SetColumnAlign(size_t col, Fl_Align align)
  95. {
  96.     m_Table->SetColAlign(col, align);
  97. }
  98. void CMultiColDlg::SetColumnWidth(size_t col, float wid)
  99. {
  100.     m_Table->SetRelWidth(col, wid);
  101. }
  102. void CMultiColDlg::SetCols(size_t i)
  103. {
  104.     m_Table->SetCols(i);
  105. }
  106. void CMultiColDlg::SetRows(size_t i)
  107. {
  108.     m_Table->SetRows(i);
  109. }
  110. string& CMultiColDlg::SetCell(size_t row, size_t col)
  111. {
  112.     return m_Table->SetCell(row, col);
  113. }
  114. void CMultiColDlg::SetCell(size_t row, size_t col, const string& str)
  115. {
  116.     m_Table->SetCell(row, col, str);
  117. }
  118. const string& CMultiColDlg::GetCell(size_t row, size_t col) const
  119. {
  120.     return m_Table->GetCell(row, col);
  121. }
  122. size_t CMultiColDlg::GetRows() const
  123. {
  124.     return m_Table->GetRows();
  125. }
  126. size_t CMultiColDlg::GetCols() const
  127. {
  128.     return m_Table->GetCols();
  129. }
  130. END_NCBI_SCOPE
  131. /*
  132.  * ===========================================================================
  133.  * $Log: multi_col_dlg.cpp,v $
  134.  * Revision 1000.2  2004/06/01 20:45:12  gouriano
  135.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  136.  *
  137.  * Revision 1.6  2004/05/21 22:27:41  gorelenk
  138.  * Added PCH ncbi_pch.hpp
  139.  *
  140.  * Revision 1.5  2004/01/20 18:15:11  dicuccio
  141.  * Changed to match new API in CTablePanel.  Enabled demo sub-project
  142.  *
  143.  * Revision 1.4  2003/12/04 18:10:32  dicuccio
  144.  * Changed to match API change in CTablePanel
  145.  *
  146.  * Revision 1.3  2003/09/29 15:30:11  dicuccio
  147.  * Inherit dialog from CDialog
  148.  *
  149.  * Revision 1.2  2003/08/05 17:03:22  dicuccio
  150.  * Changed multicol dialog to not be modal
  151.  *
  152.  * Revision 1.1  2003/07/25 20:03:33  dicuccio
  153.  * Initial revision
  154.  *
  155.  * ===========================================================================
  156.  */