Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/WM_api.h
| Show First 20 Lines • Show All 287 Lines • ▼ Show 20 Lines | |||||
| struct wmOperatorType *WM_operatortype_find(const char *idname, bool quiet); | struct wmOperatorType *WM_operatortype_find(const char *idname, bool quiet); | ||||
| void WM_operatortype_iter(struct GHashIterator *ghi); | void WM_operatortype_iter(struct GHashIterator *ghi); | ||||
| void WM_operatortype_append(void (*opfunc)(struct wmOperatorType *)); | void WM_operatortype_append(void (*opfunc)(struct wmOperatorType *)); | ||||
| void WM_operatortype_append_ptr(void (*opfunc)(struct wmOperatorType *, void *), void *userdata); | void WM_operatortype_append_ptr(void (*opfunc)(struct wmOperatorType *, void *), void *userdata); | ||||
| void WM_operatortype_append_macro_ptr(void (*opfunc)(struct wmOperatorType *, void *), void *userdata); | void WM_operatortype_append_macro_ptr(void (*opfunc)(struct wmOperatorType *, void *), void *userdata); | ||||
| void WM_operatortype_remove_ptr(struct wmOperatorType *ot); | void WM_operatortype_remove_ptr(struct wmOperatorType *ot); | ||||
| bool WM_operatortype_remove(const char *idname); | bool WM_operatortype_remove(const char *idname); | ||||
| void WM_operatortype_last_properties_clear_all(void); | void WM_operatortype_last_properties_clear_all(void); | ||||
| void WM_operatortype_props_advanced_begin(struct wmOperatorType *ot); | |||||
| void WM_operatortype_props_advanced_end(struct wmOperatorType *ot); | |||||
| struct wmOperatorType *WM_operatortype_append_macro(const char *idname, const char *name, const char *description, int flag); | struct wmOperatorType *WM_operatortype_append_macro(const char *idname, const char *name, const char *description, int flag); | ||||
| struct wmOperatorTypeMacro *WM_operatortype_macro_define(struct wmOperatorType *ot, const char *idname); | struct wmOperatorTypeMacro *WM_operatortype_macro_define(struct wmOperatorType *ot, const char *idname); | ||||
| int WM_operator_poll (struct bContext *C, struct wmOperatorType *ot); | int WM_operator_poll (struct bContext *C, struct wmOperatorType *ot); | ||||
| int WM_operator_poll_context(struct bContext *C, struct wmOperatorType *ot, short context); | int WM_operator_poll_context(struct bContext *C, struct wmOperatorType *ot, short context); | ||||
| int WM_operator_call_ex(struct bContext *C, struct wmOperator *op, const bool store); | int WM_operator_call_ex(struct bContext *C, struct wmOperator *op, const bool store); | ||||
| ▲ Show 20 Lines • Show All 260 Lines • Show Last 20 Lines | |||||