X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvToolProfile.h;h=0f94ff3a9177c52b81afa0e25eaedfc865d2ea3c;hb=75719c377dd8aa759f32dd277cfd7b2f914ebfa8;hp=5b7939de346e209a590b2ac0472a82f364385c47;hpb=3c408355c0ce7a9927b16e9bd98764c995d10a72;p=clitk.git diff --git a/vv/vvToolProfile.h b/vv/vvToolProfile.h index 5b7939d..0f94ff3 100644 --- a/vv/vvToolProfile.h +++ b/vv/vvToolProfile.h @@ -18,17 +18,23 @@ #ifndef VVTOOLPROFILE_H #define VVTOOLPROFILE_H -#if QT_VERSION < 0x050000 -#include -#else +#include +#if QT_VERSION >= 0x050000 #include +#else +#include #endif #include "vvToolBase.h" #include "vvToolWidgetBase.h" #include "vvImageContour.h" #include "vvLandmarks.h" +#include +#if (VTK_MAJOR_VERSION == 8 && VTK_MINOR_VERSION >= 1) || VTK_MAJOR_VERSION >= 9 #include "ui_vvToolProfile.h" +#else +#include "ui_vvToolProfileVTK7.h" +#endif #include "vvBinaryImageOverlayActor.h" #include "clitkProfileImage_ggo.h" @@ -36,6 +42,7 @@ #include #include #include +#include //------------------------------------------------------------------------------ class vvToolProfile: @@ -77,8 +84,8 @@ class vvToolProfile: Ui::vvToolProfile ui; args_info_clitkProfileImage mArgsInfo; - int* mPoint1; - int* mPoint2; + double* mPoint1; + double* mPoint2; bool mPoint1Selected; bool mPoint2Selected; vtkSmartPointer mView; @@ -86,6 +93,7 @@ class vvToolProfile: std::string mTextFileName; std::vector > mLineActors; vtkSmartPointer mLinesPolyData; + vtkSmartPointer mLineTransform; }; // end class vvToolProfile