== Sequencer ==
[plumiferos.git] / source / blender / python / api2_2x / Key.h
blob35e92fc5fea31485c6afe007bf18cb8be8783c59
1 /*
2 * $Id: Key.h 10783 2007-05-26 12:58:46Z campbellbarton $
4 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version. The Blender
10 * Foundation also sells licenses for use in proprietary software under
11 * the Blender License. See http://www.blender.org/BL/ for information
12 * about this.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
24 * All rights reserved.
26 * This is a new part of Blender.
28 * Contributor(s): Pontus Lidman
30 * ***** END GPL/BL DUAL LICENSE BLOCK *****
33 #ifndef EXPP_KEY_H
34 #define EXPP_KEY_H
36 #include "Python.h"
38 #ifdef HAVE_CONFIG_H
39 #include <config.h>
40 #endif
42 #include <DNA_key_types.h>
43 #include <DNA_curve_types.h>
45 extern PyTypeObject Key_Type;
46 extern PyTypeObject KeyBlock_Type;
48 typedef struct {
49 PyObject_HEAD /* required python macro */
50 Key * key; /* libdata must be second */
51 /* Object *object;*/ /* for vertex grouping info, since it's stored on the object */
52 /*PyObject *keyBlock;*/
53 /*PyObject *ipo;*/
54 } BPy_Key;
56 typedef struct {
57 PyObject_HEAD /* required python macro */
58 Key *key;
59 KeyBlock * keyblock;
60 /* Object *object;*/ /* for vertex grouping info, since it's stored on the object */
61 } BPy_KeyBlock;
63 PyObject *Key_CreatePyObject( Key * k );
64 PyObject *KeyBlock_CreatePyObject( KeyBlock * k, Key *parentKey );
66 PyObject *Key_Init( void );
68 #endif /* EXPP_KEY_H */