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 *****
|
|
|
|
*/
|
|
|
|
#ifndef ED_OBJECT_H
|
|
|
|
#define ED_OBJECT_H
|
|
|
|
|
2008-12-23 19:47:33 +00:00
|
|
|
struct wmWindowManager;
|
2008-12-30 13:16:14 +00:00
|
|
|
struct Scene;
|
2008-12-23 19:47:33 +00:00
|
|
|
struct Object;
|
2008-12-29 12:15:42 +00:00
|
|
|
struct bContext;
|
|
|
|
struct Base;
|
2009-01-05 15:19:31 +00:00
|
|
|
struct View3D;
|
2009-01-10 19:34:23 +00:00
|
|
|
struct bConstraint;
|
2008-12-23 19:47:33 +00:00
|
|
|
|
|
|
|
void ED_operatortypes_object(void);
|
|
|
|
void ED_keymap_object(struct wmWindowManager *wm);
|
|
|
|
|
2008-12-29 12:15:42 +00:00
|
|
|
/* send your own notifier for select! */
|
|
|
|
void ED_base_object_select(struct Base *base, short mode);
|
|
|
|
/* includes notifier */
|
2008-12-29 13:02:18 +00:00
|
|
|
void ED_base_object_activate(struct bContext *C, struct Base *base);
|
2008-12-29 12:15:42 +00:00
|
|
|
|
2008-12-30 13:16:14 +00:00
|
|
|
void ED_base_object_free_and_unlink(struct Scene *scene, struct Base *base);
|
|
|
|
|
2009-01-05 15:19:31 +00:00
|
|
|
void ED_object_apply_obmat(struct Object *ob);
|
|
|
|
|
|
|
|
|
2009-01-01 18:05:12 +00:00
|
|
|
/* bitflags for enter/exit editmode */
|
|
|
|
#define EM_FREEDATA 1
|
|
|
|
#define EM_FREEUNDO 2
|
|
|
|
#define EM_WAITCURSOR 4
|
|
|
|
void ED_object_exit_editmode(struct bContext *C, int flag);
|
|
|
|
void ED_object_enter_editmode(struct bContext *C, int flag);
|
2008-12-30 13:16:14 +00:00
|
|
|
|
2009-01-05 15:19:31 +00:00
|
|
|
void ED_object_base_init_from_view(struct Scene *scene, struct View3D *v3d, struct Base *base);
|
|
|
|
|
2008-12-23 19:47:33 +00:00
|
|
|
/* cleanup */
|
|
|
|
int object_data_is_libdata(struct Object *ob);
|
|
|
|
int object_is_libdata(struct Object *ob);
|
2008-01-01 18:29:19 +00:00
|
|
|
|
2009-01-10 19:34:23 +00:00
|
|
|
/* constraints */
|
|
|
|
struct bConstraint *add_new_constraint (short type);
|
|
|
|
void add_constraint_to_object (struct bConstraint *con, struct Object *ob);
|
|
|
|
|
2009-01-13 15:18:41 +00:00
|
|
|
/* editlattice.c */
|
|
|
|
void mouse_lattice(struct bContext *C, short mval[2], int extend);
|
|
|
|
|
2009-01-14 12:26:45 +00:00
|
|
|
/* editkey.c */
|
2009-01-13 15:18:41 +00:00
|
|
|
void insert_shapekey(struct Scene *scene, struct Object *ob);
|
|
|
|
void delete_key(struct Scene *scene, struct Object *ob);
|
2009-01-14 12:26:45 +00:00
|
|
|
void key_to_mesh(struct KeyBlock *kb, struct Mesh *me);
|
|
|
|
void mesh_to_key(struct Mesh *me, struct KeyBlock *kb);
|
|
|
|
void key_to_latt(struct KeyBlock *kb, struct Lattice *lt);
|
|
|
|
void latt_to_key(struct Lattice *lt, struct KeyBlock *kb);
|
|
|
|
void key_to_curve(struct KeyBlock *kb, struct Curve *cu, struct ListBase *nurb);
|
|
|
|
void curve_to_key(struct Curve *cu, struct KeyBlock *kb, struct ListBase *nurb);
|
|
|
|
|
|
|
|
|
2009-01-10 19:34:23 +00:00
|
|
|
|
2008-01-01 18:29:19 +00:00
|
|
|
#endif /* ED_OBJECT_H */
|
|
|
|
|