~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to source/blender/editors/object/object_intern.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
enum {
44
44
        OBJECT_ADDHOOK_NEWOB = 1,
45
45
        OBJECT_ADDHOOK_SELOB,
 
46
        OBJECT_ADDHOOK_SELOB_BONE
46
47
} eObject_Hook_Add_Mode;
47
48
 
48
49
/* internal exports only */
84
85
void OBJECT_OT_shade_smooth(struct wmOperatorType *ot);
85
86
void OBJECT_OT_shade_flat(struct wmOperatorType *ot);
86
87
void OBJECT_OT_paths_calculate(struct wmOperatorType *ot);
 
88
void OBJECT_OT_paths_update(struct wmOperatorType *ot);
87
89
void OBJECT_OT_paths_clear(struct wmOperatorType *ot);
88
90
void OBJECT_OT_forcefield_toggle(struct wmOperatorType *ot);
89
91
 
110
112
void OBJECT_OT_metaball_add(struct wmOperatorType *ot);
111
113
void OBJECT_OT_text_add(struct wmOperatorType *ot);
112
114
void OBJECT_OT_armature_add(struct wmOperatorType *ot);
 
115
void OBJECT_OT_empty_add(struct wmOperatorType *ot);
113
116
void OBJECT_OT_lamp_add(struct wmOperatorType *ot);
114
117
void OBJECT_OT_effector_add(struct wmOperatorType *ot);
115
118
void OBJECT_OT_camera_add(struct wmOperatorType *ot);
124
127
void OBJECT_OT_convert(struct wmOperatorType *ot);
125
128
 
126
129
/* object_hook.c */
127
 
void OBJECT_OT_hook_add_selobj(struct wmOperatorType *ot);
128
 
void OBJECT_OT_hook_add_newobj(struct wmOperatorType *ot);
 
130
void OBJECT_OT_hook_add_selob(struct wmOperatorType *ot);
 
131
void OBJECT_OT_hook_add_newob(struct wmOperatorType *ot);
129
132
void OBJECT_OT_hook_remove(struct wmOperatorType *ot);
130
133
void OBJECT_OT_hook_select(struct wmOperatorType *ot);
131
134
void OBJECT_OT_hook_assign(struct wmOperatorType *ot);
135
138
/* object_lattice.c */
136
139
void LATTICE_OT_select_all(struct wmOperatorType *ot);
137
140
void LATTICE_OT_make_regular(struct wmOperatorType *ot);
 
141
void LATTICE_OT_flip(struct wmOperatorType *ot);
138
142
 
139
143
/* object_group.c */
140
144
void GROUP_OT_create(struct wmOperatorType *ot);
 
145
void GROUP_OT_objects_remove_all(struct wmOperatorType *ot);
141
146
void GROUP_OT_objects_remove(struct wmOperatorType *ot);
142
147
void GROUP_OT_objects_add_active(struct wmOperatorType *ot);
143
148
void GROUP_OT_objects_remove_active(struct wmOperatorType *ot);
159
164
void OBJECT_OT_meshdeform_bind(struct wmOperatorType *ot);
160
165
void OBJECT_OT_explode_refresh(struct wmOperatorType *ot);
161
166
void OBJECT_OT_ocean_bake(struct wmOperatorType *ot);
 
167
void OBJECT_OT_skin_root_mark(struct wmOperatorType *ot);
 
168
void OBJECT_OT_skin_loose_mark_clear(struct wmOperatorType *ot);
 
169
void OBJECT_OT_skin_radii_equalize(struct wmOperatorType *ot);
 
170
void OBJECT_OT_skin_armature_create(struct wmOperatorType *ot);
162
171
 
163
172
/* object_constraint.c */
164
173
void OBJECT_OT_constraint_add(struct wmOperatorType *ot);
185
194
void CONSTRAINT_OT_childof_set_inverse(struct wmOperatorType *ot);
186
195
void CONSTRAINT_OT_childof_clear_inverse(struct wmOperatorType *ot);
187
196
void CONSTRAINT_OT_objectsolver_set_inverse(struct wmOperatorType *ot);
188
 
void CONSTRAINT_OT_objectsolver_clear_inverse (struct wmOperatorType *ot);
 
197
void CONSTRAINT_OT_objectsolver_clear_inverse(struct wmOperatorType *ot);
 
198
void CONSTRAINT_OT_followpath_path_animate(struct wmOperatorType *ot);
189
199
 
190
200
/* object_vgroup.c */
191
201
void OBJECT_OT_vertex_group_add(struct wmOperatorType *ot);
195
205
void OBJECT_OT_vertex_group_select(struct wmOperatorType *ot);
196
206
void OBJECT_OT_vertex_group_deselect(struct wmOperatorType *ot);
197
207
void OBJECT_OT_vertex_group_copy_to_linked(struct wmOperatorType *ot);
 
208
void OBJECT_OT_vertex_group_transfer_weight(struct wmOperatorType *ot);
198
209
void OBJECT_OT_vertex_group_copy_to_selected(struct wmOperatorType *ot);
199
210
void OBJECT_OT_vertex_group_copy(struct wmOperatorType *ot);
200
211
void OBJECT_OT_vertex_group_normalize(struct wmOperatorType *ot);
205
216
void OBJECT_OT_vertex_group_invert(struct wmOperatorType *ot);
206
217
void OBJECT_OT_vertex_group_blend(struct wmOperatorType *ot);
207
218
void OBJECT_OT_vertex_group_clean(struct wmOperatorType *ot);
 
219
void OBJECT_OT_vertex_group_limit_total(struct wmOperatorType *ot);
208
220
void OBJECT_OT_vertex_group_mirror(struct wmOperatorType *ot);
209
221
void OBJECT_OT_vertex_group_set_active(struct wmOperatorType *ot);
210
222
void OBJECT_OT_vertex_group_sort(struct wmOperatorType *ot);