2020-08-12 13:49:10 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "TextServerManager" inherits= "Object" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2020-08-12 13:49:10 +02:00
<brief_description >
Manager for the font and complex text layout servers.
</brief_description>
<description >
[TextServerManager] is the API backend for loading, enumeration and switching [TextServer]s.
2021-10-05 14:24:34 +02:00
[b]Note:[/b] Switching text server at runtime is possible, but will invalidate all fonts and text buffers. Make sure to unload all controls, fonts, and themes before doing so.
2020-08-12 13:49:10 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2021-08-27 23:19:51 +02:00
<method name= "add_interface" >
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "interface" type= "TextServer" />
2021-08-27 23:19:51 +02:00
<description >
Registers an [TextServer] interface.
</description>
</method>
2020-08-12 13:49:10 +02:00
<method name= "find_interface" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "TextServer" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "String" />
2020-08-12 13:49:10 +02:00
<description >
Finds an interface by its name.
</description>
</method>
<method name= "get_interface" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "TextServer" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "idx" type= "int" />
2020-08-12 13:49:10 +02:00
<description >
Returns the interface registered at a given index.
</description>
</method>
<method name= "get_interface_count" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2020-08-12 13:49:10 +02:00
<description >
Returns the number of interfaces currently registered.
</description>
</method>
<method name= "get_interfaces" qualifiers= "const" >
2022-08-08 00:52:20 +02:00
<return type= "Dictionary[]" />
2020-08-12 13:49:10 +02:00
<description >
Returns a list of available interfaces the index and name of each interface.
</description>
</method>
<method name= "get_primary_interface" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "TextServer" />
2020-08-12 13:49:10 +02:00
<description >
2021-08-27 23:19:51 +02:00
Returns the primary [TextServer] interface currently in use.
</description>
</method>
<method name= "remove_interface" >
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "interface" type= "TextServer" />
2021-08-27 23:19:51 +02:00
<description >
Removes interface. All fonts and shaped text caches should be freed before removing interface.
2020-08-12 13:49:10 +02:00
</description>
</method>
<method name= "set_primary_interface" >
2021-08-27 23:19:51 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "index" type= "TextServer" />
2020-08-12 13:49:10 +02:00
<description >
2021-08-27 23:19:51 +02:00
Sets the primary [TextServer] interface.
2020-08-12 13:49:10 +02:00
</description>
</method>
</methods>
2021-08-27 23:19:51 +02:00
<signals >
<signal name= "interface_added" >
2022-08-06 20:11:48 +02:00
<param index= "0" name= "interface_name" type= "StringName" />
2021-08-27 23:19:51 +02:00
<description >
Emitted when a new interface has been added.
</description>
</signal>
<signal name= "interface_removed" >
2022-08-06 20:11:48 +02:00
<param index= "0" name= "interface_name" type= "StringName" />
2021-08-27 23:19:51 +02:00
<description >
Emitted when an interface is removed.
</description>
</signal>
</signals>
2020-08-12 13:49:10 +02:00
</class>