ctkVTKMatrixWidget.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*=========================================================================
  2. Library: CTK
  3. Copyright (c) Kitware Inc.
  4. All rights reserved.
  5. Distributed under a BSD License. See LICENSE.txt file.
  6. This software is distributed "AS IS" WITHOUT ANY WARRANTY; without even
  7. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the above copyright notice for more information.
  9. =========================================================================*/
  10. #ifndef __ctkVTKMatrixWidget_h
  11. #define __ctkVTKMatrixWidget_h
  12. // CTK includes
  13. #include <ctkPimpl.h>
  14. #include "ctkVTKAbstractMatrixWidget.h"
  15. #include "CTKVisualizationVTKWidgetsExport.h"
  16. class vtkMatrix4x4;
  17. class CTK_VISUALIZATION_VTK_WIDGETS_EXPORT ctkVTKMatrixWidget : public ctkVTKAbstractMatrixWidget
  18. {
  19. Q_OBJECT
  20. public:
  21. /// Self/Superclass typedef
  22. typedef ctkVTKMatrixWidget Self;
  23. typedef ctkVTKAbstractMatrixWidget Superclass;
  24. /// Constructors
  25. ctkVTKMatrixWidget(QWidget* parent);
  26. public slots:
  27. void setMatrix(vtkMatrix4x4* matrix);
  28. };
  29. #endif