方法

GtkComboBoxTextinsert

已弃用:4.10 

声明 [源代码]

void
gtk_combo_box_text_insert (
  GtkComboBoxText* combo_box,
  int position,
  const char* id,
  const char* text
)

描述 [源代码]

在存储在 combo_box 中的字符串列表中插入 textposition 位置。

如果 id 非空,则用作行的 ID。请参阅 GtkComboBox:id-column

如果 position 为负值,则将 text 添加到末尾。

自 4.10 版本起弃用

请使用 GtkDropDown

参数

position

类型: int

用于插入 text 的索引。

id

类型: const char*

该值的字符串 ID。

该参数可以 NULL
数据由方法的调用者拥有。
该值是一个以 NUL 结尾的 UTF-8 字符串。
text

类型: const char*

要显示的字符串。

数据由方法的调用者拥有。
该值是一个以 NUL 结尾的 UTF-8 字符串。