Welcome to mirror list, hosted at ThFree Co, Russian Federation.

buttons_data_curve.py « ui « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8b7d6a324f2126305282131751982d6af292a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144

import bpy

class DataButtonsPanel(bpy.types.Panel):
	__space_type__ = "BUTTONS_WINDOW"
	__region_type__ = "WINDOW"
	__context__ = "data"
	
	def poll(self, context):
		ob = context.object
		return (ob and ob.type == 'CURVE' and context.curve)

class DATA_PT_shape_curve(DataButtonsPanel):
	__idname__ = "DATA_PT_shape_curve"
	__label__ = "Shape"

	def draw(self, context):
		ob = context.object
		curve = context.curve
		space = context.space_data
		layout = self.layout

		split = layout.split(percentage=0.65)

		if ob:
			split.template_ID(context, ob, "data")
			split.itemS()
		elif curve:
			split.template_ID(context, space, "pin_id")
			split.itemS()

		if curve:
			layout.itemS()
			layout.itemR(curve, "curve_2d")			
							
			split = layout.split()
		
			col = split.column()
			colsub = col.column()
			colsub.active = curve.curve_2d
			colsub.itemL(text="Caps:")
			colsub.itemR(curve, "front")
			colsub.itemR(curve, "back")
			
			col.itemL(text="Textures:")
			col.itemR(curve, "uv_orco")
			col.itemR(curve, "auto_texspace")
			
			sub = split.column()	
			sub.itemL(text="Resolution:")
			sub.itemR(curve, "resolution_u", text="Preview U")
			sub.itemR(curve, "resolution_v", text="Preview V")
			sub.itemR(curve, "render_resolution_u", text="Render U")
			sub.itemR(curve, "render_resolution_v", text="Render V")

			sub.itemL(text="Display:")
			sub.itemL(text="HANDLES")
			sub.itemL(text="NORMALS")
			sub.itemR(curve, "vertex_normal_flip")

class DATA_PT_geometry(DataButtonsPanel):
	__idname__ = "DATA_PT_geometry"
	__label__ = "Geometry"

	def draw(self, context):
		curve = context.curve
		layout = self.layout

		split = layout.split()
	
		sub = split.column()
		sub.itemL(text="Modification:")
		sub.itemR(curve, "width")
		sub.itemR(curve, "extrude")
		sub.itemR(curve, "taper_object")
		
		sub = split.column()
		sub.itemL(text="Bevel:")
		sub.itemR(curve, "bevel_depth", text="Depth")
		sub.itemR(curve, "bevel_resolution", text="Resolution")
		sub.itemR(curve, "bevel_object")
	
class DATA_PT_pathanim(DataButtonsPanel):
	__idname__ = "DATA_PT_pathanim"
	__label__ = "Path Animation"
	
	def draw_header(self, context):
		curve = context.curve

		layout = self.layout
		layout.itemR(curve, "path", text="")

	def draw(self, context):
		curve = context.curve
		layout = self.layout
		layout.active = curve.path	
		
		split = layout.split()		
		
		sub = split.column()
		sub.itemR(curve, "path_length", text="Frames")
		sub.itemR(curve, "follow")

		sub = split.column()
		sub.itemR(curve, "stretch")
		sub.itemR(curve, "offset_path_distance", text="Offset Children")
	
class DATA_PT_current_curve(DataButtonsPanel):
	__idname__ = "DATA_PT_current_curve"
	__label__ = "Current Curve"

	def draw(self, context):
		currentcurve = context.curve.curves[0] # XXX
		layout = self.layout

		split = layout.split()
	
		sub = split.column()
		sub.itemL(text="Cyclic:")
		sub.itemR(currentcurve, "cyclic_u", text="U")
		sub.itemR(currentcurve, "cyclic_v", text="V")
		sub.itemL(text="Order:")
		sub.itemR(currentcurve, "order_u", text="U")
		sub.itemR(currentcurve, "order_v", text="V")
		sub.itemL(text="Endpoints:")
		sub.itemR(currentcurve, "endpoint_u", text="U")
		sub.itemR(currentcurve, "endpoint_v", text="V")
		
		sub = split.column()
		sub.itemL(text="Bezier:")
		sub.itemR(currentcurve, "bezier_u", text="U")
		sub.itemR(currentcurve, "bezier_v", text="V")
		sub.itemL(text="Resolution:")
		sub.itemR(currentcurve, "resolution_u", text="U")
		sub.itemR(currentcurve, "resolution_v", text="V")
		sub.itemL(text="Interpolation:")
		sub.itemR(currentcurve, "tilt_interpolation", text="Tilt")
		sub.itemR(currentcurve, "radius_interpolation", text="Tilt")
		sub.itemR(currentcurve, "smooth")
		
bpy.types.register(DATA_PT_shape_curve)
bpy.types.register(DATA_PT_geometry)
bpy.types.register(DATA_PT_pathanim)
bpy.types.register(DATA_PT_current_curve)