Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/text.c
| Show First 20 Lines • Show All 235 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_TXT = { | IDTypeInfo IDType_ID_TXT = { | ||||
| .id_code = ID_TXT, | .id_code = ID_TXT, | ||||
| .id_filter = FILTER_ID_TXT, | .id_filter = FILTER_ID_TXT, | ||||
| .main_listbase_index = INDEX_ID_TXT, | .main_listbase_index = INDEX_ID_TXT, | ||||
| .struct_size = sizeof(Text), | .struct_size = sizeof(Text), | ||||
| .name = "Text", | .name = "Text", | ||||
| .name_plural = "texts", | .name_plural = "texts", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_TEXT, | .translation_context = BLT_I18NCONTEXT_ID_TEXT, | ||||
| .flags = IDTYPE_FLAGS_NO_ANIMDATA, | .flags = IDTYPE_FLAGS_NO_ANIMDATA | IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = text_init_data, | .init_data = text_init_data, | ||||
| .copy_data = text_copy_data, | .copy_data = text_copy_data, | ||||
| .free_data = text_free_data, | .free_data = text_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = NULL, | .foreach_id = NULL, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 2,256 Lines • Show Last 20 Lines | |||||