Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_screen_types.h
| Show First 20 Lines • Show All 528 Lines • ▼ Show 20 Lines | typedef enum eScreen_Redraws_Flag { | ||||
| TIME_CLIPS = (1 << 9), | TIME_CLIPS = (1 << 9), | ||||
| TIME_FOLLOW = (1 << 15), | TIME_FOLLOW = (1 << 15), | ||||
| } eScreen_Redraws_Flag; | } eScreen_Redraws_Flag; | ||||
| /** #Panel.flag */ | /** #Panel.flag */ | ||||
| enum { | enum { | ||||
| PNL_SELECT = (1 << 0), | PNL_SELECT = (1 << 0), | ||||
| PNL_CLOSEDX = (1 << 1), | PNL_UNUSED_1 = (1 << 1), /* Cleared */ | ||||
| PNL_CLOSEDY = (1 << 2), | PNL_CLOSED = (1 << 2), | ||||
| PNL_CLOSED = (PNL_CLOSEDX | PNL_CLOSEDY), | |||||
| /* PNL_TABBED = (1 << 3), */ /*UNUSED*/ | /* PNL_TABBED = (1 << 3), */ /*UNUSED*/ | ||||
| /* PNL_OVERLAP = (1 << 4), */ /*UNUSED*/ | /* PNL_OVERLAP = (1 << 4), */ /*UNUSED*/ | ||||
| PNL_PIN = (1 << 5), | PNL_PIN = (1 << 5), | ||||
| PNL_POPOVER = (1 << 6), | PNL_POPOVER = (1 << 6), | ||||
| /** The panel has been drag-drop reordered and the instanced panel list needs to be rebuilt. */ | /** The panel has been drag-drop reordered and the instanced panel list needs to be rebuilt. */ | ||||
| PNL_INSTANCED_LIST_ORDER_CHANGED = (1 << 7), | PNL_INSTANCED_LIST_ORDER_CHANGED = (1 << 7), | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 166 Lines • Show Last 20 Lines | |||||