#ifndef __creaImageIOWxOutputDlg_h_INCLUDED__ #define __creaImageIOOutputtDlg_h_INCLUDED__ #ifdef USE_WXWIDGETS #include #include namespace creaImageIO{ /** * \ingroup GUI */ //===================================================================== //===================================================================== /// WxOutputDlg allows to select the different output format /// class WxOutputDlg : public wxDialog { public: ///CTor WxOutputDlg (wxWindow *parent, const std::vector filenames, int i_dim, bool single); ///DTor ~WxOutputDlg(); /// Get selected storage const std::string getAsking(); const std::string getDim(); private: ///Validate selected storage void OnOk(wxCommandEvent &event); std::vector checkOut; void OnChange(wxCommandEvent& event); wxCheckBox *checkAsking; }; } #endif // USE_WIDGETS // EOF #endif// __creaImageIOWxOutputDlg_h_INCLUDED__