# 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 vtkAnnotationLayers(vtkDataObject):
    """
    vtkAnnotationLayers - Stores a ordered collection of annotation sets
    
    Superclass: vtkDataObject
    
    vtkAnnotationLayers stores a vector of annotation layers. Each layer
    may contain any number of vtkAnnotation objects. The ordering of the
    layers introduces a prioritization of annotations. Annotations in
    higher layers may obscure annotations in lower layers.
    """
    def AddAnnotation(self, ann): # real signature unknown; restored from __doc__
        """
        AddAnnotation(self, ann:vtkAnnotation) -> None
        C++: void AddAnnotation(vtkAnnotation *ann)
        
        Add an annotation to a layer.
        """
        pass

    def DeepCopy(self, other): # real signature unknown; restored from __doc__
        """
        DeepCopy(self, other:vtkDataObject) -> None
        C++: void DeepCopy(vtkDataObject *other) override;
        
        Copy data from another data object into this one, performing a
        deep copy of member annotations.
        """
        pass

    def GetAnnotation(self, idx): # real signature unknown; restored from __doc__
        """
        GetAnnotation(self, idx:int) -> vtkAnnotation
        C++: vtkAnnotation *GetAnnotation(unsigned int idx)
        
        Retrieve an annotation from a layer.
        """
        return vtkAnnotation

    def GetCurrentAnnotation(self): # real signature unknown; restored from __doc__
        """
        GetCurrentAnnotation(self) -> vtkAnnotation
        C++: virtual vtkAnnotation *GetCurrentAnnotation()
        """
        return vtkAnnotation

    def GetCurrentSelection(self): # real signature unknown; restored from __doc__
        """
        GetCurrentSelection(self) -> vtkSelection
        C++: virtual vtkSelection *GetCurrentSelection()
        """
        return vtkSelection

    def GetData(self, info): # real signature unknown; restored from __doc__
        """
        GetData(info:vtkInformation) -> vtkAnnotationLayers
        C++: static vtkAnnotationLayers *GetData(vtkInformation *info)
        GetData(v:vtkInformationVector, i:int=0) -> vtkAnnotationLayers
        C++: static vtkAnnotationLayers *GetData(vtkInformationVector *v,
            int i=0)
        
        Retrieve a vtkAnnotationLayers stored inside an information
        object.
        """
        return vtkAnnotationLayers

    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;
        
        The modified time for this object.
        """
        return 0

    def GetNumberOfAnnotations(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfAnnotations(self) -> int
        C++: unsigned int GetNumberOfAnnotations()
        
        The number of annotations in a specific layer.
        """
        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 Initialize(self): # real signature unknown; restored from __doc__
        """
        Initialize(self) -> None
        C++: void Initialize() override;
        
        Initialize the data structure 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 NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkAnnotationLayers
        C++: vtkAnnotationLayers *NewInstance()
        """
        return vtkAnnotationLayers

    def RemoveAnnotation(self, ann): # real signature unknown; restored from __doc__
        """
        RemoveAnnotation(self, ann:vtkAnnotation) -> None
        C++: void RemoveAnnotation(vtkAnnotation *ann)
        
        Remove an annotation from a layer.
        """
        pass

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkAnnotationLayers
        C++: static vtkAnnotationLayers *SafeDownCast(vtkObjectBase *o)
        """
        return vtkAnnotationLayers

    def SetCurrentAnnotation(self, ann): # real signature unknown; restored from __doc__
        """
        SetCurrentAnnotation(self, ann:vtkAnnotation) -> None
        C++: virtual void SetCurrentAnnotation(vtkAnnotation *ann)
        
        The current annotation associated with this annotation link.
        """
        pass

    def SetCurrentSelection(self, sel): # real signature unknown; restored from __doc__
        """
        SetCurrentSelection(self, sel:vtkSelection) -> None
        C++: virtual void SetCurrentSelection(vtkSelection *sel)
        
        The current selection associated with this annotation link. This
        is simply the selection contained in the current annotation.
        """
        pass

    def ShallowCopy(self, other): # real signature unknown; restored from __doc__
        """
        ShallowCopy(self, other:vtkDataObject) -> None
        C++: void ShallowCopy(vtkDataObject *other) override;
        
        Copy data from another data object into this one which references
        the same member annotations.
        """
        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__': 'vtkAnnotationLayers', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'GetDataObjectType': <method 'GetDataObjectType' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'SetCurrentAnnotation': <method 'SetCurrentAnnotation' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'GetCurrentAnnotation': <method 'GetCurrentAnnotation' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'SetCurrentSelection': <method 'SetCurrentSelection' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'GetCurrentSelection': <method 'GetCurrentSelection' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'GetNumberOfAnnotations': <method 'GetNumberOfAnnotations' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'GetAnnotation': <method 'GetAnnotation' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'AddAnnotation': <method 'AddAnnotation' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'RemoveAnnotation': <method 'RemoveAnnotation' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'Initialize': <method 'Initialize' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'ShallowCopy': <method 'ShallowCopy' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'DeepCopy': <method 'DeepCopy' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'GetData': <method 'GetData' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, 'GetMTime': <method 'GetMTime' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF81D60DB10>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkCommonDataModel.vtkAnnotationLayers' objects>, '__doc__': 'vtkAnnotationLayers - Stores a ordered collection of annotation sets\\n\\nSuperclass: vtkDataObject\\n\\nvtkAnnotationLayers stores a vector of annotation layers. Each layer\\nmay contain any number of vtkAnnotation objects. The ordering of the\\nlayers introduces a prioritization of annotations. Annotations in\\nhigher layers may obscure annotations in lower layers.\\n\\n'})"
    __vtkname__ = 'vtkAnnotationLayers'


