]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracas_N_ViewersWidget.h
Compile with new crea (export symbols under windows)
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxMaracas_N_ViewersWidget.h
1 /*=========================================================================
2
3   Program:   wxMaracas
4   Module:    $RCSfile: wxMaracas_N_ViewersWidget.h,v $
5   Language:  C++
6   Date:      $Date: 2009/01/15 11:09:44 $
7   Version:   $Revision: 1.2 $
8
9   Copyright: (c) 2002, 2003
10   License:
11   
12      This software is distributed WITHOUT ANY WARRANTY; without even 
13      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14      PURPOSE.  See the above copyright notice for more information.
15
16 =========================================================================*/
17
18 #ifndef __WX__MARACAS__N_VIEWERSWIDGET__H__
19 #define __WX__MARACAS__N_VIEWERSWIDGET__H__
20
21
22 // -----------------------------------------------------------------------------------------------------------
23 // WX headers inclusion.
24 // For compilers that support precompilation, includes <wx/wx.h>.
25 // -----------------------------------------------------------------------------------------------------------
26 #include <wx/wxprec.h>
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30 #ifndef WX_PRECOMP
31 #include <wx/wx.h>
32 #endif
33
34 //------------------------------------------------------------------------------------------------------------
35 // Includes
36 //------------------------------------------------------------------------------------------------------------
37
38 #include "vtkImageData.h"
39 #include "wxMaracas_ViewerWidget.h"
40 #include <iostream>
41 #include <vector>
42
43 //------------------------------------------------------------------------------------------------------------
44 // Class definition
45 //------------------------------------------------------------------------------------------------------------
46
47 class creaMaracasVisu_EXPORT wxMaracas_N_ViewersWidget : public wxPanel
48   {
49   public:
50
51                   
52         //------------------------------------------------------------------------------------------------------------
53         // Constructors & Destructors
54         //------------------------------------------------------------------------------------------------------------
55
56         wxMaracas_N_ViewersWidget(wxWindow *parent, vtkImageData* imagedata, std::vector<int> *nTypeView);
57     ~wxMaracas_N_ViewersWidget();
58
59         
60         //------------------------------------------------------------------------------------------------------------
61         // Methods
62         //------------------------------------------------------------------------------------------------------------
63
64     void Update();
65     vtkRenderer *GetRenderer();
66         void RefreshView();
67
68         virtual void OnRefreshView(wxCommandEvent & event);
69         void OnDClickLeft(wxCommandEvent & event);
70         wxMaracas_ViewerWidget *GetWindow(int iWin);
71         wxVtkBaseView *GetwxVtkBaseView(int iWin);
72         virtual void Refresh(bool eraseBackground = true,const wxRect* rect = NULL );
73         void SetImage( vtkImageData *image      );
74 //      double GetZ(int iWin);
75         double GetX();
76         double GetY();
77         double GetZ();
78
79         //------------------------------------------------------------------------------------------------------------
80         // Attributes
81         //------------------------------------------------------------------------------------------------------------
82
83   private:
84         
85         wxMaracas_ViewerWidget  *wxwindow1;
86         wxMaracas_ViewerWidget  *wxwindow2;
87         wxMaracas_ViewerWidget  *wxwindow3;
88         wxMaracas_ViewerWidget  *wxwindow4;
89
90
91   DECLARE_EVENT_TABLE( );
92   };
93
94
95 #endif // __WX__MARACAS__N_VIEWERWIDGET__H__