Blender  V3.3
lattice_ops.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright 2008 Blender Foundation. All rights reserved. */
3 
8 #include "DNA_scene_types.h"
9 
10 #include "WM_api.h"
11 
12 #include "ED_lattice.h"
13 #include "ED_screen.h"
14 
15 #include "lattice_intern.h"
16 
18 {
27 }
28 
30 {
31  wmKeyMap *keymap = WM_keymap_ensure(keyconf, "Lattice", 0, 0);
32  keymap->poll = ED_operator_editlattice;
33 }
bool ED_operator_editlattice(struct bContext *C)
Definition: screen_ops.c:644
void LATTICE_OT_select_all(wmOperatorType *ot)
void LATTICE_OT_select_random(wmOperatorType *ot)
void LATTICE_OT_select_more(wmOperatorType *ot)
void LATTICE_OT_select_ungrouped(wmOperatorType *ot)
void LATTICE_OT_select_mirror(wmOperatorType *ot)
void LATTICE_OT_select_less(wmOperatorType *ot)
void LATTICE_OT_flip(wmOperatorType *ot)
void LATTICE_OT_make_regular(wmOperatorType *ot)
void ED_keymap_lattice(wmKeyConfig *keyconf)
Definition: lattice_ops.c:29
void ED_operatortypes_lattice(void)
Definition: lattice_ops.c:17
bool(* poll)(struct bContext *)
wmKeyMap * WM_keymap_ensure(wmKeyConfig *keyconf, const char *idname, int spaceid, int regionid)
Definition: wm_keymap.c:852
void WM_operatortype_append(void(*opfunc)(wmOperatorType *))