Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_text/text_intern.h
| Show All 36 Lines | |||||
| struct bContext; | struct bContext; | ||||
| struct ScrArea; | struct ScrArea; | ||||
| struct SpaceText; | struct SpaceText; | ||||
| struct Text; | struct Text; | ||||
| struct TextLine; | struct TextLine; | ||||
| struct wmOperatorType; | struct wmOperatorType; | ||||
| /* text_draw.c */ | /* text_draw.c */ | ||||
| void draw_text_main(struct SpaceText *st, struct ARegion *ar); | void draw_text_main(struct SpaceText *st, struct ARegion *ar, int cursor_xy[2]); | ||||
| void text_update_line_edited(struct TextLine *line); | void text_update_line_edited(struct TextLine *line); | ||||
| void text_update_edited(struct Text *text); | void text_update_edited(struct Text *text); | ||||
| void text_update_character_width(struct SpaceText *st); | void text_update_character_width(struct SpaceText *st); | ||||
| void text_scroll_to_cursor(struct SpaceText *st, struct ARegion *ar, const bool center); | void text_scroll_to_cursor(struct SpaceText *st, struct ARegion *ar, const bool center); | ||||
| void text_scroll_to_cursor__area(struct SpaceText *st, struct ScrArea *sa, const bool center); | void text_scroll_to_cursor__area(struct SpaceText *st, struct ScrArea *sa, const bool center); | ||||
| void text_update_cursor_moved(struct bContext *C); | void text_update_cursor_moved(struct bContext *C); | ||||
| ▲ Show 20 Lines • Show All 100 Lines • Show Last 20 Lines | |||||