| 123 void uic_context_detach_document(UiContext *ctx); // deprecated |
123 void uic_context_detach_document(UiContext *ctx); // deprecated |
| 124 |
124 |
| 125 void uic_context_prepare_close(UiContext *ctx); |
125 void uic_context_prepare_close(UiContext *ctx); |
| 126 |
126 |
| 127 void uic_context_attach_document(UiContext *ctx, void *document); |
127 void uic_context_attach_document(UiContext *ctx, void *document); |
| 128 void uic_context_detach_document2(UiContext *ctx, void *document); |
128 void uic_context_detach_document(UiContext *ctx, void *document); |
| 129 void uic_context_attach_context(UiContext *ctx, UiContext *doc_ctx); |
129 void uic_context_attach_context(UiContext *ctx, UiContext *doc_ctx); // TODO |
| 130 void uic_context_detach_context(UiContext *ctx, UiContext *doc_ctx); |
130 void uic_context_detach_context(UiContext *ctx, UiContext *doc_ctx); // TODO |
| 131 void uic_context_detach_all(UiContext *ctx); |
131 void uic_context_detach_all(UiContext *ctx); |
| 132 |
132 |
| 133 UiVar* uic_get_var(UiContext *ctx, const char *name); |
133 UiVar* uic_get_var(UiContext *ctx, const char *name); |
| 134 UiVar* uic_create_var(UiContext *ctx, const char *name, UiVarType type); |
134 UiVar* uic_create_var(UiContext *ctx, const char *name, UiVarType type); |
| 135 UiVar* uic_create_value_var(UiContext *ctx, void *value); |
135 UiVar* uic_create_value_var(UiContext *ctx, void *value); |