2009-05-19 15:38:36 +00:00
|
|
|
|
|
|
|
import bpy
|
|
|
|
|
|
|
|
class DataButtonsPanel(bpy.types.Panel):
|
2009-08-22 08:48:01 +00:00
|
|
|
__space_type__ = 'PROPERTIES'
|
|
|
|
__region_type__ = 'WINDOW'
|
2009-05-19 15:38:36 +00:00
|
|
|
__context__ = "data"
|
|
|
|
|
|
|
|
def poll(self, context):
|
2009-06-18 14:20:25 +00:00
|
|
|
return (context.object and context.object.type == 'TEXT' and context.curve)
|
2009-07-09 19:45:27 +00:00
|
|
|
|
2009-07-09 09:42:34 +00:00
|
|
|
class DATA_PT_context_text(DataButtonsPanel):
|
2009-07-26 03:54:17 +00:00
|
|
|
__show_header__ = False
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-06-07 13:36:12 +00:00
|
|
|
def draw(self, context):
|
2009-06-13 21:22:21 +00:00
|
|
|
layout = self.layout
|
|
|
|
|
2009-06-07 13:36:12 +00:00
|
|
|
ob = context.object
|
|
|
|
curve = context.curve
|
|
|
|
space = context.space_data
|
|
|
|
|
|
|
|
split = layout.split(percentage=0.65)
|
|
|
|
|
|
|
|
if ob:
|
2009-06-23 00:19:10 +00:00
|
|
|
split.template_ID(ob, "data")
|
2009-06-07 13:36:12 +00:00
|
|
|
split.itemS()
|
|
|
|
elif curve:
|
2009-06-23 00:19:10 +00:00
|
|
|
split.template_ID(space, "pin_id")
|
2009-06-07 13:36:12 +00:00
|
|
|
split.itemS()
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-07-09 09:07:25 +00:00
|
|
|
class DATA_PT_shape_text(DataButtonsPanel):
|
|
|
|
__label__ = "Shape Text"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.object
|
|
|
|
curve = context.curve
|
2009-09-13 21:36:24 +00:00
|
|
|
space = context.space_data
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-09-01 00:33:39 +00:00
|
|
|
split = layout.split()
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-09-01 00:33:39 +00:00
|
|
|
col = split.column()
|
|
|
|
col.itemL(text="Caps:")
|
2009-09-09 00:10:12 +00:00
|
|
|
row = col.row()
|
|
|
|
row .itemR(curve, "front")
|
|
|
|
row .itemR(curve, "back")
|
|
|
|
# col = split.column()
|
2009-09-01 00:33:39 +00:00
|
|
|
col.itemL(text="Textures:")
|
|
|
|
col.itemR(curve, "uv_orco")
|
|
|
|
col.itemR(curve, "auto_texspace")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-09-01 00:33:39 +00:00
|
|
|
col = split.column()
|
|
|
|
col.itemL(text="Resolution:")
|
|
|
|
sub = col.column(align=True)
|
2009-09-13 21:36:24 +00:00
|
|
|
sub.itemR(curve, "resolution_u", text="Preview")
|
|
|
|
sub.itemR(curve, "render_resolution_u", text="Render")
|
2009-09-09 00:10:12 +00:00
|
|
|
|
|
|
|
# resolution_v is not used for text
|
|
|
|
|
2009-09-01 00:33:39 +00:00
|
|
|
sub = col.column(align=True)
|
|
|
|
col.itemL(text="Display:")
|
2009-09-09 00:10:12 +00:00
|
|
|
col.itemR(curve, "fast", text="Fast Editing")
|
2009-07-09 09:07:25 +00:00
|
|
|
|
2009-07-09 09:42:34 +00:00
|
|
|
class DATA_PT_geometry_text(DataButtonsPanel):
|
2009-07-09 09:07:25 +00:00
|
|
|
__label__ = "Geometry"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-07-28 06:26:10 +00:00
|
|
|
|
2009-07-09 09:07:25 +00:00
|
|
|
curve = context.curve
|
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
2009-07-28 06:26:10 +00:00
|
|
|
col = split.column()
|
|
|
|
col.itemL(text="Modification:")
|
|
|
|
col.itemR(curve, "width")
|
|
|
|
col.itemR(curve, "extrude")
|
2009-09-08 11:31:15 +00:00
|
|
|
col.itemL(text="Taper Object:")
|
|
|
|
col.itemR(curve, "taper_object", text="")
|
2009-07-09 09:07:25 +00:00
|
|
|
|
2009-07-28 06:26:10 +00:00
|
|
|
col = split.column()
|
|
|
|
col.itemL(text="Bevel:")
|
|
|
|
col.itemR(curve, "bevel_depth", text="Depth")
|
|
|
|
col.itemR(curve, "bevel_resolution", text="Resolution")
|
2009-09-08 11:31:15 +00:00
|
|
|
col.itemL(text="Bevel Object:")
|
|
|
|
col.itemR(curve, "bevel_object", text="")
|
2009-07-09 09:07:25 +00:00
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
class DATA_PT_font(DataButtonsPanel):
|
|
|
|
__label__ = "Font"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-07-28 06:26:10 +00:00
|
|
|
|
2009-06-13 21:22:21 +00:00
|
|
|
text = context.curve
|
2009-09-08 11:31:15 +00:00
|
|
|
char = context.curve.edit_format
|
2009-09-09 00:10:12 +00:00
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
layout.itemR(text, "font")
|
|
|
|
|
2009-09-08 11:31:15 +00:00
|
|
|
row = layout.row()
|
|
|
|
row.itemR(text, "text_size", text="Size")
|
|
|
|
row.itemR(text, "shear")
|
2009-09-09 00:10:12 +00:00
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
split = layout.split()
|
|
|
|
|
2009-09-09 00:10:12 +00:00
|
|
|
col = split.column()
|
2009-09-08 11:31:15 +00:00
|
|
|
col.itemL(text="Object Font:")
|
|
|
|
col.itemR(text, "family", text="")
|
2009-09-09 00:10:12 +00:00
|
|
|
|
2009-09-08 11:31:15 +00:00
|
|
|
col = split.column()
|
|
|
|
col.itemL(text="Text on Curve:")
|
|
|
|
col.itemR(text, "text_on_curve", text="")
|
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
|
|
|
col.itemL(text="Character:")
|
|
|
|
col.itemR(char, "bold")
|
|
|
|
col.itemR(char, "italic")
|
|
|
|
col.itemR(char, "underline")
|
|
|
|
# col.itemR(char, "style")
|
|
|
|
# col.itemR(char, "wrap")
|
|
|
|
|
|
|
|
col = split.column(align=True)
|
2009-07-28 06:26:10 +00:00
|
|
|
col.itemL(text="Underline:")
|
|
|
|
col.itemR(text, "ul_position", text="Position")
|
2009-09-08 11:31:15 +00:00
|
|
|
col.itemR(text, "ul_height", text="Thickness")
|
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
|
|
|
|
class DATA_PT_paragraph(DataButtonsPanel):
|
|
|
|
__label__ = "Paragraph"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-07-28 06:26:10 +00:00
|
|
|
|
2009-06-13 21:22:21 +00:00
|
|
|
text = context.curve
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-05-24 12:37:55 +00:00
|
|
|
layout.itemL(text="Align:")
|
|
|
|
layout.itemR(text, "spacemode", expand=True)
|
2009-05-19 15:38:36 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
2009-07-28 06:26:10 +00:00
|
|
|
col = split.column(align=True)
|
|
|
|
col.itemL(text="Spacing:")
|
|
|
|
col.itemR(text, "spacing", text="Character")
|
|
|
|
col.itemR(text, "word_spacing", text="Word")
|
|
|
|
col.itemR(text, "line_dist", text="Line")
|
|
|
|
|
|
|
|
col = split.column(align=True)
|
|
|
|
col.itemL(text="Offset:")
|
2009-08-28 15:03:49 +00:00
|
|
|
col.itemR(text, "offset_x", text="X")
|
|
|
|
col.itemR(text, "offset_y", text="Y")
|
2009-06-13 21:22:21 +00:00
|
|
|
|
2009-09-08 11:31:15 +00:00
|
|
|
|
2009-05-19 15:38:36 +00:00
|
|
|
class DATA_PT_textboxes(DataButtonsPanel):
|
2009-09-08 11:31:15 +00:00
|
|
|
__label__ = "Text Boxes"
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-09-08 11:31:15 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-07-28 06:26:10 +00:00
|
|
|
|
2009-09-08 11:31:15 +00:00
|
|
|
text = context.curve
|
|
|
|
|
2009-09-09 00:10:12 +00:00
|
|
|
for box in text.textboxes:
|
|
|
|
split = layout.box().split()
|
|
|
|
|
|
|
|
col = split.column(align=True)
|
|
|
|
col.itemL(text="Dimensions:")
|
|
|
|
col.itemR(box, "width", text="Width")
|
|
|
|
col.itemR(box, "height", text="Height")
|
|
|
|
|
|
|
|
col = split.column(align=True)
|
|
|
|
col.itemL(text="Offset:")
|
|
|
|
col.itemR(box, "x", text="X")
|
|
|
|
col.itemR(box, "y", text="Y")
|
2009-05-19 15:38:36 +00:00
|
|
|
|
2009-07-09 09:42:34 +00:00
|
|
|
bpy.types.register(DATA_PT_context_text)
|
2009-05-19 15:38:36 +00:00
|
|
|
bpy.types.register(DATA_PT_shape_text)
|
2009-07-09 09:42:34 +00:00
|
|
|
bpy.types.register(DATA_PT_geometry_text)
|
2009-05-19 15:38:36 +00:00
|
|
|
bpy.types.register(DATA_PT_font)
|
|
|
|
bpy.types.register(DATA_PT_paragraph)
|
2009-09-08 11:31:15 +00:00
|
|
|
bpy.types.register(DATA_PT_textboxes)
|