Definition in file duifield-hash.h.
#include "config.h"
#include "duifield.h"
#include "duiresolver.h"
#include "interface.h"
Go to the source code of this file.
Functions | |
| void | dui_field_set_hash_key (DuiField *fs, const char *key) |
| void | dui_resolver_resolve_hash (DuiResolver *res, DuiInterface *rot) |
| void dui_field_set_hash_key | ( | DuiField * | fs, | |
| const char * | key | |||
| ) |
data will be looked up in a hash tree
| void dui_resolver_resolve_hash | ( | DuiResolver * | res, | |
| DuiInterface * | rot | |||
| ) |
< Global hash table key
Definition at line 92 of file duifield-hash.c.
00093 { 00094 GList *node; 00095 struct hash_s * gf; 00096 00097 for (node = res->field_list; node; node=node->next) 00098 { 00099 DuiField *fld = node->data; 00100 if (!DUI_FIELD_IS_TYPE(fld,DUI_FIELD_HASH_KEY)) continue; 00101 gf = (struct hash_s*) get_gobj_field (fld); 00102 gf->hash_table_root = rot; 00103 } 00104 }
1.5.5