方法

GioSettingslist_children

声明 [src]

gchar**
g_settings_list_children (
  GSettings* settings
)

描述 [src]

获取 settings 上的子项列表。

列表正是 those whose calling g_settings_get_child() 是安全的字符串列表。

由于你应该已经知道你的模式中的子项,因此没有理由从“正常”代码中调用此函数。但是,出于内省的原因,该函数仍然可能有用。

使用完返回值后,您应该使用 g_strfreev() 释放它。

返回值

类型: 一个系列 utf8

在没有任何定义的顺序上 settings 上的子项列表。

该数组以 NULL 终止。
方法的调用者负责返回的数据的所有权,并将其释放。
每个元素都是 NUL 终止的 UTF-8 字符串。