2.5 MSVC9 projectfiles

updates:
* stubs.c was moved from editors/screen to python
* RNA: rna_action.c
* Armature: all in editors/armature added.
This commit is contained in:
Andrea Weikert 2009-01-06 09:08:43 +00:00
parent 701091322a
commit aa95fc1768
4 changed files with 40 additions and 12 deletions

@ -358,6 +358,10 @@
RelativePath="..\..\..\source\blender\python\intern\bpy_util.c"
>
</File>
<File
RelativePath="..\..\..\source\blender\python\intern\stubs.c"
>
</File>
</Filter>
</Filter>
<Filter

@ -173,10 +173,6 @@
Name="include"
Filter="h"
>
<File
RelativePath="..\..\..\source\blender\editors\include\BIF_editarmature.h"
>
</File>
<File
RelativePath="..\..\..\source\blender\editors\include\BIF_gl.h"
>
@ -197,6 +193,10 @@
RelativePath="..\..\..\source\blender\editors\include\ED_anim_api.h"
>
</File>
<File
RelativePath="..\..\..\source\blender\editors\include\ED_armature.h"
>
</File>
<File
RelativePath="..\..\..\source\blender\editors\include\ED_datafiles.h"
>
@ -470,10 +470,6 @@
RelativePath="..\..\..\source\blender\editors\screen\screen_ops.c"
>
</File>
<File
RelativePath="..\..\..\source\blender\editors\screen\stubs.c"
>
</File>
</Filter>
<Filter
Name="util"
@ -931,6 +927,34 @@
>
</File>
</Filter>
<Filter
Name="armature"
>
<File
RelativePath="..\..\..\source\blender\editors\armature\armature_intern.h"
>
</File>
<File
RelativePath="..\..\..\source\blender\editors\armature\editarmature.c"
>
</File>
<File
RelativePath="..\..\..\source\blender\editors\armature\meshlaplacian.c"
>
</File>
<File
RelativePath="..\..\..\source\blender\editors\armature\meshlaplacian.h"
>
</File>
<File
RelativePath="..\..\..\source\blender\editors\armature\poseobject.c"
>
</File>
<File
RelativePath="..\..\..\source\blender\editors\armature\reeb.h"
>
</File>
</Filter>
</Files>
<Globals>
</Globals>

@ -592,6 +592,10 @@
RelativePath="..\..\..\source\blender\makesrna\intern\makesrna.c"
>
</File>
<File
RelativePath="..\..\..\source\blender\makesrna\intern\rna_action.c"
>
</File>
<File
RelativePath="..\..\..\source\blender\makesrna\intern\rna_actuator.c"
>

@ -218,11 +218,7 @@ static int node_borderselect_exec(bContext *C, wmOperator *op)
rect.ymax= RNA_int_get(op->ptr, "ymax");
UI_view2d_region_to_view(&ar->v2d, rect.xmax, rect.ymax, &rectf.xmax, &rectf.ymax);
printf("%d - %f %f %f %f\n", val, rectf.xmin, rectf.ymin, rectf.xmax, rectf.ymax);
for(node= snode->edittree->nodes.first; node; node= node->next) {
printf("\t%f %f %f %f\n", node->totr.xmin, node->totr.ymin, node->totr.xmax, node->totr.ymax);
if(BLI_isect_rctf(&rectf, &node->totr, NULL)) {
if(val==NODE_EXTEND)
node->flag |= SELECT;