Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_screen_types.h
| Show First 20 Lines • Show All 562 Lines • ▼ Show 20 Lines | enum { | ||||
| PNL_NO_HEADER = (1 << 1), | PNL_NO_HEADER = (1 << 1), | ||||
| /** Makes buttons in the header shrink/stretch to fill full layout width. */ | /** Makes buttons in the header shrink/stretch to fill full layout width. */ | ||||
| PNL_LAYOUT_HEADER_EXPAND = (1 << 2), | PNL_LAYOUT_HEADER_EXPAND = (1 << 2), | ||||
| PNL_LAYOUT_VERT_BAR = (1 << 3), | PNL_LAYOUT_VERT_BAR = (1 << 3), | ||||
| /** This panel type represents data external to the UI. */ | /** This panel type represents data external to the UI. */ | ||||
| PNL_INSTANCED = (1 << 4), | PNL_INSTANCED = (1 << 4), | ||||
| /** Draw panel like a box widget. */ | /** Draw panel like a box widget. */ | ||||
| PNL_DRAW_BOX = (1 << 6), | PNL_DRAW_BOX = (1 << 6), | ||||
| /** Don't search this panel for property search. */ | |||||
| PNL_NO_SEARCH = (1 << 7), | |||||
| }; | }; | ||||
| /* Fallback panel category (only for old scripts which need updating) */ | /* Fallback panel category (only for old scripts which need updating) */ | ||||
| #define PNL_CATEGORY_FALLBACK "Misc" | #define PNL_CATEGORY_FALLBACK "Misc" | ||||
| /** #uiList.layout_type */ | /** #uiList.layout_type */ | ||||
| enum { | enum { | ||||
| UILST_LAYOUT_DEFAULT = 0, | UILST_LAYOUT_DEFAULT = 0, | ||||
| ▲ Show 20 Lines • Show All 146 Lines • Show Last 20 Lines | |||||