SHAPER  9.12.0
Model_AttributeTables Class Reference

API for the attribute that contains tables of some values type. More...

Inheritance diagram for Model_AttributeTables:
Inheritance graph

Public Types

enum  ValueType { BOOLEAN , INTEGER , DOUBLE , STRING }
 Type of the value in the table. More...
 

Public Member Functions

virtual int rows ()
 Returns the number of rows in the table. More...
 
virtual int columns ()
 Returns the number of columns in the table. More...
 
virtual int tables ()
 Returns the number of tables. More...
 
virtual void setSize (const int theRows, const int theColumns, const int theTables=1)
 Sets the new size of the tables set. More...
 
virtual void setType (ValueType theType)
 Defines the tyoe of values in the table. If it differs from the current, erases the content. More...
 
virtual const ValueTypetype () const
 Defines the tyoe of values in the table. If it differs from the current, erases the content. More...
 
virtual void setValue (const Value theValue, const int theRow, const int theColumn, const int theTable=0)
 Defines the value by the index in the tables set (indexes are zero-based). More...
 
virtual Value value (const int theRow, const int theColumn, const int theTable=0)
 Returns the value by the index (indexes are zero-based). More...
 
virtual std::string valueStr (const int theRow, const int theColumn, const int theTable=0)
 Returns the value in the format of string (usefull for the python connection) More...
 
virtual MODELAPI_EXPORT std::string attributeType ()
 Returns the type of this class of attributes, not static method. More...
 
virtual void setObject (const std::shared_ptr< ModelAPI_Object > &theObject)
 Sets the owner of this attribute. More...
 
const std::shared_ptr< ModelAPI_Object > & owner () const
 Returns the owner of this attribute. More...
 
virtual bool isInitialized ()
 Returns true if attribute was initialized by some value. More...
 
void setInitialized ()
 Makes attribute initialized. More...
 
bool blockSetInitialized (const bool theBlock)
 Blocks sending "attribute updated" if theBlock is true. More...
 
void setIsArgument (const bool theFlag)
 Set this attribute is argument for result (change of this attribute requires update of result). More...
 
bool isArgument ()
 Returns true if attribute causes the result change. More...
 
