X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src2%2FcreaImageIOWxGimmickFrame.h;fp=src2%2FcreaImageIOWxGimmickFrame.h;h=0572fcb84daffce1d244954affb4a07b355e701f;hb=4c2b3017f90a93165a5f436f4f546096a36e0fb1;hp=0000000000000000000000000000000000000000;hpb=2ce9bb440f5e83b24b532cda5626418cc28feacd;p=creaImageIO.git diff --git a/src2/creaImageIOWxGimmickFrame.h b/src2/creaImageIOWxGimmickFrame.h new file mode 100644 index 0000000..0572fcb --- /dev/null +++ b/src2/creaImageIOWxGimmickFrame.h @@ -0,0 +1,57 @@ +#ifndef __creaImageIOWxGimmickFrame_h_INCLUDED__ +#define __creaImageIOWxGimmickFrame_h_INCLUDED__ + +#ifdef USE_WXWIDGETS + +#include +#include + +namespace creaImageIO +{ + /** + * \ingroup GUI + */ + //===================================================================== + //===================================================================== + class /*CREAIMAGEIO_EXPORT*/ WxGimmickFrame : public wxFrame + { + public: + WxGimmickFrame(); + WxGimmickFrame(wxWindow *parent, + const wxWindowID id, + wxString title, + const wxPoint& pos, + const wxSize& size, + int threads = 0); + + ~WxGimmickFrame(); + + // Gimmick* GetGimmick() { return mGimmick; } + // typedef WxGimmick ViewType; + // typedef WxGimmickView::EventType EventType; + + + + + // void OnSelChanged(EventType& event); + // void OnContextualMenu(EventType& event); + // void OnMenuTest(wxCommandEvent& event); + // void OnButtonOk(wxCommandEvent& event); + // void OnButtonCancel(wxCommandEvent& event); + + // DECLARE_EVENT_TABLE(); + private : + + Gimmick* mGimmick; + WxGimmickView* mView; + + }; // class WxGimmickFrame + //===================================================================== + + +} // EO namespace creaImageIO + + +#endif // USE_WIDGETS +// EOF +#endif