Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_action_types.h
| Show All 37 Lines | |||||
| #include "DNA_listBase.h" | #include "DNA_listBase.h" | ||||
| #include "DNA_ID.h" | #include "DNA_ID.h" | ||||
| #include "DNA_view2d_types.h" | #include "DNA_view2d_types.h" | ||||
| #include "DNA_userdef_types.h" /* ThemeWireColor */ | #include "DNA_userdef_types.h" /* ThemeWireColor */ | ||||
| struct SpaceLink; | struct SpaceLink; | ||||
| struct Object; | struct Object; | ||||
| struct Group; | struct Collection; | ||||
| struct GHash; | struct GHash; | ||||
| /* ************************************************ */ | /* ************************************************ */ | ||||
| /* Visualization */ | /* Visualization */ | ||||
| /* Motion Paths ------------------------------------ */ | /* Motion Paths ------------------------------------ */ | ||||
| /* (used for Pose Channels and Objects) */ | /* (used for Pose Channels and Objects) */ | ||||
| ▲ Show 20 Lines • Show All 528 Lines • ▼ Show 20 Lines | |||||
| /* ************************************************ */ | /* ************************************************ */ | ||||
| /* Action/Dopesheet Editor */ | /* Action/Dopesheet Editor */ | ||||
| /* Storage for Dopesheet/Grease-Pencil Editor data */ | /* Storage for Dopesheet/Grease-Pencil Editor data */ | ||||
| typedef struct bDopeSheet { | typedef struct bDopeSheet { | ||||
| ID *source; /* currently ID_SCE (for Dopesheet), and ID_SC (for Grease Pencil) */ | ID *source; /* currently ID_SCE (for Dopesheet), and ID_SC (for Grease Pencil) */ | ||||
| ListBase chanbase; /* cache for channels (only initialized when pinned) */ // XXX not used! | ListBase chanbase; /* cache for channels (only initialized when pinned) */ // XXX not used! | ||||
| struct Group *filter_grp; /* object group for ADS_FILTER_ONLYOBGROUP filtering option */ | struct Collection *filter_grp; /* object group for ADS_FILTER_ONLYOBGROUP filtering option */ | ||||
| char searchstr[64]; /* string to search for in displayed names of F-Curves for ADS_FILTER_BY_FCU_NAME filtering option */ | char searchstr[64]; /* string to search for in displayed names of F-Curves for ADS_FILTER_BY_FCU_NAME filtering option */ | ||||
| int filterflag; /* flags to use for filtering data */ | int filterflag; /* flags to use for filtering data */ | ||||
| int flag; /* standard flags */ | int flag; /* standard flags */ | ||||
| int renameIndex; /* index+1 of channel to rename - only gets set by renaming operator */ | int renameIndex; /* index+1 of channel to rename - only gets set by renaming operator */ | ||||
| int pad; | int pad; | ||||
| } bDopeSheet; | } bDopeSheet; | ||||
| ▲ Show 20 Lines • Show All 201 Lines • Show Last 20 Lines | |||||