--- /dev/null
+//=====
+// 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)
+//=====
+#include "bbcreaContoursGetWxVtkBaseView.h"
+#include "bbcreaContoursPackage.h"
+
+#include "wxContourMainFrame.h"
+
+namespace bbcreaContours
+{
+
+BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaContours,GetWxVtkBaseView)
+BBTK_BLACK_BOX_IMPLEMENTATION(GetWxVtkBaseView,bbtk::AtomicBlackBox);
+//=====
+// 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)
+//=====
+void GetWxVtkBaseView::Process()
+{
+
+// THE MAIN PROCESSING METHOD BODY
+// Here we simply set the input 'In' value to the output 'Out'
+// And print out the output value
+// INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
+// void bbSet{Input|Output}NAME(const TYPE&)
+// const TYPE& bbGet{Input|Output}NAME() const
+// Where :
+// * NAME is the name of the input/output
+// (the one provided in the attribute 'name' of the tag 'input')
+// * TYPE is the C++ type of the input/output
+// (the one provided in the attribute 'type' of the tag 'input')
+
+// bbSetOutputOut( bbGetInputIn() );
+// std::cout << "Output value = " <<bbGetOutputOut() << std::endl;
+
+ if (bbGetInputWxContourMainFrame()!=NULL)
+ {
+ bbSetOutputOut( bbGetInputWxContourMainFrame()->GetWxVtkBaseView() );
+ } // if Instance
+
+
+}
+//=====
+// 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)
+//=====
+void GetWxVtkBaseView::bbUserSetDefaultValues()
+{
+
+// SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX
+// Here we initialize the input 'In' to 0
+// bbSetInputIn(0);
+
+}
+//=====
+// 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)
+//=====
+void GetWxVtkBaseView::bbUserInitializeProcessing()
+{
+
+// THE INITIALIZATION METHOD BODY :
+// Here does nothing
+// but this is where you should allocate the internal/output pointers
+// if any
+
+
+}
+//=====
+// 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)
+//=====
+void GetWxVtkBaseView::bbUserFinalizeProcessing()
+{
+
+// THE FINALIZATION METHOD BODY :
+// Here does nothing
+// but this is where you should desallocate the internal/output pointers
+// if any
+
+}
+}
+// EO namespace bbcreaContours
+
+
--- /dev/null
+//=====
+// 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)
+//=====
+#ifndef __bbcreaContoursGetWxVtkBaseView_h_INCLUDED__
+#define __bbcreaContoursGetWxVtkBaseView_h_INCLUDED__
+
+#include "bbcreaContours_EXPORT.h"
+#include "bbtkAtomicBlackBox.h"
+#include "iostream"
+
+#include "wxVtkBaseView.h"
+#include "wxContourMainFrame.h"
+
+namespace bbcreaContours
+{
+
+class bbcreaContours_EXPORT GetWxVtkBaseView
+ :
+ public bbtk::AtomicBlackBox
+{
+ BBTK_BLACK_BOX_INTERFACE(GetWxVtkBaseView,bbtk::AtomicBlackBox);
+//=====
+// 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)
+//=====
+ BBTK_DECLARE_INPUT(WxContourMainFrame,wxContourMainFrame*);
+ BBTK_DECLARE_OUTPUT(Out,wxVtkBaseView* );
+ BBTK_PROCESS(Process);
+ void Process();
+//=====
+// 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)
+//=====
+};
+
+BBTK_BEGIN_DESCRIBE_BLACK_BOX(GetWxVtkBaseView,bbtk::AtomicBlackBox);
+ BBTK_NAME("GetWxVtkBaseView");
+ BBTK_AUTHOR("InfoDev");
+ BBTK_DESCRIPTION("No Description.");
+ BBTK_CATEGORY("empty");
+
+ BBTK_INPUT(GetWxVtkBaseView,WxContourMainFrame,"wxContourMainFrame",wxContourMainFrame*,"");
+
+ BBTK_OUTPUT(GetWxVtkBaseView,Out,"wxVtkBaseView",wxVtkBaseView*,"");
+
+BBTK_END_DESCRIBE_BLACK_BOX(GetWxVtkBaseView);
+//=====
+// 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)
+//=====
+}
+// EO namespace bbcreaContours
+
+#endif // __bbcreaContoursGetWxVtkBaseView_h_INCLUDED__
+
{
if (bbGetInputIn()!=NULL)
{
- wxContourMainFrame::getInstance()->SetColorLayerImage( bbGetInputIn() );
+ wxContourMainFrame *wxcontourmainframe=wxContourMainFrame::getInstance();
+ wxcontourmainframe->SetColorLayerImage( bbGetInputIn() );
} // InputIn
-/*
- if (wxContourMainFrame::getInstance()->GetFileLocation().empty()==true)
- {
- wxContourMainFrame::getInstance()->SetFileLocation(bbGetInputFileLocation() );
- }else {
- wxContourMainFrame::getInstance()->onSave();
- wxContourMainFrame::getInstance()->deleteAllContours();
- wxContourMainFrame::getInstance()->SetFileLocation(bbGetInputFileLocation() );
- } // if FileLocaton
-
- wxContourMainFrame::getInstance()->onLoad();
- wxContourMainFrame::getInstance()->RefreshInterface();
-*/
} // if Instance
}
{
if (img!=NULL)
{
+ _viewColorLayerImagePanel->SetActive(true);
_viewColorLayerImagePanel->SetImage( img );
- RefreshInterface();
+// RefreshInterface();
} // img
} // _viewColorLayerImagePanel
}
_theViewPanel->SetXY(x,y);
}
+wxVtkBaseView* wxContourMainFrame::GetWxVtkBaseView()
+{
+ if (_theViewPanel!=NULL)
+ {
+ return _theViewPanel->getWxVtkBaseView();;
+ } else {
+ return NULL;
+ }
+}
void createViewPanel(wxAuiNotebook * parent);
void createInstantChooserPanel(wxWindow * parent);
void createViewPanel(wxWindow * parent);
+ wxVtkBaseView* GetWxVtkBaseView();
void setInstantChooserPanel( wxInstantChooserPanel * theInstantChooserPanel );
void getMaskValue(vtkImageData ** mask,vtkImageData ** value,int typeContourGroup, int selection, int minZ, int maxZ);
void SaveImageResult(std::string directory,std::string namefile, vtkImageData* mask,vtkImageData* value);