Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_screen_types.h
| Show First 20 Lines • Show All 257 Lines • ▼ Show 20 Lines | typedef struct uiListDyn { | ||||
| /** Number of rows needed to draw all elements. */ | /** Number of rows needed to draw all elements. */ | ||||
| int height; | int height; | ||||
| /** Actual visual height of the list (in rows). */ | /** Actual visual height of the list (in rows). */ | ||||
| int visual_height; | int visual_height; | ||||
| /** Minimal visual height of the list (in rows). */ | /** Minimal visual height of the list (in rows). */ | ||||
| int visual_height_min; | int visual_height_min; | ||||
| /** Number of columns drawn for grid layouts. */ | |||||
| int columns; | |||||
| /** Number of items in collection. */ | /** Number of items in collection. */ | ||||
| int items_len; | int items_len; | ||||
| /** Number of items actually visible after filtering. */ | /** Number of items actually visible after filtering. */ | ||||
| int items_shown; | int items_shown; | ||||
| /* Those are temp data used during drag-resize with GRIP button | /* Those are temp data used during drag-resize with GRIP button | ||||
| * (they are in pixels, the meaningful data is the | * (they are in pixels, the meaningful data is the | ||||
| * difference between resize_prev and resize)... | * difference between resize_prev and resize)... | ||||
| ▲ Show 20 Lines • Show All 481 Lines • Show Last 20 Lines | |||||