#ifndef __CPPLUGINS__ACTORIMAGEPROPERTIES__H__ #define __CPPLUGINS__ACTORIMAGEPROPERTIES__H__ #include #ifdef cpPlugins_QT4 #include // ------------------------------------------------------------------------- namespace Ui { class ActorImageProperties; } // ------------------------------------------------------------------------- namespace cpPlugins { /** */ class cpPlugins_EXPORT ActorImageProperties : public ActorProperties { Q_OBJECT; public: explicit ActorImageProperties( QWidget* parent = 0 ); virtual ~ActorImageProperties( ); virtual bool addActor( vtkProp* obj ) ITK_OVERRIDE; protected: virtual void _updateWidgets( ) ITK_OVERRIDE; protected slots: void _Opacity( int v ); void _Window( int v ); void _Level( int v ); void _Window( double v ); void _Level( double v ); void _Interpolation( int v ); protected: Ui::ActorImageProperties* m_UI; }; } // ecapseman #endif // cpPlugins_QT4 #endif // __CPPLUGINS__ACTORIMAGEPROPERTIES__H__ // eof - $RCSfile$