Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_text.h
| Show All 20 Lines | |||||
| * \ingroup editors | * \ingroup editors | ||||
| */ | */ | ||||
| #ifndef __ED_TEXT_H__ | #ifndef __ED_TEXT_H__ | ||||
| #define __ED_TEXT_H__ | #define __ED_TEXT_H__ | ||||
| struct ARegion; | struct ARegion; | ||||
| struct SpaceText; | struct SpaceText; | ||||
| struct TextUndoBuf; | struct UndoStep; | ||||
| struct UndoType; | struct UndoType; | ||||
| bool ED_text_region_location_from_cursor(struct SpaceText *st, | bool ED_text_region_location_from_cursor(struct SpaceText *st, | ||||
| struct ARegion *ar, | struct ARegion *ar, | ||||
| const int cursor_co[2], | const int cursor_co[2], | ||||
| int r_pixel_co[2]); | int r_pixel_co[2]); | ||||
| /* text_undo.c */ | /* text_undo.c */ | ||||
| void ED_text_undosys_type(struct UndoType *ut); | void ED_text_undosys_type(struct UndoType *ut); | ||||
| struct TextUndoBuf *ED_text_undo_push_init(struct bContext *C); | struct UndoStep *ED_text_undo_push_init(struct bContext *C); | ||||
| #endif /* __ED_TEXT_H__ */ | #endif /* __ED_TEXT_H__ */ | ||||