# encoding: utf-8
# module vtkmodules.vtkCommonDataModel
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkCommonDataModel.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonMath as __vtkmodules_vtkCommonMath
import vtkmodules.vtkCommonTransforms as __vtkmodules_vtkCommonTransforms


from .vtkDataObject import vtkDataObject

class vtkAnnotation(vtkDataObject):
    """
    vtkAnnotation - Stores a collection of annotation artifacts.
    
    Superclass: vtkDataObject
    
    vtkAnnotation is a collection of annotation properties along with an
    associated selection indicating the portion of data the annotation
    refers to.
    
    @par Thanks: Timothy M. Shead (tshead@sandia.gov) at Sandia National
    Laboratories contributed code to this class.
    """
    def COLOR(self): # real signature unknown; restored from __doc__
        """
        COLOR() -> vtkInformationDoubleVectorKey
        C++: static vtkInformationDoubleVectorKey *COLOR()
        
        The color for this annotation. This is stored as an RGB triple
        with values between 0 and 1.
        """
        pass

    def DATA(self): # real signature unknown; restored from __doc__
        """
        DATA() -> vtkInformationDataObjectKey
        C++: static vtkInformationDataObjectKey *DATA()
        
        Associate a vtkDataObject with this annotation
        """
        pass

    def DeepCopy(self, other): # real signature unknown; restored from __doc__
        """
        DeepCopy(self, other:vtkDataObject) -> None
        C++: void DeepCopy(vtkDataObject *other) override;
        
        Make this annotation have the same properties and have a copy of
        the selection of another annotation.
        """
        pass

    def ENABLE(self): # real signature unknown; restored from __doc__
        """
        ENABLE() -> vtkInformationIntegerKey
        C++: static vtkInformationIntegerKey *ENABLE()
        
        Whether or not this annotation is enabled. A value of 1 means
        enabled, 0 disabled.
        """
        pass

    def GetData(self, info): # real signature unknown; restored from __doc__
        """
        GetData(info:vtkInformation) -> vtkAnnotation
        C++: static vtkAnnotation *GetData(vtkInformation *info)
        GetData(v:vtkInformationVector, i:int=0) -> vtkAnnotation
        C++: static vtkAnnotation *GetData(vtkInformationVector *v,
            int i=0)
        
        Retrieve a vtkAnnotation stored inside an information object.
        """
        return vtkAnnotation

    def GetDataObjectType(self): # real signature unknown; restored from __doc__
        """
        GetDataObjectType(self) -> int
        C++: int GetDataObjectType() override;
        
        Returns `VTK_ANNOTATION`.
        """
        return 0

    def GetMTime(self): # real signature unknown; restored from __doc__
        """
        GetMTime(self) -> int
        C++: vtkMTimeType GetMTime() override;
        
        Get the modified time of this object.
        """
        return 0

    def GetNumberOfGenerationsFromBase(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBase(self, type:str) -> int
        C++: vtkIdType GetNumberOfGenerationsFromBase(const char *type)
            override;
        
        Given the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfGenerationsFromBaseType(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBaseType(type:str) -> int
        C++: static vtkIdType GetNumberOfGenerationsFromBaseType(
            const char *type)
        
        Given a the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetSelection(self): # real signature unknown; restored from __doc__
        """
        GetSelection(self) -> vtkSelection
        C++: virtual vtkSelection *GetSelection()
        
        The selection to which this set of annotations will apply.
        """
        return vtkSelection

    def HIDE(self): # real signature unknown; restored from __doc__
        """
        HIDE() -> vtkInformationIntegerKey
        C++: static vtkInformationIntegerKey *HIDE()
        
        Whether or not this annotation is visible.
        """
        pass

    def ICON_INDEX(self): # real signature unknown; restored from __doc__
        """
        ICON_INDEX() -> vtkInformationIntegerKey
        C++: static vtkInformationIntegerKey *ICON_INDEX()
        
        An icon index for this annotation.
        """
        pass

    def Initialize(self): # real signature unknown; restored from __doc__
        """
        Initialize(self) -> None
        C++: void Initialize() override;
        
        Initialize the annotation to an empty state.
        """
        pass

    def IsA(self, type): # real signature unknown; restored from __doc__
        """
        IsA(self, type:str) -> int
        C++: vtkTypeBool IsA(const char *type) override;
        
        Return 1 if this class is the same type of (or a subclass of) the
        named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def IsTypeOf(self, type): # real signature unknown; restored from __doc__
        """
        IsTypeOf(type:str) -> int
        C++: static vtkTypeBool IsTypeOf(const char *type)
        
        Return 1 if this class type is the same type of (or a subclass
        of) the named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def LABEL(self): # real signature unknown; restored from __doc__
        """
        LABEL() -> vtkInformationStringKey
        C++: static vtkInformationStringKey *LABEL()
        
        The label for this annotation.
        """
        pass

    def NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkAnnotation
        C++: vtkAnnotation *NewInstance()
        """
        return vtkAnnotation

    def OPACITY(self): # real signature unknown; restored from __doc__
        """
        OPACITY() -> vtkInformationDoubleKey
        C++: static vtkInformationDoubleKey *OPACITY()
        
        The color for this annotation. This is stored as a value between
        0 and 1.
        """
        pass

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkAnnotation
        C++: static vtkAnnotation *SafeDownCast(vtkObjectBase *o)
        """
        return vtkAnnotation

    def SetSelection(self, selection): # real signature unknown; restored from __doc__
        """
        SetSelection(self, selection:vtkSelection) -> None
        C++: virtual void SetSelection(vtkSelection *selection)
        """
        pass

    def ShallowCopy(self, other): # real signature unknown; restored from __doc__
        """
        ShallowCopy(self, other:vtkDataObject) -> None
        C++: void ShallowCopy(vtkDataObject *other) override;
        
        Make this annotation have the same properties and have the same
        selection of another annotation.
        """
        pass

    def __delattr__(self, *args, **kwargs): # real signature unknown
        """ Implement delattr(self, name). """
        pass

    def __getattribute__(self, *args, **kwargs): # real signature unknown
        """ Return getattr(self, name). """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass

    def __setattr__(self, *args, **kwargs): # real signature unknown
        """ Implement setattr(self, name, value). """
        pass

    def __str__(self, *args, **kwargs): # real signature unknown
        """ Return str(self). """
        pass

    __this__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """Pointer to the C++ object."""


    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkAnnotation', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'GetDataObjectType': <method 'GetDataObjectType' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'GetSelection': <method 'GetSelection' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'SetSelection': <method 'SetSelection' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'GetData': <method 'GetData' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'LABEL': <method 'LABEL' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'COLOR': <method 'COLOR' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'OPACITY': <method 'OPACITY' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'ICON_INDEX': <method 'ICON_INDEX' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'ENABLE': <method 'ENABLE' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'HIDE': <method 'HIDE' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'DATA': <method 'DATA' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'Initialize': <method 'Initialize' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'ShallowCopy': <method 'ShallowCopy' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'DeepCopy': <method 'DeepCopy' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, 'GetMTime': <method 'GetMTime' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF81D60D660>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotation' objects>, '__doc__': 'vtkAnnotation - Stores a collection of annotation artifacts.\\n\\nSuperclass: vtkDataObject\\n\\nvtkAnnotation is a collection of annotation properties along with an\\nassociated selection indicating the portion of data the annotation\\nrefers to.\\n\\n@par Thanks: Timothy M. Shead (tshead@sandia.gov) at Sandia National\\nLaboratories contributed code to this class.\\n\\n'})"
    __vtkname__ = 'vtkAnnotation'


