Sets our main struct and passes it to the parent class.
Creates a new glib.PtrArray with a reference count of 1.
Creates a new glib.PtrArray with reserved_size pointers preallocated and a reference count of 1. This avoids frequent reallocation, if you are going to add many pointers to the array. Note however that the size of the array is still 0. It also set element_free_func for freeing each element when the array is destroyed either via PtrArray.unref, when PtrArray.free is called with free_segment set to TRUE or when removing elements.
Creates a new glib.PtrArray with a reference count of 1 and use element_free_func for freeing each element when the array is destroyed either via PtrArray.unref, when PtrArray.free is called with free_segment set to TRUE or when removing elements.
Adds a pointer to the end of the pointer array. The array will grow in size automatically if necessary.
Makes a full (deep) copy of a glib.PtrArray
Adds all pointers of array to the end of the array array_to_extend. The array will grow in size automatically if needed. array_to_extend is modified in-place.
Adds all the pointers in array to the end of array_to_extend, transferring ownership of each element from array to array_to_extend and modifying array_to_extend in-place. array is then freed.
Checks whether needle exists in haystack. If the element is found, TRUE is returned and the element’s index is returned in index_ (if non-NULL). Otherwise, FALSE is returned and index_ is undefined. If needle exists multiple times in haystack, the index of the first instance is returned.
Checks whether needle exists in haystack, using the given equal_func. If the element is found, TRUE is returned and the element’s index is returned in index_ (if non-NULL). Otherwise, FALSE is returned and index_ is undefined. If needle exists multiple times in haystack, the index of the first instance is returned.
Calls a function for each element of a glib.PtrArray func must not add elements to or remove elements from the array.
Frees the memory allocated for the glib.PtrArray If free_seg is TRUE it frees the memory block holding the elements as well. Pass FALSE if you want to free the glib.PtrArray wrapper but preserve the underlying array for use elsewhere. If the reference count of array is greater than one, the glib.PtrArray wrapper is preserved but the size of array will be set to zero.
Get the main Gtk struct
the main Gtk struct as a void*
Returns the pointer at the given index of the pointer array.
Inserts an element into the pointer array at the given index. The array will grow in size automatically if necessary.
Number of pointers in the array
Atomically increments the reference count of array by one. This function is thread-safe and may be called from any thread.
Removes the first occurrence of the given pointer from the pointer array. The following elements are moved down one place. If array has a non-NULL GDestroyNotify function it is called for the removed element.
Removes the first occurrence of the given pointer from the pointer array. The last element in the array is used to fill in the space, so this function does not preserve the order of the array. But it is faster than PtrArray.remove. If array has a non-NULL GDestroyNotify function it is called for the removed element.
Removes the pointer at the given index from the pointer array. The following elements are moved down one place. If array has a non-NULL GDestroyNotify function it is called for the removed element. If so, the return value from this function will potentially point to freed memory (depending on the GDestroyNotify implementation).
Removes the pointer at the given index from the pointer array. The last element in the array is used to fill in the space, so this function does not preserve the order of the array. But it is faster than PtrArray.removeIndex. If array has a non-NULL GDestroyNotify function it is called for the removed element. If so, the return value from this function will potentially point to freed memory (depending on the GDestroyNotify implementation).
Removes the given number of pointers starting at the given index from a glib.PtrArray The following elements are moved to close the gap. If array has a non-NULL GDestroyNotify function it is called for the removed elements.
Sets a function for freeing each element when array is destroyed either via PtrArray.unref, when PtrArray.free is called with free_segment set to TRUE or when removing elements.
Sets the size of the array. When making the array larger, newly-added elements will be set to NULL. When making it smaller, if array has a non-NULL GDestroyNotify function then it will be called for the removed elements.
Sorts the array, using compare_func which should be a qsort()-style comparison function (returns less than zero for first arg is less than second arg, zero for equal, greater than zero if irst arg is greater than second arg).
Like PtrArray.sort, but the comparison function has an extra user data argument.
Frees the data in the array and resets the size to zero, while the underlying array is preserved for use elsewhere and returned to the caller.
Removes the pointer at the given index from the pointer array. The following elements are moved down one place. The GDestroyNotify for array is *not* called on the removed element; ownership is transferred to the caller of this function.
Removes the pointer at the given index from the pointer array. The last element in the array is used to fill in the space, so this function does not preserve the order of the array. But it is faster than PtrArray.stealIndex. The GDestroyNotify for array is *not* called on the removed element; ownership is transferred to the caller of this function.
Atomically decrements the reference count of array by one. If the reference count drops to 0, the effect is the same as calling PtrArray.free with free_segment set to TRUE. This function is thread-safe and may be called from any thread.
Creates a new glib.PtrArray with reserved_size pointers preallocated and a reference count of 1. This avoids frequent reallocation, if you are going to add many pointers to the array. Note however that the size of the array is still 0.
the main Gtk struct
Contains the public fields of a pointer array.