Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/transform/transform.h
| Show First 20 Lines • Show All 521 Lines • ▼ Show 20 Lines | typedef struct TransInfo { | ||||
| void *view; | void *view; | ||||
| struct bContext *context; /* Only valid (non null) during an operator called function. */ | struct bContext *context; /* Only valid (non null) during an operator called function. */ | ||||
| struct ScrArea *sa; | struct ScrArea *sa; | ||||
| struct ARegion *ar; | struct ARegion *ar; | ||||
| struct Depsgraph *depsgraph; | struct Depsgraph *depsgraph; | ||||
| struct Scene *scene; | struct Scene *scene; | ||||
| struct ViewLayer *view_layer; | struct ViewLayer *view_layer; | ||||
| struct ToolSettings *settings; | struct ToolSettings *settings; | ||||
| struct wmGizmo *gz; | |||||
| struct wmTimer *animtimer; | struct wmTimer *animtimer; | ||||
| struct wmKeyMap *keymap; /* so we can do lookups for header text */ | struct wmKeyMap *keymap; /* so we can do lookups for header text */ | ||||
| struct ReportList *reports; /* assign from the operator, or can be NULL */ | struct ReportList *reports; /* assign from the operator, or can be NULL */ | ||||
| int mval[2]; /* current mouse position */ | int mval[2]; /* current mouse position */ | ||||
| float zfac; /* use for 3d view */ | float zfac; /* use for 3d view */ | ||||
| void *draw_handle_apply; | void *draw_handle_apply; | ||||
| void *draw_handle_view; | void *draw_handle_view; | ||||
| void *draw_handle_pixel; | void *draw_handle_pixel; | ||||
| ▲ Show 20 Lines • Show All 384 Lines • Show Last 20 Lines | |||||