[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [23497] trunk/blender: Assorted tiny UI tweaks

William Reynish william at reynish.com
Sat Sep 26 18:43:21 CEST 2009


Revision: 23497
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=23497
Author:   billrey
Date:     2009-09-26 18:43:20 +0200 (Sat, 26 Sep 2009)

Log Message:
-----------
Assorted tiny UI tweaks

Modified Paths:
--------------
    trunk/blender/release/ui/buttons_data_camera.py
    trunk/blender/source/blender/editors/screen/screen_ops.c
    trunk/blender/source/blender/editors/space_node/drawnode.c
    trunk/blender/source/blender/editors/space_view3d/view3d_edit.c
    trunk/blender/source/blender/makesrna/intern/rna_image.c

Modified: trunk/blender/release/ui/buttons_data_camera.py
===================================================================
--- trunk/blender/release/ui/buttons_data_camera.py	2009-09-26 16:22:52 UTC (rev 23496)
+++ trunk/blender/release/ui/buttons_data_camera.py	2009-09-26 16:43:20 UTC (rev 23497)
@@ -38,13 +38,13 @@
 
 		layout.itemR(cam, "type", expand=True)
 			
-		row = layout.row(align=True)
+		row = layout.row()
 		if cam.type == 'PERSP':
-			row.itemR(cam, "lens_unit", text="")
 			if cam.lens_unit == 'MILLIMETERS':
 				row.itemR(cam, "lens", text="Angle")
 			elif cam.lens_unit == 'DEGREES':
 				row.itemR(cam, "angle")
+			row.itemR(cam, "lens_unit", text="")
 
 		elif cam.type == 'ORTHO':
 			row.itemR(cam, "ortho_scale")
@@ -86,12 +86,14 @@
 		col.itemR(cam, "show_name", text="Name")
 			
 		col = split.column()
+		col.itemR(cam, "draw_size", text="Size")
+		col.itemS()
 		col.itemR(cam, "show_passepartout", text="Passepartout")
 		sub = col.column()
 		sub.active = cam.show_passepartout
 		sub.itemR(cam, "passepartout_alpha", text="Alpha", slider=True)
-		col.itemR(cam, "draw_size", text="Size")
 		
+		
 bpy.types.register(DATA_PT_context_camera)
 bpy.types.register(DATA_PT_camera)
 bpy.types.register(DATA_PT_camera_display)

Modified: trunk/blender/source/blender/editors/screen/screen_ops.c
===================================================================
--- trunk/blender/source/blender/editors/screen/screen_ops.c	2009-09-26 16:22:52 UTC (rev 23496)
+++ trunk/blender/source/blender/editors/screen/screen_ops.c	2009-09-26 16:43:20 UTC (rev 23497)
@@ -1574,7 +1574,7 @@
 
 static void SCREEN_OT_screen_full_area(wmOperatorType *ot)
 {
-	ot->name = "Toggle Make Area Fullscreen";
+	ot->name = "Toggle Full Screen";
 	ot->idname = "SCREEN_OT_screen_full_area";
 	
 	ot->exec= screen_full_area_exec;
@@ -2097,7 +2097,7 @@
 static void SCREEN_OT_region_foursplit(wmOperatorType *ot)
 {
 	/* identifiers */
-	ot->name= "Split Region in 4 Parts";
+	ot->name= "Toggle Quad View";
 	ot->idname= "SCREEN_OT_region_foursplit";
 	
 	/* api callbacks */
@@ -2347,7 +2347,7 @@
 static void SCREEN_OT_animation_play(wmOperatorType *ot)
 {
 	/* identifiers */
-	ot->name= "Animation player";
+	ot->name= "Play Animation";
 	ot->idname= "SCREEN_OT_animation_play";
 	
 	/* api callbacks */

Modified: trunk/blender/source/blender/editors/space_node/drawnode.c
===================================================================
--- trunk/blender/source/blender/editors/space_node/drawnode.c	2009-09-26 16:22:52 UTC (rev 23496)
+++ trunk/blender/source/blender/editors/space_node/drawnode.c	2009-09-26 16:43:20 UTC (rev 23497)
@@ -1119,15 +1119,15 @@
 	}
 	
 	uiItemR(col, NULL, 0, ptr, "relative", 0);
-	row= uiLayoutRow(col, 1);
+	col= uiLayoutColumn(layout, 1);
 	if (RNA_boolean_get(ptr, "relative")== 1) {
-		uiItemR(row, "X", 0, ptr, "factor_x", 0);
-		uiItemR(row, "Y", 0, ptr, "factor_y", 0);
+		uiItemR(col, "X", 0, ptr, "factor_x", 0);
+		uiItemR(col, "Y", 0, ptr, "factor_y", 0);
 	}
 	
 	else {
-		uiItemR(row, "X", 0, ptr, "sizex", 0);
-		uiItemR(row, "Y", 0, ptr, "sizey", 0);
+		uiItemR(col, "X", 0, ptr, "sizex", 0);
+		uiItemR(col, "Y", 0, ptr, "sizey", 0);
 	}
 }
 
@@ -1140,11 +1140,9 @@
 	
 	col= uiLayoutColumn(layout, 1);
 	uiItemL(col, "Center:", 0);
+	uiItemR(col, "X", 0, ptr, "center_x", 0);
+	uiItemR(col, "Y", 0, ptr, "center_y", 0);
 	
-	row= uiLayoutRow(col, 1);
-	uiItemR(row, "X:", 0, ptr, "center_x", 0);
-	uiItemR(row, "Y", 0, ptr, "center_y", 0);
-	
 	uiItemS(layout);
 	
 	col= uiLayoutColumn(layout, 1);
@@ -1172,7 +1170,7 @@
 {
 	uiLayout *sub, *col;
 	
-	col= uiLayoutColumn(layout, 1);
+	col= uiLayoutColumn(layout, 0);
 	uiItemL(col, "Bokeh Type:", 0);
 	uiItemR(col, "", 0, ptr, "bokeh", 0);
 	uiItemR(col, NULL, 0, ptr, "angle", 0);
@@ -1211,7 +1209,7 @@
 		uiItemR(layout, NULL, 0, ptr, "iterations", 0);
 	
 		if (RNA_enum_get(ptr, "glare_type")!= 0) 
-			uiItemR(layout, NULL, 0, ptr, "color_modulation", 0);
+			uiItemR(layout, NULL, 0, ptr, "color_modulation", UI_ITEM_R_SLIDER);
 	}
 	
 	uiItemR(layout, NULL, 0, ptr, "mix", 0);		
@@ -1222,7 +1220,7 @@
 		uiItemR(layout, NULL, 0, ptr, "angle_offset", 0);
 	}
 	if (RNA_enum_get(ptr, "glare_type")== 0 || RNA_enum_get(ptr, "glare_type")== 2) {
-		uiItemR(layout, NULL, 0, ptr, "fade", 0);
+		uiItemR(layout, NULL, 0, ptr, "fade", UI_ITEM_R_SLIDER);
 		
 		if (RNA_enum_get(ptr, "glare_type")== 0) 
 			uiItemR(layout, NULL, 0, ptr, "rotate_45", 0);
@@ -1237,18 +1235,18 @@
 {	
 	uiLayout *col;
 
-	col = uiLayoutColumn(layout, 1);
+	col = uiLayoutColumn(layout, 0);
 	uiItemR(col, "", 0, ptr, "tonemap_type", 0);
 	if (RNA_enum_get(ptr, "tonemap_type")== 0) {
-		uiItemR(col, NULL, 0, ptr, "key", 0);
+		uiItemR(col, NULL, 0, ptr, "key", UI_ITEM_R_SLIDER);
 		uiItemR(col, NULL, 0, ptr, "offset", 0);
 		uiItemR(col, NULL, 0, ptr, "gamma", 0);
 	}
 	else {
 		uiItemR(col, NULL, 0, ptr, "intensity", 0);
-		uiItemR(col, NULL, 0, ptr, "contrast", 0);
-		uiItemR(col, NULL, 0, ptr, "adaptation", 0);
-		uiItemR(col, NULL, 0, ptr, "correction", 0);
+		uiItemR(col, NULL, 0, ptr, "contrast", UI_ITEM_R_SLIDER);
+		uiItemR(col, NULL, 0, ptr, "adaptation", UI_ITEM_R_SLIDER);
+		uiItemR(col, NULL, 0, ptr, "correction", UI_ITEM_R_SLIDER);
 	}
 }
 
@@ -1270,7 +1268,7 @@
 {
 	uiLayout *col;
 	
-	col= uiLayoutColumn(layout, 1);
+	col= uiLayoutColumn(layout, 0);
 	uiItemR(col, NULL, 0, ptr, "samples", 0);
 	uiItemR(col, "Blur", 0, ptr, "factor", 0);
 	
@@ -1309,7 +1307,7 @@
 {
 	uiLayout *row, *col;
 	
-	col= uiLayoutColumn(layout, 1);
+	col= uiLayoutColumn(layout, 0);
 	row= uiLayoutRow(col, 0);
 	uiItemR(row, NULL, 0, ptr, "axis", UI_ITEM_R_EXPAND);
 	uiItemR(col, NULL, 0, ptr, "factor", 0);
@@ -1351,7 +1349,7 @@
 {
 	uiLayout *col;
 	
-	col =uiLayoutColumn(layout, 1);
+	col =uiLayoutColumn(layout, 0);
 	uiItemR(col, NULL, 0, ptr, "hue", UI_ITEM_R_SLIDER);
 	uiItemR(col, NULL, 0, ptr, "sat", UI_ITEM_R_SLIDER);
 	uiItemR(col, NULL, 0, ptr, "val", UI_ITEM_R_SLIDER);
@@ -1384,7 +1382,7 @@
 {
 	uiLayout *row, *col;
 	
-	col =uiLayoutColumn(layout, 1);
+	col =uiLayoutColumn(layout, 0);
 	uiItemR(col, NULL, 0, ptr, "factor", 0);
 	row= uiLayoutRow(col, 0);
 	uiItemR(row, NULL, 0, ptr, "channel", UI_ITEM_R_EXPAND);
@@ -1392,35 +1390,37 @@
 
 static void node_composit_buts_chroma_matte(uiLayout *layout, PointerRNA *ptr)
 {
-	uiBlock *block= uiLayoutFreeBlock(layout);
-	bNode *node= ptr->data;
-	rctf *butr= &node->butr;
-	short dx=(butr->xmax-butr->xmin)/2;
-	NodeChroma *c= node->storage;
 
-	uiBlockBeginAlign(block);
+	uiLayout *col;
+	
+	col= uiLayoutColumn(layout, 0);
+	uiItemR(col, NULL, 0, ptr, "acceptance", 0);
+	uiItemR(col, NULL, 0, ptr, "cutoff", 0);
+	
+	col= uiLayoutColumn(layout, 1);
+	uiItemR(col, NULL, 0, ptr, "lift", UI_ITEM_R_SLIDER);
+	uiItemR(col, NULL, 0, ptr, "gain", UI_ITEM_R_SLIDER);
+	uiItemR(col, NULL, 0, ptr, "shadow_adjust", UI_ITEM_R_SLIDER);
 
-	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Acceptance ",
-		butr->xmin, butr->ymin+60, butr->xmax-butr->xmin, 20,
-		&c->t1, 1.0f, 80.0f, 100, 0, "Tolerance for colors to be considered a keying color");
-	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Cutoff ",
-		butr->xmin, butr->ymin+40, butr->xmax-butr->xmin, 20,
-		&c->t2, 0.0f, 30.0f, 100, 0, "Colors below this will be considered as exact matches for keying color");
+//	uiBlock *block= uiLayoutFreeBlock(layout);
+//	bNode *node= ptr->data;
+//	rctf *butr= &node->butr;
+//	short dx=(butr->xmax-butr->xmin)/2;
+//	NodeChroma *c= node->storage;
 
-	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Lift ",
-		butr->xmin, butr->ymin+20, dx, 20,
-		&c->fsize, 0.0f, 1.0f, 100, 0, "Alpha Lift");
-	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Gain ",
-		butr->xmin+dx, butr->ymin+20, dx, 20,
-		&c->fstrength, 0.0f, 1.0f, 100, 0, "Alpha Gain");
-
-	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Shadow Adjust ",
-		butr->xmin, butr->ymin, butr->xmax-butr->xmin, 20,
-		&c->t3, 0.0f, 1.0f, 100, 0, "Adjusts the brightness of any shadows captured");
-	uiBlockEndAlign(block);
-
-	if(c->t2 > c->t1)
-		c->t2=c->t1;
+//	uiBlockBeginAlign(block);
+//
+//	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Acceptance ", butr->xmin, butr->ymin+60, butr->xmax-butr->xmin, 20, &c->t1, 1.0f, 80.0f, 100, 0, "Tolerance for colors to be considered a keying color");
+//	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Cutoff ", butr->xmin, butr->ymin+40, butr->xmax-butr->xmin, 20, &c->t2, 0.0f, 30.0f, 100, 0, "Colors below this will be considered as exact matches for keying color");
+//
+//	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Lift ", butr->xmin, butr->ymin+20, dx, 20, &c->fsize, 0.0f, 1.0f, 100, 0, "Alpha Lift");
+//	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Gain ", butr->xmin+dx, butr->ymin+20, dx, 20, &c->fstrength, 0.0f, 1.0f, 100, 0, "Alpha Gain");
+//
+//	uiDefButF(block, NUMSLI, B_NODE_EXEC, "Shadow Adjust ", butr->xmin, butr->ymin, butr->xmax-butr->xmin, 20, &c->t3, 0.0f, 1.0f, 100, 0, "Adjusts the brightness of any shadows captured");
+//	uiBlockEndAlign(block);
+//
+//	if(c->t2 > c->t1)
+//		c->t2=c->t1;
 }
 
 static void node_composit_buts_color_matte(uiLayout *layout, PointerRNA *ptr)

Modified: trunk/blender/source/blender/editors/space_view3d/view3d_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_view3d/view3d_edit.c	2009-09-26 16:22:52 UTC (rev 23496)
+++ trunk/blender/source/blender/editors/space_view3d/view3d_edit.c	2009-09-26 16:43:20 UTC (rev 23497)
@@ -1056,7 +1056,7 @@
 void VIEW3D_OT_view_all(wmOperatorType *ot)
 {
 	/* identifiers */
-	ot->name= "View home";
+	ot->name= "View All";
 	ot->description = "View all objects in scene.";
 	ot->idname= "VIEW3D_OT_view_all";
 
@@ -1195,7 +1195,7 @@
 {
 
 	/* identifiers */
-	ot->name= "View center";
+	ot->name= "View Selected";
 	ot->description = "Move the view to the selection center.";
 	ot->idname= "VIEW3D_OT_view_center";
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_image.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_image.c	2009-09-26 16:22:52 UTC (rev 23496)
+++ trunk/blender/source/blender/makesrna/intern/rna_image.c	2009-09-26 16:43:20 UTC (rev 23497)
@@ -242,7 +242,7 @@
 		{0, NULL, 0, NULL, NULL}};
 	static const EnumPropertyItem prop_field_order_items[]= {
 		{0, "EVEN", 0, "Even", "Even Fields first"},
-		{IMA_STD_FIELD, "Odd", 0, "Odd", "Odd Fields first"},
+		{IMA_STD_FIELD, "ODD", 0, "Odd", "Odd Fields first"},
 		{0, NULL, 0, NULL, NULL}};
 

@@ Diff output truncated at 10240 characters. @@




More information about the Bf-blender-cvs mailing list