未验证 提交 8a89dd7a 编写于 作者: C Colin Edwards 提交者: GitHub

Merge pull request #2723 from exeldro/doc_prop_group

docs/sphinx: Add Property Grouping
...@@ -71,6 +71,10 @@ General Functions ...@@ -71,6 +71,10 @@ General Functions
--------------------- ---------------------
.. function:: obs_properties_t *obs_properties_get_parent(obs_properties_t *props)
---------------------
Property Object Functions Property Object Functions
------------------------- -------------------------
...@@ -276,6 +280,29 @@ 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 Property Enumeration Functions
------------------------------ ------------------------------
...@@ -340,6 +367,7 @@ Property Enumeration Functions ...@@ -340,6 +367,7 @@ Property Enumeration Functions
- OBS_PROPERTY_FONT - OBS_PROPERTY_FONT
- OBS_PROPERTY_EDITABLE_LIST - OBS_PROPERTY_EDITABLE_LIST
- OBS_PROPERTY_FRAME_RATE - OBS_PROPERTY_FRAME_RATE
- OBS_PROPERTY_GROUP
--------------------- ---------------------
...@@ -467,6 +495,20 @@ Property Enumeration Functions ...@@ -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 Property Modification Functions
------------------------------- -------------------------------
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册