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
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "QmitkTreeNodeSelector.h"
00031
00032
00033
00034 void QmitkThresholdComponentGUI::SetDataTreeIterator( mitk::DataTreeIteratorBase * it )
00035 {
00036 m_DataTreeIterator = it;
00037
00038
00039 }
00040
00041
00042
00043
00044 QmitkDataTreeComboBox * QmitkThresholdComponentGUI::GetTreeNodeSelector()
00045 {
00046 return m_TreeNodeSelector;
00047 }
00048
00049 int QmitkThresholdComponentGUI::GetSliderValue()
00050 {
00051 int value = m_ThresholdInputSlider->value();
00052 return value;
00053 }
00054
00055 int QmitkThresholdComponentGUI::GetNumberValue()
00056 {
00057 int value = atoi(m_ThresholdInputNumber->text());
00058 return value;
00059 }
00060
00061 QSlider* QmitkThresholdComponentGUI::GetThresholdInputSlider()
00062 {
00063 return m_ThresholdInputSlider;
00064 }
00065
00066 QLineEdit* QmitkThresholdComponentGUI::GetThresholdInputNumber()
00067 {
00068 return m_ThresholdInputNumber;
00069 }
00070
00071
00072 QGroupBox* QmitkThresholdComponentGUI::GetShowThresholdGroupBox()
00073 {
00074 return m_ShowThresholdGroupBox;
00075 }
00076
00077 QGroupBox* QmitkThresholdComponentGUI::GetThresholdFinderGroupBox()
00078 {
00079 return m_ThresholdFinder;
00080 }
00081
00082 QGroupBox* QmitkThresholdComponentGUI::GetSelectDataGroupBox()
00083 {
00084 return m_ThresholdSelectDataGroupBox;
00085 }
00086
00087 QGroupBox* QmitkThresholdComponentGUI::GetThresholdValueContent()
00088 {
00089 return m_ThresholdValueContent;
00090 }
00091
00092 QGroupBox* QmitkThresholdComponentGUI::GetImageContent()
00093 {
00094 return m_ImageContent;
00095 }
00096
00097
00098 QCheckBox* QmitkThresholdComponentGUI::GetDeleteImageIfDeactivatedCheckBox()
00099 {
00100 return m_DeleateImageIfDeactivatedCheckBox;
00101 }
00102
00103
00104 QGroupBox* QmitkThresholdComponentGUI::GetContainerContent()
00105 {
00106 return m_ContainerContent;
00107 }
00108
00109
00110 QPushButton* QmitkThresholdComponentGUI::GetCreateSegmentationButton()
00111 {
00112 return m_CreateSegmentationButton;
00113 }