123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560 |
- :github_url: hide
- .. DO NOT EDIT THIS FILE!!!
- .. Generated automatically from Godot engine sources.
- .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
- .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/UndoRedo.xml.
- .. _class_UndoRedo:
- UndoRedo
- ========
- **Inherits:** :ref:`Object<class_Object>`
- Provides a high-level interface for implementing undo and redo operations.
- .. rst-class:: classref-introduction-group
- Description
- -----------
- UndoRedo works by registering methods and property changes inside "actions". You can create an action, then provide ways to do and undo this action using function calls and property changes, then commit the action.
- When an action is committed, all of the ``do_*`` methods will run. If the :ref:`undo<class_UndoRedo_method_undo>` method is used, the ``undo_*`` methods will run. If the :ref:`redo<class_UndoRedo_method_redo>` method is used, once again, all of the ``do_*`` methods will run.
- Here's an example on how to add an action:
- .. tabs::
- .. code-tab:: gdscript
- var undo_redo = UndoRedo.new()
-
- func do_something():
- pass # Put your code here.
-
- func undo_something():
- pass # Put here the code that reverts what's done by "do_something()".
-
- func _on_my_button_pressed():
- var node = get_node("MyNode2D")
- undo_redo.create_action("Move the node")
- undo_redo.add_do_method(do_something)
- undo_redo.add_undo_method(undo_something)
- undo_redo.add_do_property(node, "position", Vector2(100,100))
- undo_redo.add_undo_property(node, "position", node.position)
- undo_redo.commit_action()
- .. code-tab:: csharp
- private UndoRedo _undoRedo;
-
- public override void _Ready()
- {
- _undoRedo = new UndoRedo();
- }
-
- public void DoSomething()
- {
- // Put your code here.
- }
-
- public void UndoSomething()
- {
- // Put here the code that reverts what's done by "DoSomething()".
- }
-
- private void OnMyButtonPressed()
- {
- var node = GetNode<Node2D>("MyNode2D");
- _undoRedo.CreateAction("Move the node");
- _undoRedo.AddDoMethod(new Callable(this, MethodName.DoSomething));
- _undoRedo.AddUndoMethod(new Callable(this, MethodName.UndoSomething));
- _undoRedo.AddDoProperty(node, "position", new Vector2(100, 100));
- _undoRedo.AddUndoProperty(node, "position", node.Position);
- _undoRedo.CommitAction();
- }
- Before calling any of the ``add_(un)do_*`` methods, you need to first call :ref:`create_action<class_UndoRedo_method_create_action>`. Afterwards you need to call :ref:`commit_action<class_UndoRedo_method_commit_action>`.
- If you don't need to register a method, you can leave :ref:`add_do_method<class_UndoRedo_method_add_do_method>` and :ref:`add_undo_method<class_UndoRedo_method_add_undo_method>` out; the same goes for properties. You can also register more than one method/property.
- If you are making an :ref:`EditorPlugin<class_EditorPlugin>` and want to integrate into the editor's undo history, use :ref:`EditorUndoRedoManager<class_EditorUndoRedoManager>` instead.
- If you are registering multiple properties/method which depend on one another, be aware that by default undo operation are called in the same order they have been added. Therefore instead of grouping do operation with their undo operations it is better to group do on one side and undo on the other as shown below.
- .. tabs::
- .. code-tab:: gdscript
- undo_redo.create_action("Add object")
-
- # DO
- undo_redo.add_do_method(_create_object)
- undo_redo.add_do_method(_add_object_to_singleton)
-
- # UNDO
- undo_redo.add_undo_method(_remove_object_from_singleton)
- undo_redo.add_undo_method(_destroy_that_object)
-
- undo_redo.commit_action()
- .. code-tab:: csharp
- _undo_redo.CreateAction("Add object");
-
- // DO
- _undo_redo.AddDoMethod(new Callable(this, MethodName.CreateObject));
- _undo_redo.AddDoMethod(new Callable(this, MethodName.AddObjectToSingleton));
-
- // UNDO
- _undo_redo.AddUndoMethod(new Callable(this, MethodName.RemoveObjectFromSingleton));
- _undo_redo.AddUndoMethod(new Callable(this, MethodName.DestroyThatObject));
-
- _undo_redo.CommitAction();
- .. rst-class:: classref-reftable-group
- Properties
- ----------
- .. table::
- :widths: auto
- +-----------------------+-----------------------------------------------------+-------+
- | :ref:`int<class_int>` | :ref:`max_steps<class_UndoRedo_property_max_steps>` | ``0`` |
- +-----------------------+-----------------------------------------------------+-------+
- .. rst-class:: classref-reftable-group
- Methods
- -------
- .. table::
- :widths: auto
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`add_do_method<class_UndoRedo_method_add_do_method>`\ (\ callable\: :ref:`Callable<class_Callable>`\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`add_do_property<class_UndoRedo_method_add_do_property>`\ (\ object\: :ref:`Object<class_Object>`, property\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`add_do_reference<class_UndoRedo_method_add_do_reference>`\ (\ object\: :ref:`Object<class_Object>`\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`add_undo_method<class_UndoRedo_method_add_undo_method>`\ (\ callable\: :ref:`Callable<class_Callable>`\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`add_undo_property<class_UndoRedo_method_add_undo_property>`\ (\ object\: :ref:`Object<class_Object>`, property\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`add_undo_reference<class_UndoRedo_method_add_undo_reference>`\ (\ object\: :ref:`Object<class_Object>`\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`clear_history<class_UndoRedo_method_clear_history>`\ (\ increase_version\: :ref:`bool<class_bool>` = true\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`commit_action<class_UndoRedo_method_commit_action>`\ (\ execute\: :ref:`bool<class_bool>` = true\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`create_action<class_UndoRedo_method_create_action>`\ (\ name\: :ref:`String<class_String>`, merge_mode\: :ref:`MergeMode<enum_UndoRedo_MergeMode>` = 0, backward_undo_ops\: :ref:`bool<class_bool>` = false\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`end_force_keep_in_merge_ends<class_UndoRedo_method_end_force_keep_in_merge_ends>`\ (\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`get_action_name<class_UndoRedo_method_get_action_name>`\ (\ id\: :ref:`int<class_int>`\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_current_action<class_UndoRedo_method_get_current_action>`\ (\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`get_current_action_name<class_UndoRedo_method_get_current_action_name>`\ (\ ) |const| |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_history_count<class_UndoRedo_method_get_history_count>`\ (\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`int<class_int>` | :ref:`get_version<class_UndoRedo_method_get_version>`\ (\ ) |const| |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`has_redo<class_UndoRedo_method_has_redo>`\ (\ ) |const| |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`has_undo<class_UndoRedo_method_has_undo>`\ (\ ) |const| |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_committing_action<class_UndoRedo_method_is_committing_action>`\ (\ ) |const| |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`redo<class_UndoRedo_method_redo>`\ (\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | |void| | :ref:`start_force_keep_in_merge_ends<class_UndoRedo_method_start_force_keep_in_merge_ends>`\ (\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`undo<class_UndoRedo_method_undo>`\ (\ ) |
- +-----------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Signals
- -------
- .. _class_UndoRedo_signal_version_changed:
- .. rst-class:: classref-signal
- **version_changed**\ (\ ) :ref:`🔗<class_UndoRedo_signal_version_changed>`
- Called when :ref:`undo<class_UndoRedo_method_undo>` or :ref:`redo<class_UndoRedo_method_redo>` was called.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Enumerations
- ------------
- .. _enum_UndoRedo_MergeMode:
- .. rst-class:: classref-enumeration
- enum **MergeMode**: :ref:`🔗<enum_UndoRedo_MergeMode>`
- .. _class_UndoRedo_constant_MERGE_DISABLE:
- .. rst-class:: classref-enumeration-constant
- :ref:`MergeMode<enum_UndoRedo_MergeMode>` **MERGE_DISABLE** = ``0``
- Makes "do"/"undo" operations stay in separate actions.
- .. _class_UndoRedo_constant_MERGE_ENDS:
- .. rst-class:: classref-enumeration-constant
- :ref:`MergeMode<enum_UndoRedo_MergeMode>` **MERGE_ENDS** = ``1``
- Merges this action with the previous one if they have the same name. Keeps only the first action's "undo" operations and the last action's "do" operations. Useful for sequential changes to a single value.
- .. _class_UndoRedo_constant_MERGE_ALL:
- .. rst-class:: classref-enumeration-constant
- :ref:`MergeMode<enum_UndoRedo_MergeMode>` **MERGE_ALL** = ``2``
- Merges this action with the previous one if they have the same name.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Property Descriptions
- ---------------------
- .. _class_UndoRedo_property_max_steps:
- .. rst-class:: classref-property
- :ref:`int<class_int>` **max_steps** = ``0`` :ref:`🔗<class_UndoRedo_property_max_steps>`
- .. rst-class:: classref-property-setget
- - |void| **set_max_steps**\ (\ value\: :ref:`int<class_int>`\ )
- - :ref:`int<class_int>` **get_max_steps**\ (\ )
- The maximum number of steps that can be stored in the undo/redo history. If the number of stored steps exceeds this limit, older steps are removed from history and can no longer be reached by calling :ref:`undo<class_UndoRedo_method_undo>`. A value of ``0`` or lower means no limit.
- .. rst-class:: classref-section-separator
- ----
- .. rst-class:: classref-descriptions-group
- Method Descriptions
- -------------------
- .. _class_UndoRedo_method_add_do_method:
- .. rst-class:: classref-method
- |void| **add_do_method**\ (\ callable\: :ref:`Callable<class_Callable>`\ ) :ref:`🔗<class_UndoRedo_method_add_do_method>`
- Register a :ref:`Callable<class_Callable>` that will be called when the action is committed.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_add_do_property:
- .. rst-class:: classref-method
- |void| **add_do_property**\ (\ object\: :ref:`Object<class_Object>`, property\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_UndoRedo_method_add_do_property>`
- Register a ``property`` that would change its value to ``value`` when the action is committed.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_add_do_reference:
- .. rst-class:: classref-method
- |void| **add_do_reference**\ (\ object\: :ref:`Object<class_Object>`\ ) :ref:`🔗<class_UndoRedo_method_add_do_reference>`
- Register a reference to an object that will be erased if the "do" history is deleted. This is useful for objects added by the "do" action and removed by the "undo" action.
- When the "do" history is deleted, if the object is a :ref:`RefCounted<class_RefCounted>`, it will be unreferenced. Otherwise, it will be freed. Do not use for resources.
- ::
- var node = Node2D.new()
- undo_redo.create_action("Add node")
- undo_redo.add_do_method(add_child.bind(node))
- undo_redo.add_do_reference(node)
- undo_redo.add_undo_method(remove_child.bind(node))
- undo_redo.commit_action()
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_add_undo_method:
- .. rst-class:: classref-method
- |void| **add_undo_method**\ (\ callable\: :ref:`Callable<class_Callable>`\ ) :ref:`🔗<class_UndoRedo_method_add_undo_method>`
- Register a :ref:`Callable<class_Callable>` that will be called when the action is undone.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_add_undo_property:
- .. rst-class:: classref-method
- |void| **add_undo_property**\ (\ object\: :ref:`Object<class_Object>`, property\: :ref:`StringName<class_StringName>`, value\: :ref:`Variant<class_Variant>`\ ) :ref:`🔗<class_UndoRedo_method_add_undo_property>`
- Register a ``property`` that would change its value to ``value`` when the action is undone.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_add_undo_reference:
- .. rst-class:: classref-method
- |void| **add_undo_reference**\ (\ object\: :ref:`Object<class_Object>`\ ) :ref:`🔗<class_UndoRedo_method_add_undo_reference>`
- Register a reference to an object that will be erased if the "undo" history is deleted. This is useful for objects added by the "undo" action and removed by the "do" action.
- When the "undo" history is deleted, if the object is a :ref:`RefCounted<class_RefCounted>`, it will be unreferenced. Otherwise, it will be freed. Do not use for resources.
- ::
- var node = $Node2D
- undo_redo.create_action("Remove node")
- undo_redo.add_do_method(remove_child.bind(node))
- undo_redo.add_undo_method(add_child.bind(node))
- undo_redo.add_undo_reference(node)
- undo_redo.commit_action()
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_clear_history:
- .. rst-class:: classref-method
- |void| **clear_history**\ (\ increase_version\: :ref:`bool<class_bool>` = true\ ) :ref:`🔗<class_UndoRedo_method_clear_history>`
- Clear the undo/redo history and associated references.
- Passing ``false`` to ``increase_version`` will prevent the version number from increasing when the history is cleared.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_commit_action:
- .. rst-class:: classref-method
- |void| **commit_action**\ (\ execute\: :ref:`bool<class_bool>` = true\ ) :ref:`🔗<class_UndoRedo_method_commit_action>`
- Commit the action. If ``execute`` is ``true`` (which it is by default), all "do" methods/properties are called/set when this function is called.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_create_action:
- .. rst-class:: classref-method
- |void| **create_action**\ (\ name\: :ref:`String<class_String>`, merge_mode\: :ref:`MergeMode<enum_UndoRedo_MergeMode>` = 0, backward_undo_ops\: :ref:`bool<class_bool>` = false\ ) :ref:`🔗<class_UndoRedo_method_create_action>`
- Create a new action. After this is called, do all your calls to :ref:`add_do_method<class_UndoRedo_method_add_do_method>`, :ref:`add_undo_method<class_UndoRedo_method_add_undo_method>`, :ref:`add_do_property<class_UndoRedo_method_add_do_property>`, and :ref:`add_undo_property<class_UndoRedo_method_add_undo_property>`, then commit the action with :ref:`commit_action<class_UndoRedo_method_commit_action>`.
- The way actions are merged is dictated by ``merge_mode``. See :ref:`MergeMode<enum_UndoRedo_MergeMode>` for details.
- The way undo operation are ordered in actions is dictated by ``backward_undo_ops``. When ``backward_undo_ops`` is ``false`` undo option are ordered in the same order they were added. Which means the first operation to be added will be the first to be undone.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_end_force_keep_in_merge_ends:
- .. rst-class:: classref-method
- |void| **end_force_keep_in_merge_ends**\ (\ ) :ref:`🔗<class_UndoRedo_method_end_force_keep_in_merge_ends>`
- Stops marking operations as to be processed even if the action gets merged with another in the :ref:`MERGE_ENDS<class_UndoRedo_constant_MERGE_ENDS>` mode. See :ref:`start_force_keep_in_merge_ends<class_UndoRedo_method_start_force_keep_in_merge_ends>`.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_get_action_name:
- .. rst-class:: classref-method
- :ref:`String<class_String>` **get_action_name**\ (\ id\: :ref:`int<class_int>`\ ) :ref:`🔗<class_UndoRedo_method_get_action_name>`
- Gets the action name from its index.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_get_current_action:
- .. rst-class:: classref-method
- :ref:`int<class_int>` **get_current_action**\ (\ ) :ref:`🔗<class_UndoRedo_method_get_current_action>`
- Gets the index of the current action.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_get_current_action_name:
- .. rst-class:: classref-method
- :ref:`String<class_String>` **get_current_action_name**\ (\ ) |const| :ref:`🔗<class_UndoRedo_method_get_current_action_name>`
- Gets the name of the current action, equivalent to ``get_action_name(get_current_action())``.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_get_history_count:
- .. rst-class:: classref-method
- :ref:`int<class_int>` **get_history_count**\ (\ ) :ref:`🔗<class_UndoRedo_method_get_history_count>`
- Returns how many elements are in the history.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_get_version:
- .. rst-class:: classref-method
- :ref:`int<class_int>` **get_version**\ (\ ) |const| :ref:`🔗<class_UndoRedo_method_get_version>`
- Gets the version. Every time a new action is committed, the **UndoRedo**'s version number is increased automatically.
- This is useful mostly to check if something changed from a saved version.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_has_redo:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **has_redo**\ (\ ) |const| :ref:`🔗<class_UndoRedo_method_has_redo>`
- Returns ``true`` if a "redo" action is available.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_has_undo:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **has_undo**\ (\ ) |const| :ref:`🔗<class_UndoRedo_method_has_undo>`
- Returns ``true`` if an "undo" action is available.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_is_committing_action:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **is_committing_action**\ (\ ) |const| :ref:`🔗<class_UndoRedo_method_is_committing_action>`
- Returns ``true`` if the **UndoRedo** is currently committing the action, i.e. running its "do" method or property change (see :ref:`commit_action<class_UndoRedo_method_commit_action>`).
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_redo:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **redo**\ (\ ) :ref:`🔗<class_UndoRedo_method_redo>`
- Redo the last action.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_start_force_keep_in_merge_ends:
- .. rst-class:: classref-method
- |void| **start_force_keep_in_merge_ends**\ (\ ) :ref:`🔗<class_UndoRedo_method_start_force_keep_in_merge_ends>`
- Marks the next "do" and "undo" operations to be processed even if the action gets merged with another in the :ref:`MERGE_ENDS<class_UndoRedo_constant_MERGE_ENDS>` mode. Return to normal operation using :ref:`end_force_keep_in_merge_ends<class_UndoRedo_method_end_force_keep_in_merge_ends>`.
- .. rst-class:: classref-item-separator
- ----
- .. _class_UndoRedo_method_undo:
- .. rst-class:: classref-method
- :ref:`bool<class_bool>` **undo**\ (\ ) :ref:`🔗<class_UndoRedo_method_undo>`
- Undo the last action.
- .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
- .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
- .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
- .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
- .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
- .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
- .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
- .. |void| replace:: :abbr:`void (No return value.)`
|