#include "vapiTypes.h"
Diagrama de dependências de inclusão para vapiLists.h:
Este grafo mostra quais são os ficheiros que incluem directamente ou indirectamente este ficheiro:
Ir para o código fonte deste ficheiro.
Estruturas de Dados | |
struct | _vListItem |
Definições de tipos | |
typedef void * | vFreeFunction (vpointer) |
function do free an listitem's data. This is used when we want to delete an item from the list and the data stored also. Specifying this, we can free the data and delete the item in one step. | |
typedef vListItem * | vList |
Defines a List. | |
typedef _vListItem | vListItem |
definition of a list item. | |
Funções | |
void | v_list_append (vList *List, vpointer Data) |
adds an item to the end of the list. | |
int | v_list_count_elements (vList *List) |
count how many elements the list has. | |
void | v_list_delete_item (vList *List, vFreeFunction FreeFunction, int Delete) |
deletes the item | |
void | v_list_free (vList *List, vFreeFunction FreeFunction) |
Frees the entire list. This is called when we want a list to fre totally freed. | |
vpointer | v_list_get (vList *List, int Item) |
gets the data for the item in that position in the list. | |
void | v_list_insert (vList *List, vpointer data, int position) |
Insert an element on the list, in the desired position. | |
void | v_list_move (vList *List, int source, int destination) |
moves an item from one source to a destination | |
vList * | v_list_new () |
creates an empty list |
Definido no ficheiro vapiLists.h.
void * vFreeFunction |
function do free an listitem's data. This is used when we want to delete an item from the list and the data stored also. Specifying this, we can free the data and delete the item in one step.
Definido na linha 33 do ficheiro vapiLists.h.
definition of a list item.
adds an item to the end of the list.
List | The list to append the item | |
Data | The data to store in the item. |
Definido na linha 14 do ficheiro vapiLists.c.
Referências List e v_list_append().
Referenciado por v_bypass_append(), v_list_append(), vapiGroupListAddItem(), vapiGtkMacroItemMoveDown(), vapiGtkMacroItemMoveToBottom(), vapiIOListAddIO(), vapiIOListConfiguredAdd(), vapiMacroAddItem(), vapiMacroListAddItem() e vapiOperationListAddItem().
00015 { 00016 00017 if (*List == NULL) 00018 { 00019 *List = malloc (sizeof (vListItem)); 00020 (*List)->data = data; 00021 (**List).Next = NULL; 00022 } 00023 else 00024 { 00025 00026 v_list_append ((vList *) & (**List).Next, data); 00027 } 00028 00029 }
Grafo de chamadas desta função:
Here is the caller graph for this function:
int v_list_count_elements | ( | vList * | List | ) |
count how many elements the list has.
Definido na linha 46 do ficheiro vapiLists.c.
Referências List e v_list_count_elements_aux().
Referenciado por v_bypass_reload(), v_bypass_search(), v_list_free(), v_list_insert(), v_stopby_set(), vapiGroupListCountElements(), vapiGtkMacroTable(), vapiGtkMacroTableAux(), vapiGtkWindowIOAddInitIOList(), vapiGtkWindowIOAddPopulateGroup(), vapiGtkWindowIOConfiguredList(), vapiIOConfiguredToXML(), vapiIOListAddGroup(), vapiIOListAddIO(), vapiIOListCount(), vapiIOListSelect(), vapiIOListSelectN(), vapiMacroCountElements(), vapiMacroGetMacroIndex(), vapiMacroListCountElements(), vapiOperationListCountElements() e vIOCheckList().
00047 { 00048 if ((*List) == NULL) 00049 { 00050 return 0; 00051 } 00052 return v_list_count_elements_aux (List, 0); 00053 }
Grafo de chamadas desta função:
Here is the caller graph for this function:
void v_list_delete_item | ( | vList * | List, | |
vFreeFunction | FreeFunction, | |||
int | Delete | |||
) |
deletes the item
Delete | the number of the item to delete in the list. | |
FreeFunction | the functions that frees the data. If NULL is passed, the data is not freed. |
Definido na linha 120 do ficheiro vapiLists.c.
Referências List e v_list_delete_item_aux().
Referenciado por v_list_free(), v_list_move(), vapiGtkMacroItemMoveDown(), vapiGtkMacroItemMoveToBottom(), vapiGtkMacroItemMoveToTop(), vapiGtkMacroItemMoveUp(), vapiIOConfiguredDelete(), vapiMacroDeleteItem() e vapiMacroListDeleteItem().
00121 { 00122 v_list_delete_item_aux (List, NULL, FreeFunction, Delete, 0); 00123 }
Grafo de chamadas desta função:
Here is the caller graph for this function:
void v_list_free | ( | vList * | List, | |
vFreeFunction | FreeFunction | |||
) |
Frees the entire list. This is called when we want a list to fre totally freed.
FreeFunction | the functions that frees the data. If NULL is passed, the data is not freed. |
Definido na linha 212 do ficheiro vapiLists.c.
Referências List, v_list_count_elements() e v_list_delete_item().
Referenciado por v_bypass_clean() e vapiMacroDelete().
00213 { 00214 int Count, i; 00215 00216 Count = v_list_count_elements (List); 00217 00218 /* 00219 * Caso existam items, eliminá-los. 00220 */ 00221 if (Count > 0) 00222 { 00223 for (i = Count; i > 0; i--) 00224 { 00225 00226 v_list_delete_item (List, FreeFunction, (i - 1)); 00227 00228 } 00229 } 00230 free(List); 00231 }
Grafo de chamadas desta função:
Here is the caller graph for this function:
gets the data for the item in that position in the list.
Item | the number of the item |
Definido na linha 152 do ficheiro vapiLists.c.
Referências List e v_list_get_aux().
Referenciado por v_bypass_search(), v_input_NULL_boolean(), v_input_str_int(), v_list_move(), v_stopby_set(), vapiGroupListSelectGroup(), vapiGroupListSelectItem(), vapiGtkMacroItemMoveDown(), vapiGtkMacroItemMoveToBottom(), vapiGtkMacroItemMoveToTop(), vapiGtkMacroItemMoveUp(), vapiGtkWindowIOAdd_Add(), vapiGtkWindowIOAddInitIOList(), vapiGtkWindowIOAddPopulateGroup(), vapiGtkWindowIOAddSelectIO(), vapiGtkWindowIOAddShowDescription(), vapiGtkWindowIOConfiguredList(), vapiGtkWindowIOConfiguredSaveChanges(), vapiGtkWindowIOConfiguredSelect(), vapiIOConfiguredToXML(), vapiIOListAddGroup(), vapiIOListSelect(), vapiIOListSelectN(), vapiIOPropertySetChar(), vapiIOPropertySetInt(), vapiMacroGetMacroIndex(), vapiMacroListSelectItem(), vapiMacroSelectItem(), vapiOperationListSelectItem() e vapiOperationListSelectOperation().
00153 { 00154 return (v_list_get_aux (List, Item, 0)); 00155 }
Grafo de chamadas desta função:
Here is the caller graph for this function:
Insert an element on the list, in the desired position.
position | the item will be add in the position |
Definido na linha 192 do ficheiro vapiLists.c.
Referências List, v_list_count_elements() e v_list_insert_aux().
Referenciado por v_list_move(), vapiGtkMacroItemMoveDown(), vapiGtkMacroItemMoveToTop(), vapiGtkMacroItemMoveUp() e vapiMacroAddItemPositioned().
00193 { 00194 int ListSize; 00195 00196 ListSize = v_list_count_elements(List); 00197 /* 00198 * Verificação da posição dentros dos limites da lista. 00199 */ 00200 if (position <0 || position >=ListSize) 00201 { 00202 return; 00203 } 00204 /* 00205 * O que se pretende é ir à posição anterior e 00206 * adicionar o Operation seguinte. 00207 */ 00208 v_list_insert_aux ((vList *) & (**List).Next, List, data, position, 0); 00209 }
Grafo de chamadas desta função:
Here is the caller graph for this function:
void v_list_move | ( | vList * | List, | |
int | source, | |||
int | destination | |||
) |
moves an item from one source to a destination
source | the source position | |
destination | the destination position |
Definido na linha 233 do ficheiro vapiLists.c.
Referências List, v_list_delete_item(), v_list_get() e v_list_insert().
00235 { 00236 vpointer * Item; 00237 Item = v_list_get(List, source); 00238 00239 v_list_delete_item (List, NULL, source); 00240 00241 if (source < destination) 00242 { 00243 destination--; 00244 } 00245 00246 v_list_insert(List, Item, destination); 00247 00248 }
Grafo de chamadas desta função:
vList* v_list_new | ( | ) |
creates an empty list
Definido na linha 6 do ficheiro vapiLists.c.
Referências List.
Referenciado por v_bypass_init(), vapiGroupListNew(), vapiIOListConfiguredNew(), vapiIOListNew(), vapiMacroListNew() e vapiOperationListNew().
Here is the caller graph for this function: