方法

GtkTreeSortableset_sort_func

已弃用:4.10 

声明 [src]

void
gtk_tree_sortable_set_sort_func (
  GtkTreeSortable* sortable,
  int sort_column_id,
  GtkTreeIterCompareFunc sort_func,
  gpointer user_data,
  GDestroyNotify destroy
)

描述 [src]

设置排序时使用的比较函数为sort_func。如果sortable的当前排序列ID与sort_column_id相同,则模型将使用此函数进行排序。

自4.10版本起已弃用

请勿在新编写的代码中使用它。

参数

sort_column_id

类型: int

设置函数的排序列ID。

sort_func

类型: GtkTreeIterCompareFunc

比较函数。

user_data

类型: gpointer

传递给sort_func的用户数据。

此参数可以为NULL
数据由方法调用者拥有。
destroy

类型: GDestroyNotify

user_data的销毁通知器。

此参数可以为NULL