# 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 .vtkFocalPlaneContourRepresentation import vtkFocalPlaneContourRepresentation

class vtkOrientedGlyphFocalPlaneContourRepresentation(vtkFocalPlaneContourRepresentation):
    """
    vtkOrientedGlyphFocalPlaneContourRepresentation - Contours
    constrained to a focal plane.
    
    Superclass: vtkFocalPlaneContourRepresentation
    
    This class is used to represent a contour drawn on the focal plane
    (usually overlaid on top of an image or volume widget). The class was
    written in order to be able to draw contours on a volume widget and
    have the contours overlaid on the focal plane in order to do contour
    segmentation.
    
    @sa
    vtkOrientedGlyphContourRepresentation
    """
    def BuildRepresentation(self): # real signature unknown; restored from __doc__
        """
        BuildRepresentation(self) -> None
        C++: void BuildRepresentation() override;
        
        These are methods that satisfy vtkWidgetRepresentation's API.
        """
        pass

    def ComputeInteractionState(self, X, Y, modified=0): # real signature unknown; restored from __doc__
        """
        ComputeInteractionState(self, X:int, Y:int, modified:int=0) -> int
        C++: int ComputeInteractionState(int X, int Y, int modified=0)
            override;
        """
        return 0

    def GetActiveCursorShape(self): # real signature unknown; restored from __doc__
        """
        GetActiveCursorShape(self) -> vtkPolyData
        C++: vtkPolyData *GetActiveCursorShape()
        """
        pass

    def GetActiveProperty(self): # real signature unknown; restored from __doc__
        """
        GetActiveProperty(self) -> vtkProperty2D
        C++: virtual vtkProperty2D *GetActiveProperty()
        
        This is the property used when the user is interacting with the
        handle.
        """
        pass

    def GetActors2D(self, __a): # real signature unknown; restored from __doc__
        """
        GetActors2D(self, __a:vtkPropCollection) -> None
        C++: void GetActors2D(vtkPropCollection *) override;
        
        Methods to make this class behave as a vtkProp.
        """
        pass

    def GetContourPlaneDirectionCosines(self, origin, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        GetContourPlaneDirectionCosines(self, origin:(float, float, float)
            ) -> vtkMatrix4x4
        C++: vtkMatrix4x4 *GetContourPlaneDirectionCosines(
            const double origin[3])
        
        Direction cosines of the plane on which the contour lies on in
        world co-ordinates. This would be the same matrix that would be
        set in vtkImageReslice or vtkImagePlaneWidget if there were a
        plane passing through the contour points. The origin must be the
        origin of the data under the contour.
        """
        pass

    def GetContourRepresentationAsPolyData(self): # real signature unknown; restored from __doc__
        """
        GetContourRepresentationAsPolyData(self) -> vtkPolyData
        C++: vtkPolyData *GetContourRepresentationAsPolyData() override;
        
        Get the points in this contour as a vtkPolyData.
        """
        pass

    def GetCursorShape(self): # real signature unknown; restored from __doc__
        """
        GetCursorShape(self) -> vtkPolyData
        C++: vtkPolyData *GetCursorShape()
        """
        pass

    def GetLinesProperty(self): # real signature unknown; restored from __doc__
        """
        GetLinesProperty(self) -> vtkProperty2D
        C++: virtual vtkProperty2D *GetLinesProperty()
        
        This is the property used by the lines.
        """
        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()
        
        This is the property used when the handle is not active (the
        mouse is not near the handle)
        """
        pass

    def HasTranslucentPolygonalGeometry(self): # real signature unknown; restored from __doc__
        """
        HasTranslucentPolygonalGeometry(self) -> int
        C++: vtkTypeBool HasTranslucentPolygonalGeometry() override;
        
        WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT
        USE THESE METHODS OUTSIDE OF THE RENDERING PROCESS Does this prop
        have some translucent polygonal geometry? This method is called
        during the rendering process to know if there is some translucent
        polygonal geometry. A simple prop that has some translucent
        polygonal geometry will return true. A composite prop (like
        vtkAssembly) that has at least one sub-prop that has some
        translucent polygonal geometry will return true. Default
        implementation return false.
        """
        return 0

    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)
            -> vtkOrientedGlyphFocalPlaneContourRepresentation
        C++: vtkOrientedGlyphFocalPlaneContourRepresentation *NewInstance(
            )
        """
        return vtkOrientedGlyphFocalPlaneContourRepresentation

    def ReleaseGraphicsResources(self, __a): # real signature unknown; restored from __doc__
        """
        ReleaseGraphicsResources(self, __a:vtkWindow) -> None
        C++: void ReleaseGraphicsResources(vtkWindow *) override;
        
        Methods required by vtkProp superclass.
        """
        pass

    def RenderOpaqueGeometry(self, viewport): # real signature unknown; restored from __doc__
        """
        RenderOpaqueGeometry(self, viewport:vtkViewport) -> int
        C++: int RenderOpaqueGeometry(vtkViewport *viewport) override;
        
        WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT
        USE THESE METHODS OUTSIDE OF THE RENDERING PROCESS All concrete
        subclasses must be able to render themselves. There are four key
        render methods in vtk and they correspond to four different
        points in the rendering cycle. Any given prop may implement one
        or more of these methods. The first method is intended for
        rendering all opaque geometry. The second method is intended for
        rendering all translucent polygonal geometry. The third one is
        intended for rendering all translucent volumetric geometry. Most
        of the volume rendering mappers draw their results during this
        third method. The last method is to render any 2D annotation or
        overlays. Each of these methods return an integer value
        indicating whether or not this render method was applied to this
        data.
        """
        return 0

    def RenderOverlay(self, viewport): # real signature unknown; restored from __doc__
        """
        RenderOverlay(self, viewport:vtkViewport) -> int
        C++: int RenderOverlay(vtkViewport *viewport) override;
        """
        return 0

    def RenderTranslucentPolygonalGeometry(self, viewport): # real signature unknown; restored from __doc__
        """
        RenderTranslucentPolygonalGeometry(self, viewport:vtkViewport)
            -> int
        C++: int RenderTranslucentPolygonalGeometry(vtkViewport *viewport)
             override;
        """
        return 0

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase)
            -> vtkOrientedGlyphFocalPlaneContourRepresentation
        C++: static vtkOrientedGlyphFocalPlaneContourRepresentation *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkOrientedGlyphFocalPlaneContourRepresentation

    def SetActiveCursorShape(self, activeShape): # real signature unknown; restored from __doc__
        """
        SetActiveCursorShape(self, activeShape:vtkPolyData) -> None
        C++: void SetActiveCursorShape(vtkPolyData *activeShape)
        
        Specify the shape of the cursor (handle) when it is active. This
        is the geometry that will be used when the mouse is close to the
        handle or if the user is manipulating the handle.
        """
        pass

    def SetCursorShape(self, cursorShape): # real signature unknown; restored from __doc__
        """
        SetCursorShape(self, cursorShape:vtkPolyData) -> None
        C++: void SetCursorShape(vtkPolyData *cursorShape)
        
        Specify the cursor shape. Keep in mind that the shape will be
        aligned with the constraining plane by orienting it such that the
        x axis of the geometry lies along the normal of the plane.
        """
        pass

    def SetRenderer(self, ren): # real signature unknown; restored from __doc__
        """
        SetRenderer(self, ren:vtkRenderer) -> None
        C++: void SetRenderer(vtkRenderer *ren) override;
        
        Subclasses of vtkOrientedGlyphFocalPlaneContourRepresentation
        must implement these methods. These are the methods that the
        widget and its representation use to communicate with each other.
        """
        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 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__': 'vtkOrientedGlyphFocalPlaneContourRepresentation', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'SetCursorShape': <method 'SetCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetCursorShape': <method 'GetCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'SetActiveCursorShape': <method 'SetActiveCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetActiveCursorShape': <method 'GetActiveCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetProperty': <method 'GetProperty' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetActiveProperty': <method 'GetActiveProperty' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetLinesProperty': <method 'GetLinesProperty' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'SetRenderer': <method 'SetRenderer' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'BuildRepresentation': <method 'BuildRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'StartWidgetInteraction': <method 'StartWidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'WidgetInteraction': <method 'WidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'ComputeInteractionState': <method 'ComputeInteractionState' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetActors2D': <method 'GetActors2D' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'ReleaseGraphicsResources': <method 'ReleaseGraphicsResources' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'RenderOverlay': <method 'RenderOverlay' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'RenderOpaqueGeometry': <method 'RenderOpaqueGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'RenderTranslucentPolygonalGeometry': <method 'RenderTranslucentPolygonalGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'HasTranslucentPolygonalGeometry': <method 'HasTranslucentPolygonalGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetContourRepresentationAsPolyData': <method 'GetContourRepresentationAsPolyData' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, 'GetContourPlaneDirectionCosines': <method 'GetContourPlaneDirectionCosines' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF81D6561C0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphFocalPlaneContourRepresentation' objects>, '__doc__': 'vtkOrientedGlyphFocalPlaneContourRepresentation - Contours\\nconstrained to a focal plane.\\n\\nSuperclass: vtkFocalPlaneContourRepresentation\\n\\nThis class is used to represent a contour drawn on the focal plane\\n(usually overlaid on top of an image or volume widget). The class was\\nwritten in order to be able to draw contours on a volume widget and\\nhave the contours overlaid on the focal plane in order to do contour\\nsegmentation.\\n\\n@sa\\nvtkOrientedGlyphContourRepresentation\\n\\n'})"
    __vtkname__ = 'vtkOrientedGlyphFocalPlaneContourRepresentation'