bool setImmutable (const bool theFlag)
 Immutable argument can not be changed programmatically (e.g. More...
 
bool isImmutable ()
 Returns true if can not be changed programmatically. More...
 
const std::string & id () const
 ID of the attribute in Data. More...
 
virtual void reset ()
 Resets attribute to deafult state. More...
 

Static Public Member Functions

static MODELAPI_EXPORT std::string typeId ()
 Returns the type of this class of attributes. More...
 

Protected Member Functions

 Model_AttributeTables (TDF_Label &theLabel)
 Objects are created for features automatically. More...
 
virtual void reinit ()
 Reinitializes the internal state of the attribute (may be needed on undo/redo, abort, etc) More...
 
virtual void setID (const std::string theID)
 Sets the ID of the attribute in Data (called from Data) More...
 

Protected Attributes

bool myIsInitialized
 is some value assigned to this attribute More...
 
bool mySetInitializedBlocked
 is initialized blocked More...
 
bool myIsArgument
 is this attribute used as an argument for execution More...
 
bool myIsImmutable
 is this attribute can be changed programmatically (e.g. by constraint) More...
 

Friends

class Model_Data
 

Detailed Description

API for the attribute that contains tables of some values type.

The type of values can be changed. But all the values in the tables must have the same one type. The currently allowed types now are: Boolean, Integer, Double, String. By default there is only one table, but it may be increased/decreased by adding/removing tables one by one. The number of rows and columns are equal in all tables. If table, row or column is added, the previous values are kept unchanged. New cells are filled by zero, false or empty strings.

Member Enumeration Documentation

◆ ValueType

Type of the value in the table.

Constructor & Destructor Documentation

◆ Model_AttributeTables()

Model_AttributeTables::Model_AttributeTables ( TDF_Label &  theLabel)
protected

Objects are created for features automatically.

Member Function Documentation

◆ rows()

int Model_AttributeTables::rows ( )
virtual

Returns the number of rows in the table.

Implements ModelAPI_AttributeTables.

◆ columns()

int Model_AttributeTables::columns ( )
virtual

Returns the number of columns in the table.

Implements ModelAPI_AttributeTables.

◆ tables()

int Model_AttributeTables::tables ( )
virtual

Returns the number of tables.

Implements ModelAPI_AttributeTables.

◆ setSize()

void Model_AttributeTables::setSize ( const int  theRows,
const int  theColumns,
const int  theTables = 1 
)
virtual

Sets the new size of the tables set.

This method tries to keep old values if number of rows, columns or tables is increased.

Implements ModelAPI_AttributeTables.

◆ setType()

void Model_AttributeTables::setType ( ModelAPI_AttributeTables::ValueType  theType)
virtual

Defines the tyoe of values in the table. If it differs from the current, erases the content.

Implements ModelAPI_AttributeTables.

◆ type()

const ModelAPI_AttributeTables::ValueType & Model_AttributeTables::type ( ) const
virtual

Defines the tyoe of values in the table. If it differs from the current, erases the content.

Implements ModelAPI_AttributeTables.

◆ setValue()

void Model_AttributeTables::setValue ( const Value  theValue,
const int  theRow,
const int  theColumn,
const int  theTable = 0 
)
virtual

Defines the value by the index in the tables set (indexes are zero-based).

Implements ModelAPI_AttributeTables.

◆ value()

ModelAPI_AttributeTables::Value Model_AttributeTables::value ( const int  theRow,
const int  theColumn,
const int  theTable = 0 
)
virtual

Returns the value by the index (indexes are zero-based).

Implements ModelAPI_AttributeTables.

◆ valueStr()

std::string Model_AttributeTables::valueStr ( const int  theRow,
const int  theColumn,
const int  theTable = 0 
)
virtual

Returns the value in the format of string (usefull for the python connection)

Implements ModelAPI_AttributeTables.

◆ reinit()

void Model_AttributeTables::reinit ( )
protectedvirtual

Reinitializes the internal state of the attribute (may be needed on undo/redo, abort, etc)

Reimplemented from ModelAPI_Attribute.

◆ typeId()

static MODELAPI_EXPORT std::string ModelAPI_AttributeTables::typeId ( )
inlinestaticinherited

Returns the type of this class of attributes.

◆ attributeType()

std::string ModelAPI_AttributeTables::attributeType ( )
virtualinherited

Returns the type of this class of attributes, not static method.

Implements ModelAPI_Attribute.

◆ setObject()

void ModelAPI_Attribute::setObject ( const std::shared_ptr< ModelAPI_Object > &  theObject)
virtualinherited

Sets the owner of this attribute.

Reimplemented in Model_AttributeSelection, and Model_AttributeReference.

◆ owner()

const std::shared_ptr< ModelAPI_Object > & ModelAPI_Attribute::owner ( ) const
inherited

Returns the owner of this attribute.

◆ isInitialized()

bool ModelAPI_Attribute::isInitialized ( )
virtualinherited

◆ setInitialized()

void ModelAPI_Attribute::setInitialized ( )
inherited

Makes attribute initialized.

◆ blockSetInitialized()

bool ModelAPI_Attribute::blockSetInitialized ( const bool  theBlock)
inherited

Blocks sending "attribute updated" if theBlock is true.

Parameters
theBlocka block value
Returns
the previous block value

◆ setIsArgument()

void ModelAPI_Attribute::setIsArgument ( const bool  theFlag)
inherited

Set this attribute is argument for result (change of this attribute requires update of result).

By default it is true.

◆ isArgument()

bool ModelAPI_Attribute::isArgument ( )
inherited

Returns true if attribute causes the result change.

◆ setImmutable()

bool ModelAPI_Attribute::setImmutable ( const bool  theFlag)
inherited

Immutable argument can not be changed programmatically (e.g.

by constraint) By default it is false. Returns the previous state of the attribute's immutability.

◆ isImmutable()

bool ModelAPI_Attribute::isImmutable ( )
inherited

Returns true if can not be changed programmatically.

◆ id()

const std::string & ModelAPI_Attribute::id ( ) const
inherited

ID of the attribute in Data.

◆ reset()

void ModelAPI_Attribute::reset ( )
virtualinherited

Resets attribute to deafult state.

Reimplemented in Model_AttributeSelection, Model_AttributeDouble, GeomData_Point2D, and GeomData_Dir.

◆ setID()

void ModelAPI_Attribute::setID ( const std::string  theID)
protectedvirtualinherited

Sets the ID of the attribute in Data (called from Data)

Reimplemented in Model_AttributeSelection.

Field Documentation

◆ myIsInitialized

bool ModelAPI_Attribute::myIsInitialized
protectedinherited

is some value assigned to this attribute

◆ mySetInitializedBlocked

bool ModelAPI_Attribute::mySetInitializedBlocked
protectedinherited

is initialized blocked

◆ myIsArgument

bool ModelAPI_Attribute::myIsArgument
protectedinherited

is this attribute used as an argument for execution

◆ myIsImmutable

bool ModelAPI_Attribute::myIsImmutable
protectedinherited

is this attribute can be changed programmatically (e.g. by constraint)