]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuSetwxVtkBaseViewSetOpacityAxis.cxx
cae0c2f6ce8b037f5225b9132f652a9a9153b379
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuSetwxVtkBaseViewSetOpacityAxis.cxx
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #include "bbcreaMaracasVisuSetwxVtkBaseViewSetOpacityAxis.h"
5 #include "bbcreaMaracasVisuPackage.h"
6
7 #include <wxMPRBaseData.h>
8
9 namespace bbcreaMaracasVisu
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,SetwxVtkBaseViewSetOpacityAxis)
13 BBTK_BLACK_BOX_IMPLEMENTATION(SetwxVtkBaseViewSetOpacityAxis,bbtk::AtomicBlackBox);
14 //===== 
15 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
16 //===== 
17 void SetwxVtkBaseViewSetOpacityAxis::Process()
18 {
19
20 // THE MAIN PROCESSING METHOD BODY
21 //   Here we simply set the input 'In' value to the output 'Out'
22 //   And print out the output value
23 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
24 //    void bbSet{Input|Output}NAME(const TYPE&)
25 //    const TYPE& bbGet{Input|Output}NAME() const 
26 //    Where :
27 //    * NAME is the name of the input/output
28 //      (the one provided in the attribute 'name' of the tag 'input')
29 //    * TYPE is the C++ type of the input/output
30 //      (the one provided in the attribute 'type' of the tag 'input')
31 //    bbSetOutputOut( bbGetInputIn() );
32 //    std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
33   
34         if (bbGetInputwxVtkBaseView()!=NULL)
35         {
36                 vtkMPRBaseData* vtkmprbasedata = (vtkMPRBaseData*) (bbGetInputwxVtkBaseView()->GetVtkBaseData());
37                 vtkmprbasedata->SetOpacityAxis( bbGetInputOpacity() );
38                 wxCommandEvent newevent(wxEVT_COMMAND_MENU_SELECTED,12121);  // Refresh
39 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
40 #if wxMAJOR_VERSION <= 2
41                 bbGetInputwxVtkBaseView()->GetWxVTKRenderWindowInteractor ()->GetParent()->ProcessEvent( newevent );
42 #else
43                 bbGetInputwxVtkBaseView()->GetWxVTKRenderWindowInteractor ()->GetParent()->ProcessWindowEvent( newevent );
44 #endif                          
45         } // bbGetInputwxVtkBaseView  
46 }
47
48 //===== 
49 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
50 //===== 
51 void SetwxVtkBaseViewSetOpacityAxis::bbUserSetDefaultValues()
52 {
53
54 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
55 //    Here we initialize the input 'In' to 0
56   bbSetInputOpacity( 1 ) ;  
57   bbSetInputwxVtkBaseView( NULL ) ;  
58 }
59 //===== 
60 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
61 //===== 
62 void SetwxVtkBaseViewSetOpacityAxis::bbUserInitializeProcessing()
63 {
64
65 //  THE INITIALIZATION METHOD BODY :
66 //    Here does nothing 
67 //    but this is where you should allocate the internal/output pointers 
68 //    if any 
69
70   
71 }
72 //===== 
73 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
74 //===== 
75 void SetwxVtkBaseViewSetOpacityAxis::bbUserFinalizeProcessing()
76 {
77
78 //  THE FINALIZATION METHOD BODY :
79 //    Here does nothing 
80 //    but this is where you should desallocate the internal/output pointers 
81 //    if any
82   
83 }
84 }
85 // EO namespace bbcreaMaracasVisu
86
87