2012-06-04 15:49:58 +00:00
|
|
|
/*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2012 Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup editors
|
2012-06-04 15:49:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __ED_MASK_H__
|
|
|
|
|
#define __ED_MASK_H__
|
|
|
|
|
|
2019-01-28 21:08:24 +11:00
|
|
|
struct KeyframeEditData;
|
2012-06-06 14:38:47 +00:00
|
|
|
struct MaskLayer;
|
2012-06-08 14:31:38 +00:00
|
|
|
struct MaskLayerShape;
|
2019-01-28 21:08:24 +11:00
|
|
|
struct bContext;
|
|
|
|
|
struct wmKeyConfig;
|
2012-06-04 15:49:58 +00:00
|
|
|
|
2012-07-24 19:29:24 +00:00
|
|
|
/* mask_edit.c */
|
2012-07-26 22:41:40 +00:00
|
|
|
void ED_mask_get_size(struct ScrArea *sa, int *width, int *height);
|
|
|
|
|
void ED_mask_zoom(struct ScrArea *sa, struct ARegion *ar, float *zoomx, float *zoomy);
|
|
|
|
|
void ED_mask_get_aspect(struct ScrArea *sa, struct ARegion *ar, float *aspx, float *aspy);
|
2012-07-24 19:29:24 +00:00
|
|
|
|
2012-07-26 22:41:40 +00:00
|
|
|
void ED_mask_pixelspace_factor(struct ScrArea *sa, struct ARegion *ar, float *scalex, float *scaley);
|
2012-07-27 15:15:55 +00:00
|
|
|
void ED_mask_mouse_pos(struct ScrArea *sa, struct ARegion *ar, const int mval[2], float co[2]);
|
2012-07-26 21:22:42 +00:00
|
|
|
|
2012-07-26 22:41:40 +00:00
|
|
|
void ED_mask_point_pos(struct ScrArea *sa, struct ARegion *ar, float x, float y, float *xr, float *yr);
|
|
|
|
|
void ED_mask_point_pos__reverse(struct ScrArea *sa, struct ARegion *ar,
|
|
|
|
|
float x, float y, float *xr, float *yr);
|
2012-07-26 21:22:42 +00:00
|
|
|
|
2013-08-26 20:23:26 +00:00
|
|
|
void ED_mask_cursor_location_get(struct ScrArea *sa, float cursor[2]);
|
2015-06-11 22:46:42 +02:00
|
|
|
bool ED_mask_selected_minmax(const struct bContext *C, float min[2], float max[2]);
|
2013-08-26 20:23:26 +00:00
|
|
|
|
2012-06-04 15:49:58 +00:00
|
|
|
void ED_operatortypes_mask(void);
|
|
|
|
|
void ED_keymap_mask(struct wmKeyConfig *keyconf);
|
|
|
|
|
void ED_operatormacros_mask(void);
|
|
|
|
|
|
|
|
|
|
/* mask_draw.c */
|
2012-09-15 01:52:28 +00:00
|
|
|
void ED_mask_draw(const struct bContext *C, const char draw_flag, const char draw_type);
|
2012-07-24 19:29:24 +00:00
|
|
|
void ED_mask_draw_region(struct Mask *mask, struct ARegion *ar,
|
2013-10-12 14:09:05 +00:00
|
|
|
const char draw_flag, const char draw_type, const char overlay_mode,
|
2012-09-13 02:28:48 +00:00
|
|
|
const int width_i, const int height_i,
|
|
|
|
|
const float aspx, const float aspy,
|
2014-02-03 18:55:59 +11:00
|
|
|
const bool do_scale_applied, const bool do_draw_cb,
|
2012-07-24 19:29:24 +00:00
|
|
|
float stabmat[4][4],
|
2012-09-15 01:52:28 +00:00
|
|
|
const struct bContext *C);
|
2012-06-04 15:49:58 +00:00
|
|
|
|
2012-08-01 10:50:39 +00:00
|
|
|
void ED_mask_draw_frames(struct Mask *mask, struct ARegion *ar, const int cfra, const int sfra, const int efra);
|
|
|
|
|
|
2012-06-04 15:49:58 +00:00
|
|
|
/* mask_shapekey.c */
|
2012-06-06 14:38:47 +00:00
|
|
|
void ED_mask_layer_shape_auto_key(struct MaskLayer *masklay, const int frame);
|
2013-11-26 06:39:14 +11:00
|
|
|
bool ED_mask_layer_shape_auto_key_all(struct Mask *mask, const int frame);
|
|
|
|
|
bool ED_mask_layer_shape_auto_key_select(struct Mask *mask, const int frame);
|
2012-06-04 15:49:58 +00:00
|
|
|
|
2012-06-08 14:31:38 +00:00
|
|
|
/* ----------- Mask AnimEdit API ------------------ */
|
2014-03-31 15:23:27 +06:00
|
|
|
bool ED_masklayer_frames_looper(struct MaskLayer *masklay, struct Scene *scene,
|
|
|
|
|
short (*masklay_shape_cb)(struct MaskLayerShape *, struct Scene *));
|
|
|
|
|
void ED_masklayer_make_cfra_list(struct MaskLayer *masklay, ListBase *elems, bool onlysel);
|
2012-06-08 14:31:38 +00:00
|
|
|
|
2014-02-03 18:55:59 +11:00
|
|
|
bool ED_masklayer_frame_select_check(struct MaskLayer *masklay);
|
2012-06-08 21:48:04 +00:00
|
|
|
void ED_masklayer_frame_select_set(struct MaskLayer *masklay, short mode);
|
2018-10-05 10:27:04 +10:00
|
|
|
void ED_masklayer_frames_select_box(struct MaskLayer *masklay, float min, float max, short select_mode);
|
2016-06-24 02:57:03 +12:00
|
|
|
void ED_masklayer_frames_select_region(struct KeyframeEditData *ked, struct MaskLayer *masklay, short tool, short select_mode);
|
2012-06-08 21:48:04 +00:00
|
|
|
void ED_mask_select_frames(struct MaskLayer *masklay, short select_mode);
|
|
|
|
|
void ED_mask_select_frame(struct MaskLayer *masklay, int selx, short select_mode);
|
2012-06-08 14:31:38 +00:00
|
|
|
|
2013-11-25 04:55:26 +01:00
|
|
|
bool ED_masklayer_frames_delete(struct MaskLayer *masklay);
|
2012-06-08 21:48:04 +00:00
|
|
|
void ED_masklayer_frames_duplicate(struct MaskLayer *masklay);
|
2012-06-08 14:31:38 +00:00
|
|
|
|
2012-12-03 13:07:43 +00:00
|
|
|
void ED_masklayer_snap_frames(struct MaskLayer *masklay, struct Scene *scene, short mode);
|
|
|
|
|
|
2012-06-08 21:48:04 +00:00
|
|
|
#if 0
|
|
|
|
|
void free_gpcopybuf(void);
|
|
|
|
|
void copy_gpdata(void);
|
|
|
|
|
void paste_gpdata(void);
|
2012-06-08 14:31:38 +00:00
|
|
|
|
2012-11-03 15:35:03 +00:00
|
|
|
void mirror_masklayer_frames(struct MaskLayer *masklay, short mode);
|
2012-06-08 21:48:04 +00:00
|
|
|
#endif
|
2012-06-08 14:31:38 +00:00
|
|
|
|
|
|
|
|
#endif /* __ED_MASK_H__ */
|