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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: multi_col_dlg_.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:47:16  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. // generated by Fast Light User Interface Designer (fluid) version 1.0105
  10. #ifndef multi_col_dlg__hpp
  11. #define multi_col_dlg__hpp
  12. #include <FL/Fl.H>
  13. /* $Id: multi_col_dlg_.hpp,v 1000.2 2004/06/01 19:47:16 gouriano Exp $ */
  14. #include <FL/Fl_Double_Window.H>
  15. #include <FL/Fl_Pack.H>
  16. #include <FL/Fl_Group.H>
  17. #include <FL/Fl_Return_Button.H>
  18. class NCBI_GUIDIALOGS_EXPORT CMultiColDlg : public CDialog {
  19. public:
  20.   CMultiColDlg();
  21.   void Show();
  22.   void SetWindowSize(int w, int h);
  23.   void SetTableSize(size_t rows, size_t cols);
  24.   void SetLabel(const string& str);
  25.   void SetTitle(const string& str);
  26.   size_t GetRows() const;
  27.   void SetRows(size_t rows);
  28.   size_t GetCols() const;
  29.   void SetCols(size_t cols);
  30.   void SetColumnHeader(size_t col, const string& str);
  31.   void SetColumnAlign(size_t col, Fl_Align align);
  32.   void SetColumnWidth(size_t col, float width);
  33.   void SetColumn(size_t col, const string& label, Fl_Align align = FL_ALIGN_LEFT, float rel_width = 1.0);
  34.   void SetCell(size_t row, size_t col, const string& str);
  35.   string& SetCell(size_t row, size_t col);
  36.   const string& GetCell(size_t row, size_t col) const;
  37. private:
  38.   Fl_Double_Window* x_CreateWindow();
  39. public:
  40.   Fl_Group *m_LabelGroup;
  41.   CMultiColTable *m_Table;
  42. private:
  43.   inline void cb_OK_i(Fl_Return_Button*, void*);
  44.   static void cb_OK(Fl_Return_Button*, void*);
  45.   string m_TitleStr;
  46.   string m_LabelStr;
  47. };
  48. #endif