Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_action_types.h
| Show First 20 Lines • Show All 634 Lines • ▼ Show 20 Lines | typedef enum eDopeSheet_FilterFlag { | ||||
| /* general filtering 3 */ | /* general filtering 3 */ | ||||
| ADS_FILTER_INCL_HIDDEN = (1 << 26), /* include 'hidden' channels too (i.e. those from hidden Objects/Bones) */ | ADS_FILTER_INCL_HIDDEN = (1 << 26), /* include 'hidden' channels too (i.e. those from hidden Objects/Bones) */ | ||||
| ADS_FILTER_BY_FCU_NAME = (1 << 27), /* for F-Curves, filter by the displayed name (i.e. to isolate all Location curves only) */ | ADS_FILTER_BY_FCU_NAME = (1 << 27), /* for F-Curves, filter by the displayed name (i.e. to isolate all Location curves only) */ | ||||
| ADS_FILTER_ONLY_ERRORS = (1 << 28), /* show only F-Curves which are disabled/have errors - for debugging drivers */ | ADS_FILTER_ONLY_ERRORS = (1 << 28), /* show only F-Curves which are disabled/have errors - for debugging drivers */ | ||||
| /* GPencil Mode */ | /* GPencil Mode */ | ||||
| ADS_FILTER_GP_3DONLY = (1 << 29), /* GP Mode - Only show datablocks used in the scene */ | ADS_FILTER_GP_3DONLY = (1 << 29), /* GP Mode - Only show datablocks used in the scene */ | ||||
| /* Palette filter */ | |||||
| ADS_FILTER_NOPALETTE = (1 << 30), | |||||
| /* combination filters (some only used at runtime) */ | /* combination filters (some only used at runtime) */ | ||||
| ADS_FILTER_NOOBDATA = (ADS_FILTER_NOCAM | ADS_FILTER_NOMAT | ADS_FILTER_NOLAM | ADS_FILTER_NOCUR | ADS_FILTER_NOPART | ADS_FILTER_NOARM | ADS_FILTER_NOSPK | ADS_FILTER_NOMODIFIERS) | ADS_FILTER_NOOBDATA = (ADS_FILTER_NOCAM | ADS_FILTER_NOMAT | ADS_FILTER_NOLAM | ADS_FILTER_NOCUR | ADS_FILTER_NOPART | ADS_FILTER_NOARM | ADS_FILTER_NOSPK | ADS_FILTER_NOMODIFIERS) | ||||
| } eDopeSheet_FilterFlag; | } eDopeSheet_FilterFlag; | ||||
campbellbarton: TODO: remove this. | |||||
| /* DopeSheet general flags */ | /* DopeSheet general flags */ | ||||
| typedef enum eDopeSheet_Flag { | typedef enum eDopeSheet_Flag { | ||||
| ADS_FLAG_SUMMARY_COLLAPSED = (1 << 0), /* when summary is shown, it is collapsed, so all other channels get hidden */ | ADS_FLAG_SUMMARY_COLLAPSED = (1 << 0), /* when summary is shown, it is collapsed, so all other channels get hidden */ | ||||
| ADS_FLAG_SHOW_DBFILTERS = (1 << 1), /* show filters for datablocks */ | ADS_FLAG_SHOW_DBFILTERS = (1 << 1), /* show filters for datablocks */ | ||||
| ADS_FLAG_FUZZY_NAMES = (1 << 2), /* use fuzzy/partial string matches when ADS_FILTER_BY_FCU_NAME is enabled (WARNING: expensive operation) */ | ADS_FLAG_FUZZY_NAMES = (1 << 2), /* use fuzzy/partial string matches when ADS_FILTER_BY_FCU_NAME is enabled (WARNING: expensive operation) */ | ||||
| ADS_FLAG_NO_DB_SORT = (1 << 3), /* do not sort datablocks (mostly objects) by name (NOTE: potentially expensive operation) */ | ADS_FLAG_NO_DB_SORT = (1 << 3), /* do not sort datablocks (mostly objects) by name (NOTE: potentially expensive operation) */ | ||||
| ▲ Show 20 Lines • Show All 124 Lines • Show Last 20 Lines | |||||
TODO: remove this.