|
Blender V4.5
|
#include <cstdlib>#include <cstring>#include "MEM_guardedalloc.h"#include "BLI_ghash.h"#include "BLI_listbase.h"#include "BLI_utildefines.h"#include "DNA_gpencil_legacy_types.h"#include "DNA_scene_types.h"#include "DNA_screen_types.h"#include "BKE_context.hh"#include "BKE_gpencil_legacy.h"#include "BKE_lib_id.hh"#include "BKE_paint.hh"#include "BKE_report.hh"#include "BKE_scene.hh"#include "UI_interface.hh"#include "WM_api.hh"#include "WM_message.hh"#include "WM_toolsystem.hh"#include "WM_types.hh"#include "RNA_access.hh"#include "UI_view2d.hh"#include "ED_gpencil_legacy.hh"#include "ED_image.hh"#include "ED_object.hh"#include "ED_outliner.hh"#include "ED_screen.hh"#include "ED_view3d.hh"#include "DEG_depsgraph.hh"#include "gpencil_intern.hh"Go to the source code of this file.
Functions | |
Delete Active Frame Operator | |
| static bool | annotation_actframe_delete_poll (bContext *C) |
| static wmOperatorStatus | gpencil_actframe_delete_exec (bContext *C, wmOperator *op) |
| void | GPENCIL_OT_annotation_active_frame_delete (wmOperatorType *ot) |
Copy/Paste Strokes Utilities | |
Grease Pencil stroke data copy/paste buffer:
| |
| ListBase | gpencil_strokes_copypastebuf = {nullptr, nullptr} |
| static GHash * | gpencil_strokes_copypastebuf_colors = nullptr |
| void | ED_gpencil_strokes_copybuf_free () |
Operators for editing Grease Pencil strokes.
Definition in file gpencil_edit.cc.
|
static |
Definition at line 109 of file gpencil_edit.cc.
References bGPDlayer::actframe, BKE_gpencil_layer_active_get(), C, and ED_annotation_data_get_active().
Referenced by GPENCIL_OT_annotation_active_frame_delete().
| void ED_gpencil_strokes_copybuf_free | ( | ) |
Free copy/paste buffer data.
Definition at line 72 of file gpencil_edit.cc.
References BKE_gpencil_free_stroke_weights(), BLI_freelinkN(), BLI_ghash_free(), bGPDstroke::dvert, gpencil_strokes_copypastebuf, gpencil_strokes_copypastebuf_colors, MEM_freeN(), MEM_SAFE_FREE, bGPDstroke::next, bGPDstroke::points, and bGPDstroke::triangles.
Referenced by WM_exit_ex().
|
static |
Definition at line 119 of file gpencil_edit.cc.
References BKE_gpencil_layer_active_get(), BKE_gpencil_layer_frame_delete(), BKE_gpencil_layer_frame_get(), BKE_report(), C, RenderData::cfra, CTX_data_scene(), DEG_id_tag_update(), ED_annotation_data_get_active(), ELEM, GP_GETFRAME_USE_PREV, bGPdata::id, ID_RECALC_GEOMETRY, ID_RECALC_TRANSFORM, NA_EDITED, NC_GPENCIL, ND_DATA, OPERATOR_CANCELLED, OPERATOR_FINISHED, Scene::r, wmOperator::reports, RPT_ERROR, and WM_event_add_notifier().
Referenced by GPENCIL_OT_annotation_active_frame_delete().
| void GPENCIL_OT_annotation_active_frame_delete | ( | wmOperatorType * | ot | ) |
Definition at line 148 of file gpencil_edit.cc.
References annotation_actframe_delete_poll(), gpencil_actframe_delete_exec(), OPTYPE_REGISTER, OPTYPE_UNDO, and ot.
Referenced by ED_operatortypes_gpencil_legacy().
list of bGPDstroke instances
Definition at line 63 of file gpencil_edit.cc.
Referenced by ED_gpencil_strokes_copybuf_free().
Definition at line 70 of file gpencil_edit.cc.
Referenced by ED_gpencil_strokes_copybuf_free().