# 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 .vtkWidgetRepresentation import vtkWidgetRepresentation

class vtkCheckerboardRepresentation(vtkWidgetRepresentation):
    """
    vtkCheckerboardRepresentation - represent the vtkCheckerboardWidget
    
    Superclass: vtkWidgetRepresentation
    
    The vtkCheckerboardRepresentation is used to implement the
    representation of the vtkCheckerboardWidget. The user can adjust the
    number of divisions in each of the i-j directions in a 2D image. A
    frame appears around the vtkImageActor with sliders along each side
    of the frame. The user can interactively adjust the sliders to the
    desired number of checkerboard subdivisions. The representation uses
    four instances of vtkSliderRepresentation3D to implement itself.
    
    @sa
    vtkCheckerboardWidget vtkImageCheckerboard vtkImageActor
    vtkSliderWidget vtkRectilinearWipeWidget
    """
    def BuildRepresentation(self): # real signature unknown; restored from __doc__
        """
        BuildRepresentation(self) -> None
        C++: void BuildRepresentation() override;
        
        Methods required by superclass.
        """
        pass

    def GetActors(self, __a): # real signature unknown; restored from __doc__
        """
        GetActors(self, __a:vtkPropCollection) -> None
        C++: void GetActors(vtkPropCollection *) override;
        
        For some exporters and other other operations we must be able to
        collect all the actors or volumes. These methods are used in that
        process.
        """
        pass

    def GetBottomRepresentation(self): # real signature unknown; restored from __doc__
        """
        GetBottomRepresentation(self) -> vtkSliderRepresentation3D
        C++: virtual vtkSliderRepresentation3D *GetBottomRepresentation()
        """
        return vtkSliderRepresentation3D

    def GetCheckerboard(self): # real signature unknown; restored from __doc__
        """
        GetCheckerboard(self) -> vtkImageCheckerboard
        C++: virtual vtkImageCheckerboard *GetCheckerboard()
        """
        pass

    def GetCornerOffset(self): # real signature unknown; restored from __doc__
        """
        GetCornerOffset(self) -> float
        C++: virtual double GetCornerOffset()
        """
        return 0.0

    def GetCornerOffsetMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetCornerOffsetMaxValue(self) -> float
        C++: virtual double GetCornerOffsetMaxValue()
        """
        return 0.0

    def GetCornerOffsetMinValue(self): # real signature unknown; restored from __doc__
        """
        GetCornerOffsetMinValue(self) -> float
        C++: virtual double GetCornerOffsetMinValue()
        """
        return 0.0

    def GetImageActor(self): # real signature unknown; restored from __doc__
        """
        GetImageActor(self) -> vtkImageActor
        C++: virtual vtkImageActor *GetImageActor()
        """
        pass

    def GetLeftRepresentation(self): # real signature unknown; restored from __doc__
        """
        GetLeftRepresentation(self) -> vtkSliderRepresentation3D
        C++: virtual vtkSliderRepresentation3D *GetLeftRepresentation()
        """
        return vtkSliderRepresentation3D

    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 GetRightRepresentation(self): # real signature unknown; restored from __doc__
        """
        GetRightRepresentation(self) -> vtkSliderRepresentation3D
        C++: virtual vtkSliderRepresentation3D *GetRightRepresentation()
        """
        return vtkSliderRepresentation3D

    def GetTopRepresentation(self): # real signature unknown; restored from __doc__
        """
        GetTopRepresentation(self) -> vtkSliderRepresentation3D
        C++: virtual vtkSliderRepresentation3D *GetTopRepresentation()
        """
        return vtkSliderRepresentation3D

    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) -> vtkCheckerboardRepresentation
        C++: vtkCheckerboardRepresentation *NewInstance()
        """
        return vtkCheckerboardRepresentation

    def ReleaseGraphicsResources(self, w): # real signature unknown; restored from __doc__
        """
        ReleaseGraphicsResources(self, w:vtkWindow) -> None
        C++: void ReleaseGraphicsResources(vtkWindow *w) 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 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) -> vtkCheckerboardRepresentation
        C++: static vtkCheckerboardRepresentation *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkCheckerboardRepresentation

    def SetBottomRepresentation(self, __a): # real signature unknown; restored from __doc__
        """
        SetBottomRepresentation(self, __a:vtkSliderRepresentation3D)
            -> None
        C++: void SetBottomRepresentation(vtkSliderRepresentation3D *)
        """
        pass

    def SetCheckerboard(self, chkrbrd): # real signature unknown; restored from __doc__
        """
        SetCheckerboard(self, chkrbrd:vtkImageCheckerboard) -> None
        C++: void SetCheckerboard(vtkImageCheckerboard *chkrbrd)
        
        Specify an instance of vtkImageCheckerboard to manipulate.
        """
        pass

    def SetCornerOffset(self, _arg): # real signature unknown; restored from __doc__
        """
        SetCornerOffset(self, _arg:float) -> None
        C++: virtual void SetCornerOffset(double _arg)
        
        Specify the offset of the ends of the sliders (on the boundary
        edges of the image) from the corner of the image. The offset is
        expressed as a normalized fraction of the border edges.
        """
        pass

    def SetImageActor(self, imageActor): # real signature unknown; restored from __doc__
        """
        SetImageActor(self, imageActor:vtkImageActor) -> None
        C++: void SetImageActor(vtkImageActor *imageActor)
        
        Specify an instance of vtkImageActor to decorate.
        """
        pass

    def SetLeftRepresentation(self, __a): # real signature unknown; restored from __doc__
        """
        SetLeftRepresentation(self, __a:vtkSliderRepresentation3D) -> None
        C++: void SetLeftRepresentation(vtkSliderRepresentation3D *)
        """
        pass

    def SetRightRepresentation(self, __a): # real signature unknown; restored from __doc__
        """
        SetRightRepresentation(self, __a:vtkSliderRepresentation3D)
            -> None
        C++: void SetRightRepresentation(vtkSliderRepresentation3D *)
        """
        pass

    def SetTopRepresentation(self, __a): # real signature unknown; restored from __doc__
        """
        SetTopRepresentation(self, __a:vtkSliderRepresentation3D) -> None
        C++: void SetTopRepresentation(vtkSliderRepresentation3D *)
        
        Set and get the instances of vtkSliderRepresention used to
        implement this representation. Normally default representations
        are created, but you can specify the ones you want to use.
        """
        pass

    def SliderValueChanged(self, sliderNum): # real signature unknown; restored from __doc__
        """
        SliderValueChanged(self, sliderNum:int) -> None
        C++: void SliderValueChanged(int sliderNum)
        
        This method is invoked by the vtkCheckerboardWidget() when a
        value of some slider has changed.
        """
        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."""


    BottomSlider = 2
    LeftSlider = 3
    RightSlider = 1
    TopSlider = 0
    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkCheckerboardRepresentation', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'SetCheckerboard': <method 'SetCheckerboard' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetCheckerboard': <method 'GetCheckerboard' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'SetImageActor': <method 'SetImageActor' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetImageActor': <method 'GetImageActor' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'SetCornerOffset': <method 'SetCornerOffset' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetCornerOffsetMinValue': <method 'GetCornerOffsetMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetCornerOffsetMaxValue': <method 'GetCornerOffsetMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetCornerOffset': <method 'GetCornerOffset' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'SliderValueChanged': <method 'SliderValueChanged' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'SetTopRepresentation': <method 'SetTopRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'SetRightRepresentation': <method 'SetRightRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'SetBottomRepresentation': <method 'SetBottomRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'SetLeftRepresentation': <method 'SetLeftRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetTopRepresentation': <method 'GetTopRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetRightRepresentation': <method 'GetRightRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetBottomRepresentation': <method 'GetBottomRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetLeftRepresentation': <method 'GetLeftRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'BuildRepresentation': <method 'BuildRepresentation' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'GetActors': <method 'GetActors' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'ReleaseGraphicsResources': <method 'ReleaseGraphicsResources' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'RenderOverlay': <method 'RenderOverlay' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'RenderOpaqueGeometry': <method 'RenderOpaqueGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'RenderTranslucentPolygonalGeometry': <method 'RenderTranslucentPolygonalGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'HasTranslucentPolygonalGeometry': <method 'HasTranslucentPolygonalGeometry' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, 'TopSlider': 0, 'RightSlider': 1, 'BottomSlider': 2, 'LeftSlider': 3, '__new__': <built-in method __new__ of type object at 0x00007FF81D640010>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkCheckerboardRepresentation' objects>, '__doc__': 'vtkCheckerboardRepresentation - represent the vtkCheckerboardWidget\\n\\nSuperclass: vtkWidgetRepresentation\\n\\nThe vtkCheckerboardRepresentation is used to implement the\\nrepresentation of the vtkCheckerboardWidget. The user can adjust the\\nnumber of divisions in each of the i-j directions in a 2D image. A\\nframe appears around the vtkImageActor with sliders along each side\\nof the frame. The user can interactively adjust the sliders to the\\ndesired number of checkerboard subdivisions. The representation uses\\nfour instances of vtkSliderRepresentation3D to implement itself.\\n\\n@sa\\nvtkCheckerboardWidget vtkImageCheckerboard vtkImageActor\\nvtkSliderWidget vtkRectilinearWipeWidget\\n\\n'})"
    __vtkname__ = 'vtkCheckerboardRepresentation'


