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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: colselect_dlg_.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:08:56  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. // generated by Fast Light User Interface Designer (fluid) version 1.0105
  10. #ifndef colselect_dlg__hpp
  11. #define colselect_dlg__hpp
  12. #include <FL/Fl.H>
  13. /* $Id: colselect_dlg_.hpp,v 1000.1 2004/06/01 21:08:56 gouriano Exp $ */
  14. #include <FL/Fl_Double_Window.H>
  15. #include <FL/Fl_Group.H>
  16. #include <FL/Fl_Box.H>
  17. #include <FL/Fl_Browser.H>
  18. #include <FL/Fl_Button.H>
  19. #include <FL/Fl_Return_Button.H>
  20. class CColumnSelectDlg {
  21. public:
  22.   CColumnSelectDlg();
  23. private:
  24.   Fl_Double_Window *m_MainWin;
  25.   Fl_Browser *m_HiddenList;
  26.   inline void cb__i(Fl_Button*, void*);
  27.   static void cb_(Fl_Button*, void*);
  28.   inline void cb_1_i(Fl_Button*, void*);
  29.   static void cb_1(Fl_Button*, void*);
  30.   inline void cb_8_i(Fl_Button*, void*);
  31.   static void cb_8(Fl_Button*, void*);
  32.   inline void cb_2_i(Fl_Button*, void*);
  33.   static void cb_2(Fl_Button*, void*);
  34.   Fl_Browser *m_ShownList;
  35.   inline void cb_OK_i(Fl_Return_Button*, void*);
  36.   static void cb_OK(Fl_Return_Button*, void*);
  37.   inline void cb_Cancel_i(Fl_Button*, void*);
  38.   static void cb_Cancel(Fl_Button*, void*);
  39. public:
  40.   ~CColumnSelectDlg();
  41.   void AddColumn(const string& col_name, int col_idx, bool checked = false);
  42.   void Clear();
  43.   vector<int> GetSelected() const;
  44.   EDialogReturnValue Show();
  45. private:
  46.   EDialogReturnValue m_RetVal;
  47.   vector< pair< int, string > > m_HiddenData;
  48.   vector< pair< int, string > > m_ShownData;
  49.   void x_OnOK();
  50.   void x_OnCancel();
  51.   void x_OnDown();
  52.   void x_OnUp();
  53.   void x_OnHide();
  54.   void x_OnShow();
  55. };
  56. #endif