Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_outliner/outliner_intern.h
| Show First 20 Lines • Show All 124 Lines • ▼ Show 20 Lines | 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_DISABLED = (1 << 4), | ||||
| TE_DRAGGING = (1 << 5), | TE_DRAGGING = (1 << 5), | ||||
| TE_CHILD_NOT_IN_COLLECTION = (1 << 6), | |||||
| }; | }; | ||||
| /* button events */ | /* button events */ | ||||
| #define OL_NAMEBUTTON 1 | #define OL_NAMEBUTTON 1 | ||||
| typedef enum { | typedef enum { | ||||
| OL_DRAWSEL_NONE = 0, /* inactive (regular black text) */ | OL_DRAWSEL_NONE = 0, /* inactive (regular black text) */ | ||||
| OL_DRAWSEL_NORMAL = 1, /* active object (draws white text) */ | OL_DRAWSEL_NORMAL = 1, /* active object (draws white text) */ | ||||
| ▲ Show 20 Lines • Show All 316 Lines • Show Last 20 Lines | |||||