Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_text.h
| Show First 20 Lines • Show All 46 Lines • ▼ Show 20 Lines | |||||
| int txt_get_undostate (void); | int txt_get_undostate (void); | ||||
| void BKE_text_init(struct Text *ta); | void BKE_text_init(struct Text *ta); | ||||
| struct Text *BKE_text_add (struct Main *bmain, const char *name); | struct Text *BKE_text_add (struct Main *bmain, const char *name); | ||||
| int txt_extended_ascii_as_utf8(char **str); | int txt_extended_ascii_as_utf8(char **str); | ||||
| bool BKE_text_reload(struct Text *text); | bool BKE_text_reload(struct Text *text); | ||||
| struct Text *BKE_text_load_ex(struct Main *bmain, const char *file, const char *relpath, | struct Text *BKE_text_load_ex(struct Main *bmain, const char *file, const char *relpath, | ||||
| const bool is_internal); | const bool is_internal); | ||||
| struct Text *BKE_text_load (struct Main *bmain, const char *file, const char *relpath); | struct Text *BKE_text_load (struct Main *bmain, const char *file, const char *relpath); | ||||
| void BKE_text_copy_data(struct Main *bmain, struct Text *ta_dst, const struct Text *ta_src, const int flag); | |||||
| struct Text *BKE_text_copy (struct Main *bmain, const struct Text *ta); | struct Text *BKE_text_copy (struct Main *bmain, const struct Text *ta); | ||||
| void BKE_text_make_local (struct Main *bmain, struct Text *text, const bool lib_local); | void BKE_text_make_local (struct Main *bmain, struct Text *text, const bool lib_local); | ||||
| void BKE_text_clear (struct Text *text); | void BKE_text_clear (struct Text *text); | ||||
| void BKE_text_write (struct Text *text, const char *str); | void BKE_text_write (struct Text *text, const char *str); | ||||
| int BKE_text_file_modified_check(struct Text *text); | int BKE_text_file_modified_check(struct Text *text); | ||||
| void BKE_text_file_modified_ignore(struct Text *text); | void BKE_text_file_modified_ignore(struct Text *text); | ||||
| char *txt_to_buf (struct Text *text); | char *txt_to_buf (struct Text *text); | ||||
| ▲ Show 20 Lines • Show All 120 Lines • Show Last 20 Lines | |||||