# encoding: utf-8
# module vtkmodules.vtkInteractionWidgets
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkInteractionWidgets.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonExecutionModel as __vtkmodules_vtkCommonExecutionModel
import vtkmodules.vtkFiltersSources as __vtkmodules_vtkFiltersSources
import vtkmodules.vtkRenderingContext2D as __vtkmodules_vtkRenderingContext2D
import vtkmodules.vtkRenderingCore as __vtkmodules_vtkRenderingCore


from .vtkHandleRepresentation import vtkHandleRepresentation

class vtkPointHandleRepresentation2D(vtkHandleRepresentation):
    """
    vtkPointHandleRepresentation2D - represent the position of a point in
    display coordinates
    
    Superclass: vtkHandleRepresentation
    
    This class is used to represent a vtkHandleWidget. It represents a
    position in 2D world coordinates using a x-y cursor (the cursor
    defined by an instance of vtkPolyData and generated by a
    vtkPolyDataAlgorithm).
    
    @sa
    vtkHandleRepresentation vtkHandleWidget
    """
    def BuildRepresentation(self): # real signature unknown; restored from __doc__
        """
        BuildRepresentation(self) -> None
        C++: void BuildRepresentation() override;
        """
        pass

    def ComputeInteractionState(self, X, Y, modify=0): # real signature unknown; restored from __doc__
        """
        ComputeInteractionState(self, X:int, Y:int, modify:int=0) -> int
        C++: int ComputeInteractionState(int X, int Y, int modify=0)
            override;
        """
        return 0

    def DeepCopy(self, prop): # real signature unknown; restored from __doc__
        """
        DeepCopy(self, prop:vtkProp) -> None
        C++: void DeepCopy(vtkProp *prop) override;
        """
        pass

    def GetActors2D(self, __a): # real signature unknown; restored from __doc__
        """
        GetActors2D(self, __a:vtkPropCollection) -> None
        C++: void GetActors2D(vtkPropCollection *) override;
        """
        pass

    def GetBounds(self): # real signature unknown; restored from __doc__
        """
        GetBounds(self) -> (float, float, float, float, float, float)
        C++: double *GetBounds() override;
        
        Subclasses of vtkPointHandleRepresentation2D must implement these
        methods. These are the methods that the widget and its
        representation use to communicate with each other.
        """
        pass

    def GetCursorShape(self): # real signature unknown; restored from __doc__
        """
        GetCursorShape(self) -> vtkPolyData
        C++: vtkPolyData *GetCursorShape()
        """
        pass

    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 GetProperty(self): # real signature unknown; restored from __doc__
        """
        GetProperty(self) -> vtkProperty2D
        C++: virtual vtkProperty2D *GetProperty()
        """
        pass

    def GetSelectedProperty(self): # real signature unknown; restored from __doc__
        """
        GetSelectedProperty(self) -> vtkProperty2D
        C++: virtual vtkProperty2D *GetSelectedProperty()
        """
        pass

    def Highlight(self, highlight): # real signature unknown; restored from __doc__
        """
        Highlight(self, highlight:int) -> None
        C++: void Highlight(int highlight) override;
        """
        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) -> vtkPointHandleRepresentation2D
        C++: vtkPointHandleRepresentation2D *NewInstance()
        """
        return vtkPointHandleRepresentation2D

    def ReleaseGraphicsResources(self, __a): # real signature unknown; restored from __doc__
        """
        ReleaseGraphicsResources(self, __a:vtkWindow) -> None
        C++: void ReleaseGraphicsResources(vtkWindow *) override;
        
        WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Release
        any graphics resources that are being consumed by this actor. The
        parameter window could be used to determine which graphic
        resources to release.
        """
        pass

    def RenderOverlay(self, viewport): # real signature unknown; restored from __doc__
        """
        RenderOverlay(self, viewport:vtkViewport) -> int
        C++: int RenderOverlay(vtkViewport *viewport) override;
        """
        return 0

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkPointHandleRepresentation2D
        C++: static vtkPointHandleRepresentation2D *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkPointHandleRepresentation2D

    def SetCursorShape(self, cursorShape): # real signature unknown; restored from __doc__
        """
        SetCursorShape(self, cursorShape:vtkPolyData) -> None
        C++: void SetCursorShape(vtkPolyData *cursorShape)
        
        Specify the cursor shape with an instance of vtkPolyData. Note
        that shape is assumed to be defined in the display coordinate
        system. By default a vtkCursor2D shape is used.
        """
        pass

    def SetDisplayPosition(self, xyz, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        SetDisplayPosition(self, xyz:[float, float, float]) -> None
        C++: void SetDisplayPosition(double xyz[3]) override;
        
        Set/Get the position of the point in display coordinates.  This
        overloads the superclasses SetDisplayPosition in order to set the
        focal point of the cursor.
        """
        pass

    def SetPointPlacer(self, __a): # real signature unknown; restored from __doc__
        """
        SetPointPlacer(self, __a:vtkPointPlacer) -> None
        C++: void SetPointPlacer(vtkPointPlacer *) override;
        
        Override the superclass implementation. This class does not use a
        point placer. Point placers dictate the placement of points in 3D
        space. Since this class constrains points to lie in an overlay
        plane anyway, we don't care. Just returns.
        """
        pass

    def SetProperty(self, __a): # real signature unknown; restored from __doc__
        """
        SetProperty(self, __a:vtkProperty2D) -> None
        C++: void SetProperty(vtkProperty2D *)
        
        Set/Get the handle properties when unselected and selected.
        """
        pass

    def SetSelectedProperty(self, __a): # real signature unknown; restored from __doc__
        """
        SetSelectedProperty(self, __a:vtkProperty2D) -> None
        C++: void SetSelectedProperty(vtkProperty2D *)
        """
        pass

    def SetVisibility(self, visible): # real signature unknown; restored from __doc__
        """
        SetVisibility(self, visible:int) -> None
        C++: void SetVisibility(vtkTypeBool visible) override;
        
        Override to ensure that the internal actor's visibility is
        consistent with this representation's visibility. Inconsistency
        between the two would cause issues in picking logic which relies
        on individual view prop visibility to determine whether the prop
        is pickable.
        """
        pass

    def ShallowCopy(self, prop): # real signature unknown; restored from __doc__
        """
        ShallowCopy(self, prop:vtkProp) -> None
        C++: void ShallowCopy(vtkProp *prop) override;
        
        Methods to make this class behave as a vtkProp.
        """
        pass

    def StartWidgetInteraction(self, eventPos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        StartWidgetInteraction(self, eventPos:[float, float]) -> None
        C++: void StartWidgetInteraction(double eventPos[2]) override;
        """
        pass

    def Translate(self, p1, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        Translate(self, p1:(float, ...), p2:(float, ...)) -> None
        C++: virtual void Translate(const double *p1, const double *p2)
        
        Translates world position by vector p1p2 projected on the
        constraint axis if any.
        """
        pass

    def WidgetInteraction(self, eventPos, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        WidgetInteraction(self, eventPos:[float, float]) -> None
        C++: void WidgetInteraction(double eventPos[2]) override;
        """
        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__': 'vtkPointHandleRepresentation2D', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'SetCursorShape': <method 'SetCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'GetCursorShape': <method 'GetCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'SetDisplayPosition': <method 'SetDisplayPosition' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'SetProperty': <method 'SetProperty' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'SetSelectedProperty': <method 'SetSelectedProperty' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'GetProperty': <method 'GetProperty' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'GetSelectedProperty': <method 'GetSelectedProperty' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'GetBounds': <method 'GetBounds' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'BuildRepresentation': <method 'BuildRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'StartWidgetInteraction': <method 'StartWidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'WidgetInteraction': <method 'WidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'ComputeInteractionState': <method 'ComputeInteractionState' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'ShallowCopy': <method 'ShallowCopy' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'DeepCopy': <method 'DeepCopy' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'GetActors2D': <method 'GetActors2D' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'ReleaseGraphicsResources': <method 'ReleaseGraphicsResources' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'RenderOverlay': <method 'RenderOverlay' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'Highlight': <method 'Highlight' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'SetPointPlacer': <method 'SetPointPlacer' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'SetVisibility': <method 'SetVisibility' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, 'Translate': <method 'Translate' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF81D659240>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkPointHandleRepresentation2D' objects>, '__doc__': 'vtkPointHandleRepresentation2D - represent the position of a point in\\ndisplay coordinates\\n\\nSuperclass: vtkHandleRepresentation\\n\\nThis class is used to represent a vtkHandleWidget. It represents a\\nposition in 2D world coordinates using a x-y cursor (the cursor\\ndefined by an instance of vtkPolyData and generated by a\\nvtkPolyDataAlgorithm).\\n\\n@sa\\nvtkHandleRepresentation vtkHandleWidget\\n\\n'})"
    __vtkname__ = 'vtkPointHandleRepresentation2D'


