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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 #ifndef ED_PHYSICS_INTERN_H
34 #define ED_PHYSICS_INTERN_H
36 struct wmOperatorType;
39 void PARTICLE_OT_select_all_toggle(struct wmOperatorType *ot);
40 void PARTICLE_OT_select_first(struct wmOperatorType *ot);
41 void PARTICLE_OT_select_last(struct wmOperatorType *ot);
42 void PARTICLE_OT_select_linked(struct wmOperatorType *ot);
43 void PARTICLE_OT_select_less(struct wmOperatorType *ot);
44 void PARTICLE_OT_select_more(struct wmOperatorType *ot);
45 void PARTICLE_OT_select_inverse(struct wmOperatorType *ot);
47 void PARTICLE_OT_hide(struct wmOperatorType *ot);
48 void PARTICLE_OT_reveal(struct wmOperatorType *ot);
50 void PARTICLE_OT_rekey(struct wmOperatorType *ot);
51 void PARTICLE_OT_subdivide(struct wmOperatorType *ot);
52 void PARTICLE_OT_remove_doubles(struct wmOperatorType *ot);
53 void PARTICLE_OT_delete(struct wmOperatorType *ot);
54 void PARTICLE_OT_mirror(struct wmOperatorType *ot);
56 void PARTICLE_OT_brush_set(struct wmOperatorType *ot);
57 void PARTICLE_OT_brush_edit(struct wmOperatorType *ot);
58 void PARTICLE_OT_brush_radial_control(struct wmOperatorType *ot);
60 void PARTICLE_OT_specials_menu(struct wmOperatorType *ot);
62 void PARTICLE_OT_particle_edit_toggle(struct wmOperatorType *ot);
63 void PARTICLE_OT_edited_clear(struct wmOperatorType *ot);
65 /* particle_object.c */
66 void OBJECT_OT_particle_system_add(struct wmOperatorType *ot);
67 void OBJECT_OT_particle_system_remove(struct wmOperatorType *ot);
69 void PARTICLE_OT_new(struct wmOperatorType *ot);
70 void PARTICLE_OT_new_target(struct wmOperatorType *ot);
71 void PARTICLE_OT_remove_target(struct wmOperatorType *ot);
72 void PARTICLE_OT_target_move_up(struct wmOperatorType *ot);
73 void PARTICLE_OT_target_move_down(struct wmOperatorType *ot);
74 void PARTICLE_OT_connect_hair(struct wmOperatorType *ot);
75 void PARTICLE_OT_disconnect_hair(struct wmOperatorType *ot);
77 void PARTICLE_OT_dupliob_copy(struct wmOperatorType *ot);
78 void PARTICLE_OT_dupliob_remove(struct wmOperatorType *ot);
79 void PARTICLE_OT_dupliob_move_up(struct wmOperatorType *ot);
80 void PARTICLE_OT_dupliob_move_down(struct wmOperatorType *ot);
82 /* particle_boids.c */
83 void BOID_OT_rule_add(struct wmOperatorType *ot);
84 void BOID_OT_rule_del(struct wmOperatorType *ot);
85 void BOID_OT_rule_move_up(struct wmOperatorType *ot);
86 void BOID_OT_rule_move_down(struct wmOperatorType *ot);
88 void BOID_OT_state_add(struct wmOperatorType *ot);
89 void BOID_OT_state_del(struct wmOperatorType *ot);
90 void BOID_OT_state_move_up(struct wmOperatorType *ot);
91 void BOID_OT_state_move_down(struct wmOperatorType *ot);
94 void FLUID_OT_bake(struct wmOperatorType *ot);
96 /* physics_pointcache.c */
97 void PTCACHE_OT_bake_all(struct wmOperatorType *ot);
98 void PTCACHE_OT_free_bake_all(struct wmOperatorType *ot);
99 void PTCACHE_OT_bake(struct wmOperatorType *ot);
100 void PTCACHE_OT_free_bake(struct wmOperatorType *ot);
101 void PTCACHE_OT_bake_from_cache(struct wmOperatorType *ot);
102 void PTCACHE_OT_add_new(struct wmOperatorType *ot);
103 void PTCACHE_OT_remove(struct wmOperatorType *ot);
105 #endif /* ED_PHYSICS_INTERN_H */