creaImageIOWxExportDlg.h

Go to the documentation of this file.
00001 #ifndef __creaImageIOWxExportDlg_h_INCLUDED__
00002 #define __creaImageIOWxExportDlg_h_INCLUDED__
00003 
00004 #ifdef USE_WXWIDGETS
00005 #include <creaWx.h>
00006 #include <creaImageIOWxGimmickView.h>
00007 
00008 #define ID_EXPORTCOMBO_CTRL 1801
00009 #define ID_EXPORT_OK            1802
00010 
00011 namespace creaImageIO{
00015   //=====================================================================
00016  //=====================================================================
00020         class WxExportDlg : public wxDialog
00021         {
00022         public:
00024                 WxExportDlg(wxWindow *parent, const std::vector<std::string> storages);
00026                 ~WxExportDlg();
00027 
00029         const std::string& GetStorage(){ return m_name;}
00030 
00031         private:
00032 
00034                 wxComboBox *ExportCombo;
00035 
00037                 void OnOk(wxCommandEvent &event);
00038 
00040                 std::string m_name;
00041 
00042         };
00043 }
00044 #endif // USE_WIDGETS
00045 // EOF
00046 #endif