Skip to content

Libs/Application/ShapeWorksVtkOutputWindow.h

Namespaces

Name
shapeworks
User usage reporting (telemetry)

Classes

Name
class shapeworks::ShapeWorksVtkOutputWindow
Implementation of vtkOutputWindow to capture and display VTK error messages.

Source code

#pragma once

#include <vtkOutputWindow.h>

#include <QObject>

namespace shapeworks {

class ShapeWorksVtkOutputWindow : public QObject, public vtkOutputWindow {
  Q_OBJECT;

 public:
  static ShapeWorksVtkOutputWindow* New();

  vtkTypeMacro(ShapeWorksVtkOutputWindow, vtkOutputWindow);

  ShapeWorksVtkOutputWindow();

  void DisplayErrorText(const char* text) override;
  void DisplayWarningText(const char* text) override;
  void DisplayGenericWarningText(const char* text) override;
  void DisplayDebugText(const char* text) override;
 private:
};
}  // namespace shapeworks

Updated on 2025-09-04 at 08:01:26 +0000