2008-01-01 18:29:19 +00:00
|
|
|
/**
|
|
|
|
* $Id:
|
|
|
|
*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2008 Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Contributor(s): Blender Foundation
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
2008-12-12 18:47:12 +00:00
|
|
|
#ifndef ED_IPO_INTERN_H
|
|
|
|
#define ED_IPO_INTERN_H
|
2.5 Branch
==========
* Changed wmOperatorType, removing init/exit callbacks and adding cancel
callback, removed default storage in favor of properties. Defined return
values for exec/invoke/modal/cancel.
* Don't allocate operator on the stack, and removed operator copy for
handlers. Now it frees based on return values from callbacks, and just
keeps a wmOperator on the heap. Also it now registers after the operator
is fully finished, to get the correct final properties.
* Changed OP_get_* functions to return 1 if the property is found and 0
otherwise, gives more readable code in my opinion. Added OP_verify_*
functions to quickly check if the property is available and set if it's
not, that's common for exec/invoke.
* Removed WM_operatortypelist_append in favor of WM_operatortype_append
which takes a function pointer instead of a list, avoids macro's and
duplicating code.
* Fix a crash where the handler would still be used while it was freed by
the operator.
* Spacetypes now have operatortypes() and keymap() callbacks to abstract
them a bit more.
* Renamed C->curarea to C->area for consistency. Removed View3D/View2D/
SpaceIpo from bContext, seems bad to keep these.
* Set context variables like window/screen/area/region to NULL again when
leaving that context, instead of leaving the pointers there.
* Added if(G.f & G_DEBUG) for many of the prints, makes output a bit
cleaner and easier to debug.
* Fixed priority of the editors/interface module in scons, would otherwise
give link errors.
* Added start of generic view2d api.
* Added space_time with some basic drawing and a single operator to change
the frame.
2008-06-11 10:10:31 +00:00
|
|
|
|
Animato/2.5 - Graph Editor (i.e. the new 'IPO Editor')
This commit brings back the drawing code for the 'Graph Editor'. I've decided to call it this, as currently it can show either F-Curves for Animation stored in Actions, or F-Curves for Drivers.
Currently, it shows all curves, since some of the necessary filtering code (i.e. for limiting curve visibility) hasn't been put in place yet. At least this serves as good proof that we can have F-Curves from multiple sources at least.
It should be noted that the code still has to be modified to work with some of the new Animato features, such as F-Curve Modifiers (cycles are an example of one of the features that use this). Also, a nicer way to set the colours of the curves needs to be investigated.
Notes:
* Fixed a few bugs in RNA User-Preferences wrapping
* The keyframe drawing uses the new-style drawing for handles from AnimSys2. There's a minor bug that sometimes occurs, where a distorted handle gets drawn at the origin of the grid on the first run. Hints anyone?
* Removed most of the old data from SpaceIpo struct, as the new code uses that. Maybe later, the directories/files at least should get renamed.
* Removed ancient hack for NVidia/TNT drivers. It is probably no longer needed, but could be restored if someone needs it.
2009-01-26 11:33:16 +00:00
|
|
|
struct bContext;
|
2009-01-26 23:18:27 +00:00
|
|
|
struct wmWindowManager;
|
Animato/2.5 - Graph Editor (i.e. the new 'IPO Editor')
This commit brings back the drawing code for the 'Graph Editor'. I've decided to call it this, as currently it can show either F-Curves for Animation stored in Actions, or F-Curves for Drivers.
Currently, it shows all curves, since some of the necessary filtering code (i.e. for limiting curve visibility) hasn't been put in place yet. At least this serves as good proof that we can have F-Curves from multiple sources at least.
It should be noted that the code still has to be modified to work with some of the new Animato features, such as F-Curve Modifiers (cycles are an example of one of the features that use this). Also, a nicer way to set the colours of the curves needs to be investigated.
Notes:
* Fixed a few bugs in RNA User-Preferences wrapping
* The keyframe drawing uses the new-style drawing for handles from AnimSys2. There's a minor bug that sometimes occurs, where a distorted handle gets drawn at the origin of the grid on the first run. Hints anyone?
* Removed most of the old data from SpaceIpo struct, as the new code uses that. Maybe later, the directories/files at least should get renamed.
* Removed ancient hack for NVidia/TNT drivers. It is probably no longer needed, but could be restored if someone needs it.
2009-01-26 11:33:16 +00:00
|
|
|
struct bAnimContext;
|
|
|
|
struct SpaceIpo;
|
|
|
|
struct ARegion;
|
|
|
|
|
2008-12-12 18:47:12 +00:00
|
|
|
/* internal exports only */
|
2008-01-01 18:29:19 +00:00
|
|
|
|
2009-01-27 05:04:23 +00:00
|
|
|
/* ***************************************** */
|
Animato/2.5 - Graph Editor (i.e. the new 'IPO Editor')
This commit brings back the drawing code for the 'Graph Editor'. I've decided to call it this, as currently it can show either F-Curves for Animation stored in Actions, or F-Curves for Drivers.
Currently, it shows all curves, since some of the necessary filtering code (i.e. for limiting curve visibility) hasn't been put in place yet. At least this serves as good proof that we can have F-Curves from multiple sources at least.
It should be noted that the code still has to be modified to work with some of the new Animato features, such as F-Curve Modifiers (cycles are an example of one of the features that use this). Also, a nicer way to set the colours of the curves needs to be investigated.
Notes:
* Fixed a few bugs in RNA User-Preferences wrapping
* The keyframe drawing uses the new-style drawing for handles from AnimSys2. There's a minor bug that sometimes occurs, where a distorted handle gets drawn at the origin of the grid on the first run. Hints anyone?
* Removed most of the old data from SpaceIpo struct, as the new code uses that. Maybe later, the directories/files at least should get renamed.
* Removed ancient hack for NVidia/TNT drivers. It is probably no longer needed, but could be restored if someone needs it.
2009-01-26 11:33:16 +00:00
|
|
|
/* ipo_draw.c */
|
|
|
|
void graph_draw_channel_names(struct bAnimContext *ac, struct SpaceIpo *sipo, struct ARegion *ar);
|
|
|
|
void graph_draw_curves(struct bAnimContext *ac, struct SpaceIpo *sipo, struct ARegion *ar);
|
2008-01-01 18:29:19 +00:00
|
|
|
|
2009-01-27 05:04:23 +00:00
|
|
|
/* ***************************************** */
|
2008-12-12 18:47:12 +00:00
|
|
|
/* ipo_header.c */
|
Animato/2.5 - Graph Editor (i.e. the new 'IPO Editor')
This commit brings back the drawing code for the 'Graph Editor'. I've decided to call it this, as currently it can show either F-Curves for Animation stored in Actions, or F-Curves for Drivers.
Currently, it shows all curves, since some of the necessary filtering code (i.e. for limiting curve visibility) hasn't been put in place yet. At least this serves as good proof that we can have F-Curves from multiple sources at least.
It should be noted that the code still has to be modified to work with some of the new Animato features, such as F-Curve Modifiers (cycles are an example of one of the features that use this). Also, a nicer way to set the colours of the curves needs to be investigated.
Notes:
* Fixed a few bugs in RNA User-Preferences wrapping
* The keyframe drawing uses the new-style drawing for handles from AnimSys2. There's a minor bug that sometimes occurs, where a distorted handle gets drawn at the origin of the grid on the first run. Hints anyone?
* Removed most of the old data from SpaceIpo struct, as the new code uses that. Maybe later, the directories/files at least should get renamed.
* Removed ancient hack for NVidia/TNT drivers. It is probably no longer needed, but could be restored if someone needs it.
2009-01-26 11:33:16 +00:00
|
|
|
void graph_header_buttons(const bContext *C, struct ARegion *ar);
|
2008-01-01 18:29:19 +00:00
|
|
|
|
2009-01-27 05:04:23 +00:00
|
|
|
/* ***************************************** */
|
|
|
|
/* ipo_select.c */
|
|
|
|
|
|
|
|
void GRAPHEDIT_OT_keyframes_deselectall(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_keyframes_borderselect(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_keyframes_columnselect(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_keyframes_clickselect(struct wmOperatorType *ot);
|
|
|
|
|
|
|
|
/* defines for left-right select tool */
|
|
|
|
enum {
|
|
|
|
GRAPHKEYS_LRSEL_TEST = -1,
|
|
|
|
GRAPHKEYS_LRSEL_NONE,
|
|
|
|
GRAPHKEYS_LRSEL_LEFT,
|
|
|
|
GRAPHKEYS_LRSEL_RIGHT,
|
|
|
|
} eGraphKeys_LeftRightSelect_Mode;
|
|
|
|
|
|
|
|
/* defines for column-select mode */
|
|
|
|
enum {
|
|
|
|
GRAPHKEYS_COLUMNSEL_KEYS = 0,
|
|
|
|
GRAPHKEYS_COLUMNSEL_CFRA,
|
|
|
|
GRAPHKEYS_COLUMNSEL_MARKERS_COLUMN,
|
|
|
|
GRAPHKEYS_COLUMNSEL_MARKERS_BETWEEN,
|
|
|
|
} eGraphKeys_ColumnSelect_Mode;
|
|
|
|
|
|
|
|
/* ***************************************** */
|
|
|
|
/* ipo_edit.c */
|
|
|
|
|
2009-01-28 06:32:47 +00:00
|
|
|
void GRAPHEDIT_OT_set_previewrange(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_view_all(struct wmOperatorType *ot);
|
|
|
|
|
|
|
|
void GRAPHEDIT_OT_keyframes_copy(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_keyframes_paste(struct wmOperatorType *ot);
|
|
|
|
|
2009-02-20 11:17:33 +00:00
|
|
|
void GRAPHEDIT_OT_keyframes_duplicate(struct wmOperatorType *ot);
|
2009-01-28 06:32:47 +00:00
|
|
|
void GRAPHEDIT_OT_keyframes_delete(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_keyframes_clean(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_keyframes_sample(struct wmOperatorType *ot);
|
2009-01-28 09:55:36 +00:00
|
|
|
void GRAPHEDIT_OT_keyframes_smooth(struct wmOperatorType *ot);
|
2009-01-28 06:32:47 +00:00
|
|
|
|
|
|
|
void GRAPHEDIT_OT_keyframes_handletype(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_keyframes_interpolation_type(struct wmOperatorType *ot);
|
2009-01-28 09:55:36 +00:00
|
|
|
void GRAPHEDIT_OT_keyframes_extrapolation_type(struct wmOperatorType *ot);
|
2009-01-28 06:32:47 +00:00
|
|
|
|
|
|
|
void GRAPHEDIT_OT_keyframes_cfrasnap(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_keyframes_snap(struct wmOperatorType *ot);
|
|
|
|
void GRAPHEDIT_OT_keyframes_mirror(struct wmOperatorType *ot);
|
|
|
|
|
|
|
|
/* defines for snap keyframes
|
|
|
|
* NOTE: keep in sync with eEditKeyframes_Snap (in ED_keyframes_edit.h)
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
GRAPHKEYS_SNAP_CFRA = 1,
|
|
|
|
GRAPHKEYS_SNAP_NEAREST_FRAME,
|
|
|
|
GRAPHKEYS_SNAP_NEAREST_SECOND,
|
|
|
|
GRAPHKEYS_SNAP_NEAREST_MARKER,
|
|
|
|
GRAPHKEYS_SNAP_HORIZONTAL,
|
|
|
|
} eGraphKeys_Snap_Mode;
|
|
|
|
|
|
|
|
/* defines for mirror keyframes
|
|
|
|
* NOTE: keep in sync with eEditKeyframes_Mirror (in ED_keyframes_edit.h)
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
GRAPHKEYS_MIRROR_CFRA = 1,
|
|
|
|
GRAPHKEYS_MIRROR_YAXIS,
|
|
|
|
GRAPHKEYS_MIRROR_XAXIS,
|
|
|
|
GRAPHKEYS_MIRROR_MARKER,
|
|
|
|
} eGraphKeys_Mirror_Mode;
|
|
|
|
|
2009-01-27 05:04:23 +00:00
|
|
|
/* ***************************************** */
|
2009-01-26 23:18:27 +00:00
|
|
|
/* ipo_ops.c */
|
|
|
|
void graphedit_keymap(struct wmWindowManager *wm);
|
|
|
|
void graphedit_operatortypes(void);
|
|
|
|
|
2008-12-12 18:47:12 +00:00
|
|
|
|
|
|
|
#endif /* ED_IPO_INTERN_H */
|
2008-01-01 18:29:19 +00:00
|
|
|
|