pub unsafe extern "C" fn uiTableOnRowDoubleClicked(
t: *mut uiTable,
f: Option<unsafe extern "C" fn(t: *mut uiTable, row: c_int, data: *mut c_void)>,
data: *mut c_void,
)
Expand description
Registers a callback for when the user double clicks a table row.
@param t uiTable instance. @param f Callback function.\n @p sender Back reference to the instance that triggered the callback.\n @p row Row index that was double clicked.\n @p senderData User data registered with the sender instance. @param data User data to be passed to the callback.
@note The double click callback is always preceded by one uiTableOnRowClicked() callback.
@bug For unix systems linking against GTK < 3.14
the preceding uiTableOnRowClicked()
callback will be triggered twice.
@note Only one callback can be registered at a time.
@memberof uiTable