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
|
/*=========================================================================
Program: ParaView
Module: vtkSMOrderedPropertyIterator.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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.
=========================================================================*/
#include "vtkSMOrderedPropertyIterator.h"
#include "vtkObjectFactory.h"
#include "vtkSMProxy.h"
#include "vtkSMProxyInternals.h"
vtkStandardNewMacro(vtkSMOrderedPropertyIterator);
//---------------------------------------------------------------------------
vtkSMOrderedPropertyIterator::vtkSMOrderedPropertyIterator()
{
this->Proxy = 0;
this->Index = 0;
}
//---------------------------------------------------------------------------
vtkSMOrderedPropertyIterator::~vtkSMOrderedPropertyIterator()
{
this->SetProxy(0);
}
//---------------------------------------------------------------------------
void vtkSMOrderedPropertyIterator::SetProxy(vtkSMProxy* proxy)
{
if (this->Proxy != proxy)
{
if (this->Proxy != NULL) { this->Proxy->UnRegister(this); }
this->Proxy = proxy;
if (this->Proxy != NULL)
{
this->Proxy->Register(this);
this->Begin();
}
this->Modified();
}
}
//---------------------------------------------------------------------------
void vtkSMOrderedPropertyIterator::Begin()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: Begin()");
return;
}
this->Index = 0;
}
//---------------------------------------------------------------------------
int vtkSMOrderedPropertyIterator::IsAtEnd()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: IsAtEnd()");
return 1;
}
if (this->Index >=
this->Proxy->Internals->PropertyNamesInOrder.size())
{
return 1;
}
return 0;
}
//---------------------------------------------------------------------------
void vtkSMOrderedPropertyIterator::Next()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: Next()");
return;
}
this->Index++;
}
//---------------------------------------------------------------------------
const char* vtkSMOrderedPropertyIterator::GetKey()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: GetKey()");
return 0;
}
if (!this->IsAtEnd())
{
return this->Proxy->Internals->PropertyNamesInOrder[this->Index];
}
return 0;
}
//---------------------------------------------------------------------------
const char* vtkSMOrderedPropertyIterator::GetPropertyLabel()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: GetPropertyLabel()");
return 0;
}
if (!this->IsAtEnd())
{
const char* pname = this->Proxy->Internals->PropertyNamesInOrder[this->Index];
if (vtkSMProperty* prop = this->Proxy->GetProperty(pname, /*selfOnly*/1))
{
// Self property
return prop->GetXMLLabel();
}
else
{
// Property of a sub-proxy
return this->GetKey();
}
}
return 0;
}
//---------------------------------------------------------------------------
vtkSMProperty* vtkSMOrderedPropertyIterator::GetProperty()
{
if (!this->Proxy)
{
vtkErrorMacro("Proxy is not set. Can not perform operation: GetProperty()");
return 0;
}
if (!this->IsAtEnd())
{
return this->Proxy->GetProperty(
this->Proxy->Internals->PropertyNamesInOrder[this->Index]);
}
return 0;
}
//---------------------------------------------------------------------------
void vtkSMOrderedPropertyIterator::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "Proxy: " << this->Proxy << endl;
}
|