Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_anim_api.h
| Show All 28 Lines | |||||
| struct AnimData; | struct AnimData; | ||||
| struct Depsgraph; | struct Depsgraph; | ||||
| struct ID; | struct ID; | ||||
| struct ListBase; | struct ListBase; | ||||
| struct ARegion; | struct ARegion; | ||||
| struct ARegionType; | struct ARegionType; | ||||
| struct FModifier; | |||||
| struct Main; | struct Main; | ||||
| struct NlaStrip; | struct NlaStrip; | ||||
| struct FModifier; | |||||
| struct PanelType; | struct PanelType; | ||||
| struct ReportList; | struct ReportList; | ||||
| struct ScrArea; | struct ScrArea; | ||||
| struct SpaceLink; | struct SpaceLink; | ||||
| struct View2D; | struct View2D; | ||||
| struct bContext; | struct bContext; | ||||
| struct wmKeyConfig; | struct wmKeyConfig; | ||||
| ▲ Show 20 Lines • Show All 237 Lines • ▼ Show 20 Lines | |||||
| /* filtering flags - under what circumstances should a channel be returned */ | /* filtering flags - under what circumstances should a channel be returned */ | ||||
| typedef enum eAnimFilter_Flags { | typedef enum eAnimFilter_Flags { | ||||
| /** | /** | ||||
| * Data which channel represents is fits the dope-sheet filters | * Data which channel represents is fits the dope-sheet filters | ||||
| * (i.e. scene visibility criteria). | * (i.e. scene visibility criteria). | ||||
| * | * | ||||
| * XXX: it's hard to think of any examples where this *ISN'T* the case... | * XXX: it's hard to think of any examples where this *ISN'T* the case... | ||||
| * perhaps becomes implicit?. | * perhaps becomes implicit? | ||||
| */ | */ | ||||
| ANIMFILTER_DATA_VISIBLE = (1 << 0), | ANIMFILTER_DATA_VISIBLE = (1 << 0), | ||||
| /** channel is visible within the channel-list hierarchy | /** channel is visible within the channel-list hierarchy | ||||
| * (i.e. F-Curves within Groups in ActEdit) */ | * (i.e. F-Curves within Groups in ActEdit) */ | ||||
| ANIMFILTER_LIST_VISIBLE = (1 << 1), | ANIMFILTER_LIST_VISIBLE = (1 << 1), | ||||
| /** channel has specifically been tagged as visible in Graph Editor (* Graph Editor Only) */ | /** channel has specifically been tagged as visible in Graph Editor (* Graph Editor Only) */ | ||||
| ANIMFILTER_CURVE_VISIBLE = (1 << 2), | ANIMFILTER_CURVE_VISIBLE = (1 << 2), | ||||
| ▲ Show 20 Lines • Show All 599 Lines • Show Last 20 Lines | |||||