Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenkernel/BKE_context.h')
-rw-r--r--source/blender/blenkernel/BKE_context.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_context.h b/source/blender/blenkernel/BKE_context.h
index f08b14c7820..6a43f4ca25c 100644
--- a/source/blender/blenkernel/BKE_context.h
+++ b/source/blender/blenkernel/BKE_context.h
@@ -72,6 +72,20 @@ typedef struct bContextDataResult bContextDataResult;
typedef int (*bContextDataCallback)(const bContext *C,
const char *member, bContextDataResult *result);
+typedef struct bContextStoreEntry {
+ struct bContextStoreEntry *next, *prev;
+
+ char name[128];
+ PointerRNA ptr;
+} bContextStoreEntry;
+
+typedef struct bContextStore {
+ struct bContextStore *next, *prev;
+
+ ListBase entries;
+ int used;
+} bContextStore;
+
/* Context */
bContext *CTX_create(void);
@@ -79,6 +93,14 @@ void CTX_free(bContext *C);
bContext *CTX_copy(const bContext *C);
+/* Stored Context */
+
+bContextStore *CTX_store_add(ListBase *contexts, char *name, PointerRNA *ptr);
+void CTX_store_set(bContext *C, bContextStore *store);
+bContextStore *CTX_store_copy(bContextStore *store);
+void CTX_store_free(bContextStore *store);
+void CTX_store_free_list(ListBase *contexts);
+
/* Window Manager Context */
struct wmWindowManager *CTX_wm_manager(const bContext *C);