Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_outliner/outliner_intern.h
| Show First 20 Lines • Show All 147 Lines • ▼ Show 20 Lines | |||||
| /* TreeElement->flag */ | /* TreeElement->flag */ | ||||
| enum { | enum { | ||||
| TE_ACTIVE = (1 << 0), | TE_ACTIVE = (1 << 0), | ||||
| /* Closed items display their children as icon within the row. TE_ICONROW is for | /* Closed items display their children as icon within the row. TE_ICONROW is for | ||||
| * these child-items that are visible but only within the row of the closed parent. */ | * these child-items that are visible but only within the row of the closed parent. */ | ||||
| TE_ICONROW = (1 << 1), | TE_ICONROW = (1 << 1), | ||||
| TE_LAZY_CLOSED = (1 << 2), | TE_LAZY_CLOSED = (1 << 2), | ||||
| TE_FREE_NAME = (1 << 3), | TE_FREE_NAME = (1 << 3), | ||||
| TE_DISABLED = (1 << 4), | TE_DRAGGING = (1 << 4), | ||||
| TE_DRAGGING = (1 << 5), | |||||
| TE_CHILD_NOT_IN_COLLECTION = (1 << 6), | TE_CHILD_NOT_IN_COLLECTION = (1 << 6), | ||||
| /* Child elements of the same type in the icon-row are drawn merged as one icon. | /* Child elements of the same type in the icon-row are drawn merged as one icon. | ||||
| * This flag is set for an element that is part of these merged child icons. */ | * This flag is set for an element that is part of these merged child icons. */ | ||||
| TE_ICONROW_MERGED = (1 << 7), | TE_ICONROW_MERGED = (1 << 7), | ||||
| }; | }; | ||||
| /* button events */ | /* button events */ | ||||
| #define OL_NAMEBUTTON 1 | #define OL_NAMEBUTTON 1 | ||||
| ▲ Show 20 Lines • Show All 393 Lines • Show Last 20 Lines | |||||