You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
C++
69 lines
2.1 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkTestingInteractor.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyrgight notice for more information.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkTestingInteractor
|
|
* @brief A RenderWindowInteractor for testing
|
|
*
|
|
* Provides a Start() method that passes arguments to a test for
|
|
* regression testing and returns. This permits programs that
|
|
* run as tests to exit gracefully during the test run without needing
|
|
* interaction.
|
|
* @sa
|
|
* vtkTestingObjectFactory
|
|
*/
|
|
|
|
#ifndef vtkTestingInteractor_h
|
|
#define vtkTestingInteractor_h
|
|
|
|
#include "vtkObjectFactoryCollection.h" // Generated object overrides
|
|
#include "vtkRenderWindowInteractor.h"
|
|
#include "vtkTestingRenderingModule.h" // For export macro
|
|
|
|
#include <string> // STL Header; Required for string
|
|
|
|
class VTKTESTINGRENDERING_EXPORT vtkTestingInteractor : public vtkRenderWindowInteractor
|
|
{
|
|
public:
|
|
/**
|
|
* Standard object factory instantiation method.
|
|
*/
|
|
static vtkTestingInteractor* New();
|
|
|
|
//@{
|
|
/**
|
|
* Type and printing information.
|
|
*/
|
|
vtkTypeMacro(vtkTestingInteractor, vtkRenderWindowInteractor);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
//@}
|
|
|
|
void Start() override;
|
|
|
|
static int TestReturnStatus; // Return status of the test
|
|
static double ErrorThreshold; // Error Threshold
|
|
static std::string ValidBaseline; // Name of the Baseline image
|
|
static std::string TempDirectory; // Location of Testing/Temporary
|
|
static std::string DataDirectory; // Location of VTKData
|
|
|
|
protected:
|
|
vtkTestingInteractor() {}
|
|
|
|
private:
|
|
vtkTestingInteractor(const vtkTestingInteractor&) = delete;
|
|
void operator=(const vtkTestingInteractor&) = delete;
|
|
};
|
|
|
|
#endif
|