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.
118 lines
3.1 KiB
C++
118 lines
3.1 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkTextPropertyCollection.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 vtkTextPropertyCollection
|
|
* @brief a list of vtkTextProperty objects.
|
|
*
|
|
* vtkTextPropertyCollection represents and provides methods to manipulate a
|
|
* list of TextProperty objects. The list is unsorted and
|
|
* duplicate entries are not prevented.
|
|
* @sa
|
|
* vtkTextProperty vtkCollection
|
|
*/
|
|
|
|
#ifndef vtkTextPropertyCollection_h
|
|
#define vtkTextPropertyCollection_h
|
|
|
|
#include "vtkRenderingCoreModule.h" // For export macro
|
|
#include "vtkCollection.h"
|
|
#include "vtkTextProperty.h" // for inline functions
|
|
|
|
class VTKRENDERINGCORE_EXPORT vtkTextPropertyCollection : public vtkCollection
|
|
{
|
|
public:
|
|
static vtkTextPropertyCollection *New();
|
|
vtkTypeMacro(vtkTextPropertyCollection, vtkCollection)
|
|
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
|
|
|
|
/**
|
|
* Add a vtkTextProperty to the list.
|
|
*/
|
|
void AddItem(vtkTextProperty *a);
|
|
|
|
/**
|
|
* Get the next vtkTextProperty in the list.
|
|
*/
|
|
vtkTextProperty *GetNextItem();
|
|
|
|
/**
|
|
* Get the vtkTextProperty at the specified index.
|
|
*/
|
|
vtkTextProperty *GetItem(int idx);
|
|
|
|
/**
|
|
* Get the last TextProperty in the list.
|
|
*/
|
|
vtkTextProperty *GetLastItem();
|
|
|
|
/**
|
|
* Reentrant safe way to get an object in a collection. Just pass the
|
|
* same cookie back and forth.
|
|
*/
|
|
vtkTextProperty *GetNextTextProperty(vtkCollectionSimpleIterator &cookie);
|
|
|
|
protected:
|
|
vtkTextPropertyCollection();
|
|
~vtkTextPropertyCollection();
|
|
|
|
private:
|
|
// hide the standard AddItem from the user and the compiler.
|
|
void AddItem(vtkObject *o);
|
|
|
|
private:
|
|
vtkTextPropertyCollection(const vtkTextPropertyCollection&) VTK_DELETE_FUNCTION;
|
|
void operator=(const vtkTextPropertyCollection&) VTK_DELETE_FUNCTION;
|
|
};
|
|
|
|
inline void vtkTextPropertyCollection::AddItem(vtkTextProperty *a)
|
|
{
|
|
this->vtkCollection::AddItem(a);
|
|
}
|
|
|
|
inline vtkTextProperty *vtkTextPropertyCollection::GetNextItem()
|
|
{
|
|
return static_cast<vtkTextProperty *>(this->GetNextItemAsObject());
|
|
}
|
|
|
|
inline vtkTextProperty *vtkTextPropertyCollection::GetItem(int idx)
|
|
{
|
|
return static_cast<vtkTextProperty *>(this->GetItemAsObject(idx));
|
|
}
|
|
|
|
inline vtkTextProperty *vtkTextPropertyCollection::GetLastItem()
|
|
{
|
|
if ( this->Bottom == NULL )
|
|
{
|
|
return NULL;
|
|
}
|
|
else
|
|
{
|
|
return static_cast<vtkTextProperty *>(this->Bottom->Item);
|
|
}
|
|
}
|
|
|
|
inline vtkTextProperty *
|
|
vtkTextPropertyCollection::GetNextTextProperty(vtkCollectionSimpleIterator &it)
|
|
{
|
|
return static_cast<vtkTextProperty *>(this->GetNextItemAsObject(it));
|
|
}
|
|
|
|
inline void vtkTextPropertyCollection::AddItem(vtkObject *o)
|
|
{
|
|
this->vtkCollection::AddItem(o);
|
|
}
|
|
|
|
#endif
|