Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_undo.h
| Show All 27 Lines | |||||
| struct UndoStack; | struct UndoStack; | ||||
| struct ViewLayer; | struct ViewLayer; | ||||
| struct bContext; | struct bContext; | ||||
| struct wmOperator; | struct wmOperator; | ||||
| struct wmOperatorType; | struct wmOperatorType; | ||||
| /* undo.c */ | /* undo.c */ | ||||
| void ED_undo_push(struct bContext *C, const char *str); | void ED_undo_push(struct bContext *C, const char *str); | ||||
| void ED_undo_push_main(struct bContext *C, const char *str); | |||||
| void ED_undo_push_op(struct bContext *C, struct wmOperator *op); | void ED_undo_push_op(struct bContext *C, struct wmOperator *op); | ||||
| void ED_undo_grouped_push(struct bContext *C, const char *str); | void ED_undo_grouped_push(struct bContext *C, const char *str); | ||||
| void ED_undo_grouped_push_op(struct bContext *C, struct wmOperator *op); | void ED_undo_grouped_push_op(struct bContext *C, struct wmOperator *op); | ||||
| void ED_undo_pop_op(struct bContext *C, struct wmOperator *op); | void ED_undo_pop_op(struct bContext *C, struct wmOperator *op); | ||||
| void ED_undo_pop(struct bContext *C); | void ED_undo_pop(struct bContext *C); | ||||
| void ED_undo_redo(struct bContext *C); | void ED_undo_redo(struct bContext *C); | ||||
| void ED_OT_undo(struct wmOperatorType *ot); | void ED_OT_undo(struct wmOperatorType *ot); | ||||
| void ED_OT_undo_push(struct wmOperatorType *ot); | void ED_OT_undo_push(struct wmOperatorType *ot); | ||||
| Show All 34 Lines | |||||