mirror of https://github.com/KLayout/klayout.git
update py stubs
This commit is contained in:
parent
77782e4f1c
commit
421999d8b5
File diff suppressed because it is too large
Load Diff
|
|
@ -92,6 +92,14 @@ class AbstractMenu:
|
|||
@hide
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> AbstractMenu:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -127,6 +135,11 @@ class AbstractMenu:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> AbstractMenu:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -315,6 +328,14 @@ class Action(ActionBase):
|
|||
|
||||
In Version 0.23, the Action class has been merged with the ActionBase class.
|
||||
"""
|
||||
def _const_cast(self) -> Action:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -350,6 +371,11 @@ class Action(ActionBase):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Action:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -552,6 +578,14 @@ class ActionBase:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> ActionBase:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -587,6 +621,11 @@ class ActionBase:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> ActionBase:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1268,6 +1307,14 @@ class Annotation(BasicAnnotation):
|
|||
@brief Assigns another object to self
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Annotation:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1308,6 +1355,11 @@ class Annotation(BasicAnnotation):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Annotation:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1483,6 +1535,14 @@ class BasicAnnotation:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> BasicAnnotation:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1518,6 +1578,11 @@ class BasicAnnotation:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> BasicAnnotation:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1591,6 +1656,14 @@ class BasicImage:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> BasicImage:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1626,6 +1699,11 @@ class BasicImage:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> BasicImage:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1739,6 +1817,14 @@ class BitmapBuffer:
|
|||
@brief Returns a value indicating whether self is not identical to the other image
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> BitmapBuffer:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1774,6 +1860,11 @@ class BitmapBuffer:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> BitmapBuffer:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1920,6 +2011,14 @@ class ButtonState:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> ButtonState:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1955,6 +2054,11 @@ class ButtonState:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> ButtonState:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2173,6 +2277,14 @@ class CellView:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> CellView:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2208,6 +2320,11 @@ class CellView:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> CellView:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2527,6 +2644,14 @@ class Cursor:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Cursor:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2562,6 +2687,11 @@ class Cursor:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Cursor:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2638,6 +2768,14 @@ class Dispatcher:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Dispatcher:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2673,6 +2811,11 @@ class Dispatcher:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Dispatcher:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2936,6 +3079,14 @@ class EditorHooks:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> EditorHooks:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2971,6 +3122,11 @@ class EditorHooks:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> EditorHooks:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -3488,6 +3644,14 @@ class Image(BasicImage):
|
|||
@brief Assigns another object to self
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Image:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -3528,6 +3692,11 @@ class Image(BasicImage):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Image:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -3909,6 +4078,14 @@ class ImageDataMapping:
|
|||
@brief Create a new data mapping object with default settings
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> ImageDataMapping:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -3944,6 +4121,11 @@ class ImageDataMapping:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> ImageDataMapping:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -4154,6 +4336,14 @@ class KeyCode:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> KeyCode:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -4189,6 +4379,11 @@ class KeyCode:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> KeyCode:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -4585,6 +4780,14 @@ class LayerProperties:
|
|||
@param other The other object to compare against
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> LayerProperties:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -4620,6 +4823,11 @@ class LayerProperties:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> LayerProperties:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -5111,6 +5319,14 @@ class LayerPropertiesIterator:
|
|||
@param other The other object to compare against
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> LayerPropertiesIterator:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -5146,6 +5362,11 @@ class LayerPropertiesIterator:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> LayerPropertiesIterator:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -5355,6 +5576,14 @@ class LayerPropertiesNode(LayerProperties):
|
|||
@brief Assigns another object to self
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> LayerPropertiesNode:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -5395,6 +5624,11 @@ class LayerPropertiesNode(LayerProperties):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> LayerPropertiesNode:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -5522,6 +5756,14 @@ class LayerPropertiesNodeRef(LayerPropertiesNode):
|
|||
@brief Assigns another object to self
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> LayerPropertiesNodeRef:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -5562,6 +5804,11 @@ class LayerPropertiesNodeRef(LayerPropertiesNode):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> LayerPropertiesNodeRef:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -5678,6 +5925,14 @@ class LayoutView(LayoutViewBase):
|
|||
It has been enhanced with the arguments in version 0.27.
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> LayoutView:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -5713,6 +5968,11 @@ class LayoutView(LayoutViewBase):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> LayoutView:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -6428,6 +6688,14 @@ class LayoutViewBase:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> LayoutViewBase:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -6463,6 +6731,11 @@ class LayoutViewBase:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> LayoutViewBase:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -8760,6 +9033,14 @@ class Macro:
|
|||
This constructor has been introduced in version 0.27.5.
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Macro:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -8795,6 +9076,11 @@ class Macro:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Macro:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -8933,6 +9219,14 @@ class MacroExecutionContext:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> MacroExecutionContext:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -8968,6 +9262,11 @@ class MacroExecutionContext:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> MacroExecutionContext:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -9200,6 +9499,14 @@ class MacroInterpreter:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> MacroInterpreter:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -9235,6 +9542,11 @@ class MacroInterpreter:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> MacroInterpreter:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -9438,6 +9750,14 @@ class Marker:
|
|||
The 'view' argument is optional since version 0.29.3.
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Marker:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -9473,6 +9793,11 @@ class Marker:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Marker:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -9797,6 +10122,14 @@ class ObjectInstPath:
|
|||
This method has been introduced with version 0.24.
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> ObjectInstPath:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -9832,6 +10165,11 @@ class ObjectInstPath:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> ObjectInstPath:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -10105,6 +10443,14 @@ class PixelBuffer:
|
|||
@brief Returns a value indicating whether self is not identical to the other image
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> PixelBuffer:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -10140,6 +10486,11 @@ class PixelBuffer:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> PixelBuffer:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -10262,6 +10613,14 @@ class Plugin:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Plugin:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -10297,6 +10656,11 @@ class Plugin:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Plugin:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -10450,6 +10814,14 @@ class PluginFactory:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> PluginFactory:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -10485,6 +10857,11 @@ class PluginFactory:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> PluginFactory:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
|
|||
|
|
@ -29,6 +29,14 @@ class RdbCategory:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> RdbCategory:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -64,6 +72,11 @@ class RdbCategory:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> RdbCategory:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -270,6 +283,14 @@ class RdbCell:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> RdbCell:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -305,6 +326,11 @@ class RdbCell:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> RdbCell:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -515,6 +541,14 @@ class RdbItem:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> RdbItem:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -550,6 +584,11 @@ class RdbItem:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> RdbItem:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -910,6 +949,14 @@ class RdbItemValue:
|
|||
@return The string
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> RdbItemValue:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -945,6 +992,11 @@ class RdbItemValue:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> RdbItemValue:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1140,6 +1192,14 @@ class RdbReference:
|
|||
@brief Creates a reference with a given transformation and parent cell ID
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> RdbReference:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1175,6 +1235,11 @@ class RdbReference:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> RdbReference:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1313,6 +1378,14 @@ class ReportDatabase:
|
|||
The name of the database will be used in the user interface to refer to a certain database.
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> ReportDatabase:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1348,6 +1421,11 @@ class ReportDatabase:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> ReportDatabase:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
|
|||
|
|
@ -106,6 +106,14 @@ class AbsoluteProgress(Progress):
|
|||
The yield interval specifies, how often the event loop will be triggered. When the yield interval is 10 for example, the event loop will be executed every tenth call of \inc or \set.
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> AbsoluteProgress:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -141,6 +149,11 @@ class AbsoluteProgress(Progress):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> AbsoluteProgress:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -205,6 +218,14 @@ class AbstractProgress(Progress):
|
|||
@brief Creates an abstract progress reporter with the given description
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> AbstractProgress:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -240,6 +261,11 @@ class AbstractProgress(Progress):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> AbstractProgress:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -371,6 +397,14 @@ class ArgType:
|
|||
@brief Convert to a string
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> ArgType:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -406,6 +440,11 @@ class ArgType:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> ArgType:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -556,6 +595,14 @@ class Class:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Class:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -591,6 +638,11 @@ class Class:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Class:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -712,6 +764,14 @@ class EmptyClass:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> EmptyClass:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -747,6 +807,11 @@ class EmptyClass:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> EmptyClass:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -808,6 +873,14 @@ class Executable(ExecutableBase):
|
|||
@brief Assigns another object to self
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Executable:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -848,6 +921,11 @@ class Executable(ExecutableBase):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Executable:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -884,6 +962,14 @@ class ExecutableBase:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> ExecutableBase:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -919,6 +1005,11 @@ class ExecutableBase:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> ExecutableBase:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1025,6 +1116,14 @@ class Expression(ExpressionContext):
|
|||
This version of the constructor takes a hash of variables available to the expressions.
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Expression:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1065,6 +1164,11 @@ class Expression(ExpressionContext):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Expression:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1115,6 +1219,14 @@ class ExpressionContext:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> ExpressionContext:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1150,6 +1262,11 @@ class ExpressionContext:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> ExpressionContext:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1252,6 +1369,14 @@ class GlobPattern:
|
|||
@brief Creates a new glob pattern match object
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> GlobPattern:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1287,6 +1412,11 @@ class GlobPattern:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> GlobPattern:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1382,6 +1512,14 @@ class Interpreter:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Interpreter:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1417,6 +1555,11 @@ class Interpreter:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Interpreter:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1552,6 +1695,14 @@ class Logger:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Logger:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1587,6 +1738,11 @@ class Logger:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Logger:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1675,6 +1831,14 @@ class Method:
|
|||
This method has been introduced in version 0.29.
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Method:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1710,6 +1874,11 @@ class Method:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Method:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -1881,6 +2050,14 @@ class MethodOverload:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> MethodOverload:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -1916,6 +2093,11 @@ class MethodOverload:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> MethodOverload:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2027,6 +2209,14 @@ class Progress:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Progress:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2062,6 +2252,11 @@ class Progress:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Progress:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2124,6 +2319,14 @@ class PythonFunction:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> PythonFunction:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2159,6 +2362,11 @@ class PythonFunction:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> PythonFunction:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2251,6 +2459,14 @@ class PythonGetterSetterPair:
|
|||
@brief Creates a new object of this class
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> PythonGetterSetterPair:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2286,6 +2502,11 @@ class PythonGetterSetterPair:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> PythonGetterSetterPair:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2382,6 +2603,14 @@ class Recipe:
|
|||
@brief Creates a new recipe object with the given name and (optional) description
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Recipe:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2417,6 +2646,11 @@ class Recipe:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Recipe:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2560,6 +2794,14 @@ class RelativeProgress(Progress):
|
|||
The yield interval specifies, how often the event loop will be triggered. When the yield interval is 10 for example, the event loop will be executed every tenth call of \inc or \set.
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> RelativeProgress:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2595,6 +2837,11 @@ class RelativeProgress(Progress):
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> RelativeProgress:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2685,6 +2932,14 @@ class Timer:
|
|||
@brief Produces a string with the currently elapsed times
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Timer:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2720,6 +2975,11 @@ class Timer:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Timer:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
@ -2860,6 +3120,14 @@ class Value:
|
|||
@brief Convert this object to a string
|
||||
"""
|
||||
...
|
||||
def _const_cast(self) -> Value:
|
||||
r"""
|
||||
@brief Returns a non-const reference to self.
|
||||
Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects.
|
||||
|
||||
This method has been introduced in version 0.29.6.
|
||||
"""
|
||||
...
|
||||
def _create(self) -> None:
|
||||
r"""
|
||||
@brief Ensures the C++ object is created
|
||||
|
|
@ -2895,6 +3163,11 @@ class Value:
|
|||
Usually it's not required to call this method. It has been introduced in version 0.24.
|
||||
"""
|
||||
...
|
||||
def _to_const_object(self) -> Value:
|
||||
r"""
|
||||
@hide
|
||||
"""
|
||||
...
|
||||
def _unmanage(self) -> None:
|
||||
r"""
|
||||
@brief Marks the object as no longer owned by the script side.
|
||||
|
|
|
|||
Loading…
Reference in New Issue