/usr/include/vtk-6.3/vtkTextProperty.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkTextProperty.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.
=========================================================================*/
// .NAME vtkTextProperty - represent text properties.
// .SECTION Description
// vtkTextProperty is an object that represents text properties.
// The primary properties that can be set are color, opacity, font size,
// font family horizontal and vertical justification, bold/italic/shadow
// styles.
// .SECTION See Also
// vtkTextMapper vtkTextActor vtkLegendBoxActor vtkCaptionActor2D
#ifndef vtkTextProperty_h
#define vtkTextProperty_h
#include "vtkRenderingCoreModule.h" // For export macro
#include "vtkObject.h"
class VTKRENDERINGCORE_EXPORT vtkTextProperty : public vtkObject
{
public:
vtkTypeMacro(vtkTextProperty,vtkObject);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Creates a new text property with font size 12, bold off, italic off,
// and Arial font.
static vtkTextProperty *New();
// Description:
// Set the color of the text.
vtkSetVector3Macro(Color,double);
vtkGetVector3Macro(Color,double);
// Description:
// Set/Get the text's opacity. 1.0 is totally opaque and 0.0 is completely
// transparent.
vtkSetClampMacro(Opacity, double, 0., 1.);
vtkGetMacro(Opacity,double);
// Description:
// The background color.
vtkSetVector3Macro(BackgroundColor, double);
vtkGetVector3Macro(BackgroundColor, double);
// Description:
// The background opacity. 1.0 is totally opaque and 0.0 is completely
// transparent.
vtkSetClampMacro(BackgroundOpacity, double, 0., 1.);
vtkGetMacro(BackgroundOpacity, double);
// Description:
// Set/Get the font family. Supports legacy three font family system.
// If the symbolic constant VTK_FONT_FILE is returned by GetFontFamily(), the
// string returned by GetFontFile() must be an absolute filepath
// to a local FreeType compatible font.
vtkGetStringMacro(FontFamilyAsString);
vtkSetStringMacro(FontFamilyAsString);
void SetFontFamily(int t);
int GetFontFamily();
int GetFontFamilyMinValue() { return VTK_ARIAL; };
void SetFontFamilyToArial();
void SetFontFamilyToCourier();
void SetFontFamilyToTimes();
static int GetFontFamilyFromString( const char *f );
static const char *GetFontFamilyAsString( int f );
// Description:
// The absolute filepath to a local file containing a freetype-readable font
// if GetFontFamily() return VTK_FONT_FILE. The result is undefined for other
// values of GetFontFamily().
vtkGetStringMacro(FontFile)
vtkSetStringMacro(FontFile)
// Description:
// Set/Get the font size (in points).
vtkSetClampMacro(FontSize,int,0,VTK_INT_MAX);
vtkGetMacro(FontSize, int);
// Description:
// Enable/disable text bolding.
vtkSetMacro(Bold, int);
vtkGetMacro(Bold, int);
vtkBooleanMacro(Bold, int);
// Description:
// Enable/disable text italic.
vtkSetMacro(Italic, int);
vtkGetMacro(Italic, int);
vtkBooleanMacro(Italic, int);
// Description:
// Enable/disable text shadow.
vtkSetMacro(Shadow, int);
vtkGetMacro(Shadow, int);
vtkBooleanMacro(Shadow, int);
// Description:
// Set/Get the shadow offset, i.e. the distance from the text to
// its shadow, in the same unit as FontSize.
vtkSetVector2Macro(ShadowOffset,int);
vtkGetVectorMacro(ShadowOffset,int,2);
// Description:
// Get the shadow color. It is computed from the Color ivar
void GetShadowColor(double color[3]);
// Description:
// Set/Get the horizontal justification to left (default), centered,
// or right.
vtkSetClampMacro(Justification,int,VTK_TEXT_LEFT,VTK_TEXT_RIGHT);
vtkGetMacro(Justification,int);
void SetJustificationToLeft()
{ this->SetJustification(VTK_TEXT_LEFT);};
void SetJustificationToCentered()
{ this->SetJustification(VTK_TEXT_CENTERED);};
void SetJustificationToRight()
{ this->SetJustification(VTK_TEXT_RIGHT);};
const char *GetJustificationAsString();
// Description:
// Set/Get the vertical justification to bottom (default), middle,
// or top.
vtkSetClampMacro(VerticalJustification,int,VTK_TEXT_BOTTOM,VTK_TEXT_TOP);
vtkGetMacro(VerticalJustification,int);
void SetVerticalJustificationToBottom()
{this->SetVerticalJustification(VTK_TEXT_BOTTOM);};
void SetVerticalJustificationToCentered()
{this->SetVerticalJustification(VTK_TEXT_CENTERED);};
void SetVerticalJustificationToTop()
{this->SetVerticalJustification(VTK_TEXT_TOP);};
const char *GetVerticalJustificationAsString();
// Description:
// Set/Get the text's orientation (in degrees).
vtkSetMacro(Orientation,double);
vtkGetMacro(Orientation,double);
// Description:
// Set/Get the (extra) spacing between lines,
// expressed as a text height multiplication factor.
vtkSetMacro(LineSpacing, double);
vtkGetMacro(LineSpacing, double);
// Description:
// Set/Get the vertical offset (measured in pixels).
vtkSetMacro(LineOffset, double);
vtkGetMacro(LineOffset, double);
// Description:
// Shallow copy of a text property.
void ShallowCopy(vtkTextProperty *tprop);
protected:
vtkTextProperty();
~vtkTextProperty();
double Color[3];
double Opacity;
double BackgroundColor[3];
double BackgroundOpacity;
char* FontFamilyAsString;
char* FontFile;
int FontSize;
int Bold;
int Italic;
int Shadow;
int ShadowOffset[2];
int Justification;
int VerticalJustification;
double Orientation;
double LineOffset;
double LineSpacing;
private:
vtkTextProperty(const vtkTextProperty&); // Not implemented.
void operator=(const vtkTextProperty&); // Not implemented.
};
inline const char *vtkTextProperty::GetFontFamilyAsString( int f )
{
if ( f == VTK_ARIAL )
{
return "Arial";
}
else if ( f == VTK_COURIER )
{
return "Courier";
}
else if ( f == VTK_TIMES )
{
return "Times";
}
else if ( f == VTK_FONT_FILE )
{
return "File";
}
return "Unknown";
}
inline void vtkTextProperty::SetFontFamily( int t )
{
this->SetFontFamilyAsString( this->GetFontFamilyAsString( t ) );
}
inline void vtkTextProperty::SetFontFamilyToArial()
{
this->SetFontFamily(VTK_ARIAL);
}
inline void vtkTextProperty::SetFontFamilyToCourier()
{
this->SetFontFamily(VTK_COURIER);
}
inline void vtkTextProperty::SetFontFamilyToTimes()
{
this->SetFontFamily(VTK_TIMES);
}
inline int vtkTextProperty::GetFontFamilyFromString( const char *f )
{
if ( strcmp( f, GetFontFamilyAsString( VTK_ARIAL ) ) == 0 )
{
return VTK_ARIAL;
}
else if ( strcmp( f, GetFontFamilyAsString( VTK_COURIER ) ) == 0 )
{
return VTK_COURIER;
}
else if ( strcmp( f, GetFontFamilyAsString( VTK_TIMES ) ) == 0 )
{
return VTK_TIMES;
}
else if ( strcmp( f, GetFontFamilyAsString( VTK_FONT_FILE) ) == 0 )
{
return VTK_FONT_FILE;
}
return VTK_UNKNOWN_FONT;
}
inline int vtkTextProperty::GetFontFamily()
{
return GetFontFamilyFromString( this->FontFamilyAsString );
}
inline const char *vtkTextProperty::GetJustificationAsString(void)
{
if (this->Justification == VTK_TEXT_LEFT)
{
return "Left";
}
else if (this->Justification == VTK_TEXT_CENTERED)
{
return "Centered";
}
else if (this->Justification == VTK_TEXT_RIGHT)
{
return "Right";
}
return "Unknown";
}
inline const char *vtkTextProperty::GetVerticalJustificationAsString(void)
{
if (this->VerticalJustification == VTK_TEXT_BOTTOM)
{
return "Bottom";
}
else if (this->VerticalJustification == VTK_TEXT_CENTERED)
{
return "Centered";
}
else if (this->VerticalJustification == VTK_TEXT_TOP)
{
return "Top";
}
return "Unknown";
}
#endif
|