New upstream version 25.0.8+dfsg1
This commit is contained in:
parent
8b2e5f2130
commit
8e020cdacb
115 changed files with 1767 additions and 10949 deletions
|
|
@ -57,9 +57,9 @@ author = 'Hugh Bailey'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '20.1.0'
|
||||
version = '25.0.0'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '20.1.0'
|
||||
release = '25.0.0'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -71,6 +71,10 @@ General Functions
|
|||
|
||||
---------------------
|
||||
|
||||
.. function:: obs_properties_t *obs_properties_get_parent(obs_properties_t *props)
|
||||
|
||||
---------------------
|
||||
|
||||
|
||||
Property Object Functions
|
||||
-------------------------
|
||||
|
|
@ -276,6 +280,29 @@ Property Object Functions
|
|||
|
||||
---------------------
|
||||
|
||||
.. function:: obs_property_t *obs_properties_add_group(obs_properties_t *props, const char *name, const char *description, enum obs_group_type type, obs_properties_t *group)
|
||||
|
||||
Adds a property group.
|
||||
|
||||
:param name: Setting identifier string
|
||||
:param description: Localized name shown to user
|
||||
:param type: Can be one of the following values:
|
||||
|
||||
- **OBS_GROUP_NORMAL** - A normal group with just a name and content.
|
||||
- **OBS_GROUP_CHECKABLE** - A checkable group with a checkbox, name and content.
|
||||
|
||||
:param group: Group to add
|
||||
|
||||
:return: The property
|
||||
|
||||
Important Related Functions:
|
||||
|
||||
- :c:func:`obs_property_group_type`
|
||||
- :c:func:`obs_property_group_content`
|
||||
- :c:func:`obs_properties_get_parent`
|
||||
|
||||
---------------------
|
||||
|
||||
|
||||
Property Enumeration Functions
|
||||
------------------------------
|
||||
|
|
@ -340,6 +367,7 @@ Property Enumeration Functions
|
|||
- OBS_PROPERTY_FONT
|
||||
- OBS_PROPERTY_EDITABLE_LIST
|
||||
- OBS_PROPERTY_FRAME_RATE
|
||||
- OBS_PROPERTY_GROUP
|
||||
|
||||
---------------------
|
||||
|
||||
|
|
@ -467,6 +495,20 @@ Property Enumeration Functions
|
|||
|
||||
---------------------
|
||||
|
||||
.. function:: enum obs_group_type obs_property_group_type(obs_property_t *p)
|
||||
|
||||
:return: One of the following values:
|
||||
|
||||
- OBS_COMBO_INVALID
|
||||
- OBS_GROUP_NORMAL
|
||||
- OBS_GROUP_CHECKABLE
|
||||
|
||||
---------------------
|
||||
|
||||
.. function:: obs_properties_t *obs_property_group_content(obs_property_t *p)
|
||||
|
||||
---------------------
|
||||
|
||||
|
||||
Property Modification Functions
|
||||
-------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue