Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_view2d_types.h
| Show First 20 Lines • Show All 145 Lines • ▼ Show 20 Lines | enum { | ||||
| V2D_SCROLL_LEFT = (1 << 0), | V2D_SCROLL_LEFT = (1 << 0), | ||||
| V2D_SCROLL_RIGHT = (1 << 1), | V2D_SCROLL_RIGHT = (1 << 1), | ||||
| V2D_SCROLL_VERTICAL = (V2D_SCROLL_LEFT | V2D_SCROLL_RIGHT), | V2D_SCROLL_VERTICAL = (V2D_SCROLL_LEFT | V2D_SCROLL_RIGHT), | ||||
| /* horizontal scrollbar */ | /* horizontal scrollbar */ | ||||
| V2D_SCROLL_TOP = (1 << 2), | V2D_SCROLL_TOP = (1 << 2), | ||||
| V2D_SCROLL_BOTTOM = (1 << 3), | V2D_SCROLL_BOTTOM = (1 << 3), | ||||
| /* UNUSED = (1 << 4), */ | /* UNUSED = (1 << 4), */ | ||||
| V2D_SCROLL_HORIZONTAL = (V2D_SCROLL_TOP | V2D_SCROLL_BOTTOM), | V2D_SCROLL_HORIZONTAL = (V2D_SCROLL_TOP | V2D_SCROLL_BOTTOM), | ||||
| /* scale markings - vertical */ | /* display vertical scale handles */ | ||||
| V2D_SCROLL_SCALE_VERTICAL = (1 << 5), | V2D_SCROLL_VERTICAL_HANDLES = (1 << 5), | ||||
| /* scale markings - horizontal */ | /* display horizontal scale handles */ | ||||
| V2D_SCROLL_SCALE_HORIZONTAL = (1 << 6), | V2D_SCROLL_HORIZONTAL_HANDLES = (1 << 6), | ||||
| /* induce hiding of scrollbars - set by region drawing in response to size of region */ | /* induce hiding of scrollbars - set by region drawing in response to size of region */ | ||||
| V2D_SCROLL_VERTICAL_HIDE = (1 << 7), | V2D_SCROLL_VERTICAL_HIDE = (1 << 7), | ||||
| V2D_SCROLL_HORIZONTAL_HIDE = (1 << 8), | V2D_SCROLL_HORIZONTAL_HIDE = (1 << 8), | ||||
| /* scrollbar extends beyond its available window - | /* scrollbar extends beyond its available window - | ||||
| * set when calculating scrollbars for drawing */ | * set when calculating scrollbars for drawing */ | ||||
| V2D_SCROLL_VERTICAL_FULLR = (1 << 9), | V2D_SCROLL_VERTICAL_FULLR = (1 << 9), | ||||
| V2D_SCROLL_HORIZONTAL_FULLR = (1 << 10), | V2D_SCROLL_HORIZONTAL_FULLR = (1 << 10), | ||||
| }; | }; | ||||
| Show All 20 Lines | |||||