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:
authorTon Roosendaal <ton@blender.org>2004-10-08 20:03:43 +0400
committerTon Roosendaal <ton@blender.org>2004-10-08 20:03:43 +0400
commitd0ca4c9efa624071481d8e694744c272488e0091 (patch)
treeb789b8ab5bffb4128f0c2d86e5e1b8848d855869 /source/blender/include/BIF_outliner.h
parentc659758a38214af103f1a9955e9a336d50b1b098 (diff)
More outliner stuff;
- added Images in overview - added Scripts in overview, if clicked it makes it active in open Text Window - Padplus/Padminus keys now open one level deeper or less - fix: Akey didn't really open all... - fix: click on item of non-active scene, activates new scene
Diffstat (limited to 'source/blender/include/BIF_outliner.h')
-rw-r--r--source/blender/include/BIF_outliner.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/include/BIF_outliner.h b/source/blender/include/BIF_outliner.h
index b3423f0c832..22830009e1c 100644
--- a/source/blender/include/BIF_outliner.h
+++ b/source/blender/include/BIF_outliner.h
@@ -60,6 +60,7 @@ typedef struct TreeElement {
#define TE_CONSTRAINT 7
#define TE_HOOKS_BASE 8
#define TE_HOOK 9
+#define TE_SCRIPT_BASE 10
extern void draw_outliner(struct ScrArea *sa, struct SpaceOops *so);
extern void outliner_free_tree(struct ListBase *lb);
@@ -67,6 +68,7 @@ extern void outliner_mouse_event(struct ScrArea *sa, short event);
extern void outliner_toggle_visible(struct ScrArea *sa);
extern void outliner_show_active(struct ScrArea *sa);
extern void outliner_show_hierarchy(struct ScrArea *sa);
+extern void outliner_one_level(struct ScrArea *sa, int add);
#endif