Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_screen_types.h
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| #define AREAMINX 29 | #define AREAMINX 29 | ||||
| #define HEADER_PADDING_Y 6 | #define HEADER_PADDING_Y 6 | ||||
| #define HEADERY (20 + HEADER_PADDING_Y) | #define HEADERY (20 + HEADER_PADDING_Y) | ||||
| /** #bScreen.flag */ | /** #bScreen.flag */ | ||||
| enum { | enum { | ||||
| SCREEN_DEPRECATED = 1, | SCREEN_DEPRECATED = 1, | ||||
| SCREEN_COLLAPSE_STATUSBAR = 2, | SCREEN_COLLAPSE_STATUSBAR = 2, | ||||
| SCREEN_SHOW_TOPTOOLBAR = 4, | |||||
| }; | }; | ||||
| /** #bScreen.state */ | /** #bScreen.state */ | ||||
| enum { | enum { | ||||
| SCREENNORMAL = 0, | SCREENNORMAL = 0, | ||||
| SCREENMAXIMIZED = 1, /* one editor taking over the screen */ | SCREENMAXIMIZED = 1, /* one editor taking over the screen */ | ||||
| SCREENFULL = 2, /* one editor taking over the screen with no bare-minimum UI elements */ | SCREENFULL = 2, /* one editor taking over the screen with no bare-minimum UI elements */ | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||