]> Creatis software - creaImageIO.git/blobdiff - src/creaImageIOWxOutputDlg.h
additional document for output
[creaImageIO.git] / src / creaImageIOWxOutputDlg.h
diff --git a/src/creaImageIOWxOutputDlg.h b/src/creaImageIOWxOutputDlg.h
new file mode 100644 (file)
index 0000000..19cac52
--- /dev/null
@@ -0,0 +1,44 @@
+#ifndef __creaImageIOWxOutputDlg_h_INCLUDED__
+#define __creaImageIOOutputtDlg_h_INCLUDED__
+
+#ifdef USE_WXWIDGETS
+#include <creaWx.h>
+#include <creaImageIOWxGimmickView.h>
+
+
+
+namespace creaImageIO{
+       /**
+   * \ingroup GUI
+   */
+  //=====================================================================
+ //=====================================================================
+ /// WxOutputDlg allows to select the different output format
+ ///
+       class WxOutputDlg : public wxDialog
+       {
+       public:
+               ///CTor
+               WxOutputDlg (wxWindow *parent, const std::vector<std::string> 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<wxCheckBox*> checkOut;
+               void OnChange(wxCommandEvent& event);
+
+               wxCheckBox      *checkAsking;
+
+       };
+}
+#endif // USE_WIDGETS
+// EOF
+#endif// __creaImageIOWxOutputDlg_h_INCLUDED__