4 * ***** BEGIN GPL 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
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * The Original Code is Copyright (C) 2007 by Janne Karhu.
24 * All rights reserved.
26 * The Original Code is: all of this file.
28 * Contributor(s): none yet.
30 * ***** END GPL LICENSE BLOCK *****
33 /** \file blender/editors/physics/physics_intern.h
38 #ifndef ED_PHYSICS_INTERN_H
39 #define ED_PHYSICS_INTERN_H
41 struct wmOperatorType;
44 void PARTICLE_OT_select_all(struct wmOperatorType *ot);
45 void PARTICLE_OT_select_roots(struct wmOperatorType *ot);
46 void PARTICLE_OT_select_tips(struct wmOperatorType *ot);
47 void PARTICLE_OT_select_linked(struct wmOperatorType *ot);
48 void PARTICLE_OT_select_less(struct wmOperatorType *ot);
49 void PARTICLE_OT_select_more(struct wmOperatorType *ot);
50 void PARTICLE_OT_select_inverse(struct wmOperatorType *ot);
52 void PARTICLE_OT_hide(struct wmOperatorType *ot);
53 void PARTICLE_OT_reveal(struct wmOperatorType *ot);
55 void PARTICLE_OT_rekey(struct wmOperatorType *ot);
56 void PARTICLE_OT_subdivide(struct wmOperatorType *ot);
57 void PARTICLE_OT_remove_doubles(struct wmOperatorType *ot);
58 void PARTICLE_OT_weight_set(struct wmOperatorType *ot);
59 void PARTICLE_OT_delete(struct wmOperatorType *ot);
60 void PARTICLE_OT_mirror(struct wmOperatorType *ot);
62 void PARTICLE_OT_brush_edit(struct wmOperatorType *ot);
64 void PARTICLE_OT_particle_edit_toggle(struct wmOperatorType *ot);
65 void PARTICLE_OT_edited_clear(struct wmOperatorType *ot);
67 /* particle_object.c */
68 void OBJECT_OT_particle_system_add(struct wmOperatorType *ot);
69 void OBJECT_OT_particle_system_remove(struct wmOperatorType *ot);
71 void PARTICLE_OT_new(struct wmOperatorType *ot);
72 void PARTICLE_OT_new_target(struct wmOperatorType *ot);
73 void PARTICLE_OT_target_remove(struct wmOperatorType *ot);
74 void PARTICLE_OT_target_move_up(struct wmOperatorType *ot);
75 void PARTICLE_OT_target_move_down(struct wmOperatorType *ot);
76 void PARTICLE_OT_connect_hair(struct wmOperatorType *ot);
77 void PARTICLE_OT_disconnect_hair(struct wmOperatorType *ot);
79 void PARTICLE_OT_dupliob_copy(struct wmOperatorType *ot);
80 void PARTICLE_OT_dupliob_remove(struct wmOperatorType *ot);
81 void PARTICLE_OT_dupliob_move_up(struct wmOperatorType *ot);
82 void PARTICLE_OT_dupliob_move_down(struct wmOperatorType *ot);
84 /* particle_boids.c */
85 void BOID_OT_rule_add(struct wmOperatorType *ot);
86 void BOID_OT_rule_del(struct wmOperatorType *ot);
87 void BOID_OT_rule_move_up(struct wmOperatorType *ot);
88 void BOID_OT_rule_move_down(struct wmOperatorType *ot);
90 void BOID_OT_state_add(struct wmOperatorType *ot);
91 void BOID_OT_state_del(struct wmOperatorType *ot);
92 void BOID_OT_state_move_up(struct wmOperatorType *ot);
93 void BOID_OT_state_move_down(struct wmOperatorType *ot);
96 void FLUID_OT_bake(struct wmOperatorType *ot);
98 /* physics_pointcache.c */
99 void PTCACHE_OT_bake_all(struct wmOperatorType *ot);
100 void PTCACHE_OT_free_bake_all(struct wmOperatorType *ot);
101 void PTCACHE_OT_bake(struct wmOperatorType *ot);
102 void PTCACHE_OT_free_bake(struct wmOperatorType *ot);
103 void PTCACHE_OT_bake_from_cache(struct wmOperatorType *ot);
104 void PTCACHE_OT_add(struct wmOperatorType *ot);
105 void PTCACHE_OT_remove(struct wmOperatorType *ot);
107 #endif /* ED_PHYSICS_INTERN_H */