VTK
vtkUnicodeStringArray.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkUnicodeStringArray.h
5 
6 -------------------------------------------------------------------------
7  Copyright 2008 Sandia Corporation.
8  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9  the U.S. Government retains certain rights in this software.
10 -------------------------------------------------------------------------
11 
12  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
13  All rights reserved.
14  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
15 
16  This software is distributed WITHOUT ANY WARRANTY; without even
17  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
18  PURPOSE. See the above copyright notice for more information.
19 
20 =========================================================================*/
21 
32 #ifndef vtkUnicodeStringArray_h
33 #define vtkUnicodeStringArray_h
34 
35 #include "vtkCommonCoreModule.h" // For export macro
36 #include "vtkAbstractArray.h"
37 #include "vtkUnicodeString.h" // For value type
38 
39 class VTKCOMMONCORE_EXPORT vtkUnicodeStringArray :
40  public vtkAbstractArray
41 {
42 public:
43  static vtkUnicodeStringArray* New();
45  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
46 
47  int Allocate(vtkIdType sz, vtkIdType ext=1000) VTK_OVERRIDE;
48  void Initialize() VTK_OVERRIDE;
49  int GetDataType() VTK_OVERRIDE;
50  int GetDataTypeSize() VTK_OVERRIDE;
51  int GetElementComponentSize() VTK_OVERRIDE;
52  void SetNumberOfTuples(vtkIdType number) VTK_OVERRIDE;
53  void SetTuple(vtkIdType i, vtkIdType j,
54  vtkAbstractArray* source) VTK_OVERRIDE;
55  void InsertTuple(vtkIdType i, vtkIdType j,
56  vtkAbstractArray* source) VTK_OVERRIDE;
57  void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds,
58  vtkAbstractArray *source) VTK_OVERRIDE;
59  void InsertTuples(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart,
60  vtkAbstractArray* source) VTK_OVERRIDE;
61  vtkIdType InsertNextTuple(vtkIdType j, vtkAbstractArray* source) VTK_OVERRIDE;
62  void* GetVoidPointer(vtkIdType id) VTK_OVERRIDE;
63  void DeepCopy(vtkAbstractArray* da) VTK_OVERRIDE;
64  void InterpolateTuple(vtkIdType i, vtkIdList *ptIndices,
65  vtkAbstractArray* source, double* weights) VTK_OVERRIDE;
66  void InterpolateTuple(vtkIdType i,
67  vtkIdType id1, vtkAbstractArray* source1,
68  vtkIdType id2, vtkAbstractArray* source2, double t) VTK_OVERRIDE;
69  void Squeeze() VTK_OVERRIDE;
70  int Resize(vtkIdType numTuples) VTK_OVERRIDE;
71  void SetVoidArray(void *array, vtkIdType size, int save) VTK_OVERRIDE;
72  void SetVoidArray(void *array, vtkIdType size, int save,
73  int deleteMethod) VTK_OVERRIDE;
74  unsigned long GetActualMemorySize() VTK_OVERRIDE; // in bytes
75  int IsNumeric() VTK_OVERRIDE;
76  VTK_NEWINSTANCE vtkArrayIterator* NewIterator() VTK_OVERRIDE;
77  vtkVariant GetVariantValue(vtkIdType idx) VTK_OVERRIDE;
78  vtkIdType LookupValue(vtkVariant value) VTK_OVERRIDE;
79  void LookupValue(vtkVariant value, vtkIdList* ids) VTK_OVERRIDE;
80 
81  void SetVariantValue(vtkIdType idx, vtkVariant value) VTK_OVERRIDE;
82  void InsertVariantValue(vtkIdType idx, vtkVariant value) VTK_OVERRIDE;
83  void DataChanged() VTK_OVERRIDE;
84  void ClearLookup() VTK_OVERRIDE;
85 
86  vtkIdType InsertNextValue(const vtkUnicodeString&);
87  void InsertValue(vtkIdType idx, const vtkUnicodeString&); // Ranged checked
88  void SetValue(vtkIdType i, const vtkUnicodeString&); // Not ranged checked
89  vtkUnicodeString& GetValue(vtkIdType i);
90 
91  void InsertNextUTF8Value(const char*);
92  void SetUTF8Value(vtkIdType i, const char*);
93  const char* GetUTF8Value(vtkIdType i);
94 
95 protected:
97  ~vtkUnicodeStringArray() VTK_OVERRIDE;
98 
99 private:
100  vtkUnicodeStringArray(const vtkUnicodeStringArray&) VTK_DELETE_FUNCTION;
101  void operator=(const vtkUnicodeStringArray&) VTK_DELETE_FUNCTION;
102 
103  class Implementation;
104  Implementation* Internal;
105 
106 };
107 
108 #endif
Subclass of vtkAbstractArray that holds vtkUnicodeStrings.
Abstract superclass for all arrays.
int vtkIdType
Definition: vtkType.h:345
A atomic type representing the union of many types.
Definition: vtkVariant.h:69
a simple class to control print indentation
Definition: vtkIndent.h:33
list of point or cell ids
Definition: vtkIdList.h:30
Abstract superclass to iterate over elements in an vtkAbstractArray.
#define VTK_NEWINSTANCE
virtual int Allocate(vtkIdType numValues, vtkIdType ext=1000)=0
Allocate memory for this array.
void save(Archiver &ar, const vtkUnicodeString &str, const unsigned int vtkNotUsed(version))
boost::graph_traits< vtkGraph *>::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
String class that stores Unicode text.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.