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 13:27:08 +0400
committerTon Roosendaal <ton@blender.org>2004-10-08 13:27:08 +0400
commitc659758a38214af103f1a9955e9a336d50b1b098 (patch)
tree1d777ee237b233a368990475d1f41d84616d437d /source/blender/include/BIF_outliner.h
parent74603782f650e00988fd8bb947de8b017cf01cfc (diff)
Outliner options;
- Added in pulldown the current view commands, including the 'show hierachy' option, which shows only the full object tree - You now can activate data by clicking on the hidden icons (displayed in a row of a collapsed item) - Added selection and display of active NLA strips - Cleanup; white text in outliner only for active object - Made hierachy helplines 1 pixel wide and black, looks nicer
Diffstat (limited to 'source/blender/include/BIF_outliner.h')
-rw-r--r--source/blender/include/BIF_outliner.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/include/BIF_outliner.h b/source/blender/include/BIF_outliner.h
index cefe8bcba29..b3423f0c832 100644
--- a/source/blender/include/BIF_outliner.h
+++ b/source/blender/include/BIF_outliner.h
@@ -37,16 +37,18 @@
typedef struct TreeElement {
struct TreeElement *next, *prev, *parent;
ListBase subtree;
- float xs, ys;
+ float xs, ys; // doe selection
int store_index; // offset in tree store
short flag, index; // flag for non-saved stuff, index for data arrays
short idcode; // from TreeStore id
+ short xend; // width of item display, for select
char *name;
void *directdata; // Armature Bones, ...
} TreeElement;
/* TreeElement->flag */
#define TE_ACTIVE 1
+#define TE_ICONROW 2
/* TreeStoreElem types */
#define TE_NLA 1