# 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 .vtkContourRepresentation import vtkContourRepresentation

class vtkOrientedGlyphContourRepresentation(vtkContourRepresentation):
    """
    vtkOrientedGlyphContourRepresentation - Default representation for
    the contour widget
    
    Superclass: vtkContourRepresentation
    
    This class provides the default concrete representation for the
    vtkContourWidget. It works in conjunction with the
    vtkContourLineInterpolator and vtkPointPlacer. See vtkContourWidget
    for details.
    @sa
    vtkContourRepresentation vtkContourWidget vtkPointPlacer
    vtkContourLineInterpolator
    """
    def AlwaysOnTopOff(self): # real signature unknown; restored from __doc__
        """
        AlwaysOnTopOff(self) -> None
        C++: virtual void AlwaysOnTopOff()
        """
        pass

    def AlwaysOnTopOn(self): # real signature unknown; restored from __doc__
        """
        AlwaysOnTopOn(self) -> None
        C++: virtual void AlwaysOnTopOn()
        """
        pass

    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) -> vtkProperty
        C++: virtual vtkProperty *GetActiveProperty()
        
        This is the property used when the user is interacting with the
        handle.
        """
        pass

    def GetActors(self, __a): # real signature unknown; restored from __doc__
        """
        GetActors(self, __a:vtkPropCollection) -> None
        C++: void GetActors(vtkPropCollection *) override;
        
        Methods to make this class behave as a vtkProp.
        """
        pass

    def GetAlwaysOnTop(self): # real signature unknown; restored from __doc__
        """
        GetAlwaysOnTop(self) -> int
        C++: virtual vtkTypeBool GetAlwaysOnTop()
        """
        return 0

    def GetBounds(self): # real signature unknown; restored from __doc__
        """
        GetBounds(self) -> (float, float, float, float, float, float)
        C++: double *GetBounds() override;
        
        Return the bounds of the representation
        """
        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) -> vtkProperty
        C++: virtual vtkProperty *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) -> vtkProperty
        C++: virtual vtkProperty *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) -> vtkOrientedGlyphContourRepresentation
        C++: vtkOrientedGlyphContourRepresentation *NewInstance()
        """
        return vtkOrientedGlyphContourRepresentation

    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)
            -> vtkOrientedGlyphContourRepresentation
        C++: static vtkOrientedGlyphContourRepresentation *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkOrientedGlyphContourRepresentation

    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 SetAlwaysOnTop(self, _arg): # real signature unknown; restored from __doc__
        """
        SetAlwaysOnTop(self, _arg:int) -> None
        C++: virtual void SetAlwaysOnTop(vtkTypeBool _arg)
        
        Controls whether the contour widget should always appear on top
        of other actors in the scene. (In effect, this will disable
        OpenGL Depth buffer tests while rendering the contour). Default
        is to set it to false.
        """
        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 SetLineColor(self, r, g, b): # real signature unknown; restored from __doc__
        """
        SetLineColor(self, r:float, g:float, b:float) -> None
        C++: void SetLineColor(double r, double g, double b)
        
        Convenience method to set the line color. Ideally one should use
        GetLinesProperty()->SetColor().
        """
        pass

    def SetRenderer(self, ren): # real signature unknown; restored from __doc__
        """
        SetRenderer(self, ren:vtkRenderer) -> None
        C++: void SetRenderer(vtkRenderer *ren) override;
        
        Subclasses of vtkOrientedGlyphContourRepresentation must
        implement these methods. These are the methods that the widget
        and its representation use to communicate with each other.
        """
        pass

    def SetShowSelectedNodes(self, __a): # real signature unknown; restored from __doc__
        """
        SetShowSelectedNodes(self, __a:int) -> None
        C++: void SetShowSelectedNodes(vtkTypeBool) override;
        
        A flag to indicate whether to show the Selected nodes Default is
        to set it to false.
        """
        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__': 'vtkOrientedGlyphContourRepresentation', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'SetCursorShape': <method 'SetCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetCursorShape': <method 'GetCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'SetActiveCursorShape': <method 'SetActiveCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetActiveCursorShape': <method 'GetActiveCursorShape' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetProperty': <method 'GetProperty' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetActiveProperty': <method 'GetActiveProperty' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetLinesProperty': <method 'GetLinesProperty' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'SetRenderer': <method 'SetRenderer' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'BuildRepresentation': <method 'BuildRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'StartWidgetInteraction': <method 'StartWidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'WidgetInteraction': <method 'WidgetInteraction' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'ComputeInteractionState': <method 'ComputeInteractionState' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetActors': <method 'GetActors' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'ReleaseGraphicsResources': <method 'ReleaseGraphicsResources' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'RenderOverlay': <method 'RenderOverlay' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'RenderOpaqueGeometry': <method 'RenderOpaqueGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'RenderTranslucentPolygonalGeometry': <method 'RenderTranslucentPolygonalGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'HasTranslucentPolygonalGeometry': <method 'HasTranslucentPolygonalGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetContourRepresentationAsPolyData': <method 'GetContourRepresentationAsPolyData' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'SetAlwaysOnTop': <method 'SetAlwaysOnTop' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetAlwaysOnTop': <method 'GetAlwaysOnTop' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'AlwaysOnTopOn': <method 'AlwaysOnTopOn' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'AlwaysOnTopOff': <method 'AlwaysOnTopOff' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'SetLineColor': <method 'SetLineColor' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'SetShowSelectedNodes': <method 'SetShowSelectedNodes' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, 'GetBounds': <method 'GetBounds' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF81D655CB0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkOrientedGlyphContourRepresentation' objects>, '__doc__': 'vtkOrientedGlyphContourRepresentation - Default representation for\\nthe contour widget\\n\\nSuperclass: vtkContourRepresentation\\n\\nThis class provides the default concrete representation for the\\nvtkContourWidget. It works in conjunction with the\\nvtkContourLineInterpolator and vtkPointPlacer. See vtkContourWidget\\nfor details.\\n@sa\\nvtkContourRepresentation vtkContourWidget vtkPointPlacer\\nvtkContourLineInterpolator\\n\\n'})"
    __vtkname__ = 'vtkOrientedGlyphContourRepresentation'


