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.
53 lines
1.5 KiB
C
53 lines
1.5 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkScaledTextActor.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 copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
/**
|
||
|
* @class vtkScaledTextActor
|
||
|
* @brief create text that will scale as needed
|
||
|
*
|
||
|
* vtkScaledTextActor is deprecated. New code should use vtkTextActor with
|
||
|
* the Scaled = true option.
|
||
|
*
|
||
|
* @sa
|
||
|
* vtkTextActor vtkActor2D vtkTextMapper
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkScaledTextActor_h
|
||
|
#define vtkScaledTextActor_h
|
||
|
|
||
|
#include "vtkRenderingFreeTypeModule.h" // For export macro
|
||
|
#include "vtkTextActor.h"
|
||
|
|
||
|
class VTKRENDERINGFREETYPE_EXPORT vtkScaledTextActor : public vtkTextActor
|
||
|
{
|
||
|
public:
|
||
|
vtkTypeMacro(vtkScaledTextActor, vtkTextActor);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
/**
|
||
|
* Instantiate object with a rectangle in normaled view coordinates
|
||
|
* of (0.2,0.85, 0.8, 0.95).
|
||
|
*/
|
||
|
static vtkScaledTextActor* New();
|
||
|
|
||
|
protected:
|
||
|
vtkScaledTextActor();
|
||
|
|
||
|
private:
|
||
|
vtkScaledTextActor(const vtkScaledTextActor&) = delete;
|
||
|
void operator=(const vtkScaledTextActor&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif
|