gboolean e_bit_array_value_at (EBitArray *bit_array,gint n);
This routine calculates whether the given row is selected.
void e_bit_array_foreach (EBitArray *bit_array,EForeachFunc callback,gpointer closure);
This routine calls the given callback function once for each selected row, passing closure as the closure.
bit_array |
EBitArray to traverse |
|
callback |
The callback function to call back. |
|
closure |
The closure |
gint
e_bit_array_selected_count (EBitArray *bit_array);
This routine calculates the number of rows selected.
void
e_bit_array_select_all (EBitArray *bit_array);
This routine selects all the rows in the given EBitArray.
void e_bit_array_change_one_row (EBitArray *bit_array,gint row,gboolean grow);
void e_bit_array_change_range (EBitArray *bit_array,gint start,gint end,gboolean grow);
void e_bit_array_select_single_row (EBitArray *bit_array,gint row);
void e_bit_array_toggle_single_row (EBitArray *bit_array,gint row);