Blender V5.0
gpencil_ops.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2009 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
9#include <cstdlib>
10
11#include "DNA_screen_types.h"
12#include "DNA_space_types.h"
13
14#include "WM_api.hh"
15
16#include "ED_gpencil_legacy.hh"
17
18#include "gpencil_intern.hh"
19
21{
22 WM_keymap_ensure(keyconf, "Grease Pencil", SPACE_EMPTY, RGN_TYPE_WINDOW);
23}
24
@ RGN_TYPE_WINDOW
@ SPACE_EMPTY
void GPENCIL_OT_annotate(wmOperatorType *ot)
void GPENCIL_OT_layer_annotation_move(wmOperatorType *ot)
void GPENCIL_OT_layer_annotation_remove(wmOperatorType *ot)
void GPENCIL_OT_annotation_add(wmOperatorType *ot)
void GPENCIL_OT_data_unlink(wmOperatorType *ot)
void GPENCIL_OT_layer_annotation_add(wmOperatorType *ot)
void GPENCIL_OT_annotation_active_frame_delete(wmOperatorType *ot)
void ED_keymap_gpencil_legacy(wmKeyConfig *keyconf)
void ED_operatortypes_gpencil_legacy()
wmKeyMap * WM_keymap_ensure(wmKeyConfig *keyconf, const char *idname, int spaceid, int regionid)
Definition wm_keymap.cc:895
void WM_operatortype_append(void(*opfunc)(wmOperatorType *))