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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: report_view_.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 19:54:16  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. // generated by Fast Light User Interface Designer (fluid) version 1.0105
  10. #ifndef report_view__hpp
  11. #define report_view__hpp
  12. #include <FL/Fl.H>
  13. /* $Id: report_view_.hpp,v 1000.0 2004/06/01 19:54:16 gouriano Exp $ */
  14. #include <FL/Fl_Double_Window.H>
  15. #include <FL/Fl_Box.H>
  16. class NCBI_GUICORE_EXPORT CReportView : public CView {
  17. public:
  18.   CReportView();
  19.   void SetColumn(size_t col_idx, const string& col_header, Fl_Align align = FL_ALIGN_CENTER, float width = 1.0f);
  20.   void Reserve(size_t rows, size_t cols);
  21.   string& SetCell(size_t row, size_t col);
  22.   const string& GetCell(size_t row, size_t col) const;
  23.   void SetData(size_t row, const CSerialObject& obj);
  24.   const CSerialObject& GetData(size_t row) const;
  25.   void SetTitle(const string& str);
  26.   const string& GetTitle() const;
  27.   void OnSelectionChanged(const CSelectionBuffer& sels);
  28.   void OnVisibleRangeChanged(const objects::CSeq_loc& loc);
  29. private:
  30.   Fl_Double_Window* x_CreateWindow();
  31.   CReportTable *m_Table;
  32.   string m_Title;
  33. };
  34. #endif