wxMaracas3DBrowser.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __WX__3D__BROWSER__
00019 #define __WX__3D__BROWSER__
00020
00021 #include <wx/wx.h>
00022 #include <wx/panel.h>
00023 #include "widgets/wxSurfaceWidget.h"
00024
00025 #include <kernel/marInterface.h>
00026
00030 class wxMaracas3DBrowser : public wxPanel
00031 {
00032 public:
00033 wxMaracas3DBrowser( wxWindow* parent, marInterface* mar, wxWindowID id = -1, int id_toolbar_plans=-1 );
00034 void LoadData();
00035 void RegenerateAll(bool all=true);
00036
00037
00038
00039 int GetIsovalue();
00040 int GetOpacity();
00041 private:
00042
00043 wxSurfaceWidget *_3DSurf;
00044 marInterface *_mar;
00045
00046 };
00047
00048 #endif // __WX__3D__BROWSER__