00001 /*========================================================================= 00002 00003 Program: Medical Imaging & Interaction Toolkit 00004 Language: C++ 00005 Date: $Date$ 00006 Version: $Revision$ 00007 00008 Copyright (c) German Cancer Research Center, Division of Medical and 00009 Biological Informatics. All rights reserved. 00010 See MITKCopyright.txt or https://www.mitk.org/copyright.html for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 #ifndef QMITK_BASEPROPERTYVIEW_H_INCLUDED 00018 #define QMITK_BASEPROPERTYVIEW_H_INCLUDED 00019 00020 #include <mitkPropertyObserver.h> 00021 #include "QmitkExtExports.h" 00022 #include <mitkProperties.h> 00023 #include <QLabel> 00024 00026 class QmitkExt_EXPORT QmitkBasePropertyView : public QLabel, public mitk::PropertyView 00027 { 00028 Q_OBJECT 00029 00030 public: 00031 00032 QmitkBasePropertyView( const mitk::BaseProperty*, QWidget* parent); 00033 virtual ~QmitkBasePropertyView(); 00034 00035 protected: 00036 00037 virtual void PropertyChanged(); 00038 virtual void PropertyRemoved(); 00039 00040 private: 00041 00042 }; 00043 00044 #endif 00045