X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src2%2FcreaImageIOWxGimmickReaderDialog.h;h=1933a38174f1f1b3862cc1427d7bff64b0fb24d3;hb=ecd7eb9aca5b98c06f3ce9072b3f73fe71f1e4b0;hp=1bf53de07799e83e87dc989cd5539ec173184a95;hpb=fcfe92562365cb738cf919d095d2f8d3608ec389;p=creaImageIO.git diff --git a/src2/creaImageIOWxGimmickReaderDialog.h b/src2/creaImageIOWxGimmickReaderDialog.h index 1bf53de..1933a38 100644 --- a/src2/creaImageIOWxGimmickReaderDialog.h +++ b/src2/creaImageIOWxGimmickReaderDialog.h @@ -5,46 +5,57 @@ #include #include - +#include "wx/wx.h" namespace creaImageIO { /** * \ingroup GUI */ + //===================================================================== //===================================================================== - class /*CREAIMAGEIO_EXPORT*/ WxGimmickReaderDialog : public wxDialog + class CREAIMAGEIO_EXPORT WxGimmickReaderDialog : public wxDialog { public: - WxGimmickReaderDialog(); - WxGimmickReaderDialog(wxWindow *parent, + WxGimmickReaderDialog(); + WxGimmickReaderDialog(wxWindow *parent, const wxWindowID id, wxString title, - const wxPoint& pos, + const wxPoint& pos, const wxSize& size, - int image_type = GIMMICK_3D_IMAGE_SELECTION, + int image_min_dim = GIMMICK_2D_IMAGE_SELECTION, + int image_max_dim = GIMMICK_3D_IMAGE_SELECTION, + int output_dim = NATIVE, int threads = 0); - + Gimmick* GetGimmick() { return mGimmick; } // typedef WxGimmick ViewType; typedef WxGimmickView::EventType EventType; ~WxGimmickReaderDialog(); - void GetSelectedImages(std::vector& s) - { mView->GetSelectedImages(s); } + + //=============================================================================================== + //Image Selection + //=============================================================================================== + + void GetSelectedImages(std::vector& s, int dim) + { mView->GetSelectedImages(s, dim); } + + void GetSelectedFiles(std::vector& s) { mView->GetSelectedFiles(s); } void OnSelChanged(EventType& event); void OnContextualMenu(EventType& event); void OnMenuTest(wxCommandEvent& event); - // void OnButtonOk(wxCommandEvent& event); - // void OnButtonCancel(wxCommandEvent& event); + void OnValid(bool valid); + void OnExit(){ mView->StopPlayer(); } + // void OnButtonOk(wxCommandEvent& event); + // void OnButtonCancel(wxCommandEvent& event); - DECLARE_EVENT_TABLE(); private : - + Gimmick* mGimmick; WxGimmickView* mView; @@ -60,11 +71,11 @@ namespace creaImageIO }; // class WxGimmickReaderDialog //===================================================================== - - + } // EO namespace creaImageIO + #endif // USE_WIDGETS // EOF #endif