Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/WM_api.h
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| const struct wmEvent *event); | const struct wmEvent *event); | ||||
| int WM_operator_props_popup(struct bContext *C, | int WM_operator_props_popup(struct bContext *C, | ||||
| struct wmOperator *op, | struct wmOperator *op, | ||||
| const struct wmEvent *event); | const struct wmEvent *event); | ||||
| int WM_operator_props_dialog_popup(struct bContext *C, struct wmOperator *op, int width); | int WM_operator_props_dialog_popup(struct bContext *C, struct wmOperator *op, int width); | ||||
| 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 WM_operator_ui_popup(struct bContext *C, struct wmOperator *op, int width); | ||||
| /** | |||||
| * Can't be used as an invoke directly, needs message arg (can be NULL). | |||||
| */ | |||||
| int WM_operator_confirm_message_ex(struct bContext *C, | |||||
| struct wmOperator *op, | |||||
| const char *title, | |||||
| int icon, | |||||
| const char *message, | |||||
| wmOperatorCallContext opcontext); | |||||
| 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); | ||||
| /** | /** | ||||
| * Use with extreme care! | * Use with extreme care! | ||||
| * Properties, custom-data etc - must be compatible. | * Properties, custom-data etc - must be compatible. | ||||
| * | * | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||