Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/WM_api.h
| Show First 20 Lines • Show All 367 Lines • ▼ Show 20 Lines | int WM_operator_props_dialog_popup(struct bContext *C, | ||||
| int height); | int height); | ||||
| int WM_operator_redo_popup(struct bContext *C, struct wmOperator *op); | int WM_operator_redo_popup(struct bContext *C, struct wmOperator *op); | ||||
| int WM_operator_ui_popup(struct bContext *C, struct wmOperator *op, int width, int height); | int WM_operator_ui_popup(struct bContext *C, struct wmOperator *op, int width, int height); | ||||
| int WM_operator_confirm_message_ex(struct bContext *C, | int WM_operator_confirm_message_ex(struct bContext *C, | ||||
| struct wmOperator *op, | struct wmOperator *op, | ||||
| const char *title, | const char *title, | ||||
| const int icon, | const int icon, | ||||
| const char *message); | const char *message, | ||||
| const short opcontext); | |||||
| int WM_operator_confirm_message(struct bContext *C, struct wmOperator *op, const char *message); | int WM_operator_confirm_message(struct bContext *C, struct wmOperator *op, const char *message); | ||||
| /* operator api */ | /* operator api */ | ||||
| void WM_operator_free(struct wmOperator *op); | void WM_operator_free(struct wmOperator *op); | ||||
| void WM_operator_free_all_after(wmWindowManager *wm, struct wmOperator *op); | void WM_operator_free_all_after(wmWindowManager *wm, struct wmOperator *op); | ||||
| void WM_operator_type_set(struct wmOperator *op, struct wmOperatorType *ot); | void WM_operator_type_set(struct wmOperator *op, struct wmOperatorType *ot); | ||||
| void WM_operator_stack_clear(struct wmWindowManager *wm); | void WM_operator_stack_clear(struct wmWindowManager *wm); | ||||
| void WM_operator_handlers_clear(wmWindowManager *wm, struct wmOperatorType *ot); | void WM_operator_handlers_clear(wmWindowManager *wm, struct wmOperatorType *ot); | ||||
| ▲ Show 20 Lines • Show All 412 Lines • Show Last 20 Lines | |||||