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

properties_data_text.py « ui « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: baaf94553c2ec95542e18349d932d139f632aaab (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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# This software is distributable under the terms of the GNU
# General Public License (GPL) v2, the text of which can be found at
# http://www.gnu.org/copyleft/gpl.html. Installing, importing or otherwise
# using this module constitutes acceptance of the terms of this License.

# <pep8 compliant>
import bpy


class DataButtonsPanel(bpy.types.Panel):
    bl_space_type = 'PROPERTIES'
    bl_region_type = 'WINDOW'
    bl_context = "data"

    def poll(self, context):
        return (context.object and context.object.type == 'TEXT' and context.curve)


class DATA_PT_context_text(DataButtonsPanel):
    bl_label = ""
    bl_show_header = False

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

        ob = context.object
        curve = context.curve
        space = context.space_data

        split = layout.split(percentage=0.65)

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


class DATA_PT_shape_text(DataButtonsPanel):
    bl_label = "Shape Text"

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

        ob = context.object
        curve = context.curve
        space = context.space_data

        split = layout.split()

        col = split.column()
        col.itemL(text="Caps:")
        row = col.row()
        row .itemR(curve, "front")
        row .itemR(curve, "back")
        # col = split.column()
        col.itemL(text="Textures:")
        col.itemR(curve, "uv_orco")
        col.itemR(curve, "auto_texspace")

        col = split.column()
        col.itemL(text="Resolution:")
        sub = col.column(align=True)
        sub.itemR(curve, "resolution_u", text="Preview")
        sub.itemR(curve, "render_resolution_u", text="Render")

        # resolution_v is not used for text

        sub = col.column(align=True)
        col.itemL(text="Display:")
        col.itemR(curve, "fast", text="Fast Editing")


class DATA_PT_geometry_text(DataButtonsPanel):
    bl_label = "Geometry"

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

        curve = context.curve

        split = layout.split()

        col = split.column()
        col.itemL(text="Modification:")
        col.itemR(curve, "width")
        col.itemR(curve, "extrude")
        col.itemL(text="Taper Object:")
        col.itemR(curve, "taper_object", text="")

        col = split.column()
        col.itemL(text="Bevel:")
        col.itemR(curve, "bevel_depth", text="Depth")
        col.itemR(curve, "bevel_resolution", text="Resolution")
        col.itemL(text="Bevel Object:")
        col.itemR(curve, "bevel_object", text="")


class DATA_PT_font(DataButtonsPanel):
    bl_label = "Font"

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

        text = context.curve
        char = context.curve.edit_format

        layout.itemR(text, "font")

        row = layout.row()
        row.itemR(text, "text_size", text="Size")
        row.itemR(text, "shear")

        split = layout.split()

        col = split.column()
        col.itemL(text="Object Font:")
        col.itemR(text, "family", text="")

        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)
        col.itemL(text="Underline:")
        col.itemR(text, "ul_position", text="Position")
        col.itemR(text, "ul_height", text="Thickness")


class DATA_PT_paragraph(DataButtonsPanel):
    bl_label = "Paragraph"

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

        text = context.curve

        layout.itemL(text="Align:")
        layout.itemR(text, "spacemode", expand=True)

        split = layout.split()

        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:")
        col.itemR(text, "offset_x", text="X")
        col.itemR(text, "offset_y", text="Y")


class DATA_PT_textboxes(DataButtonsPanel):
    bl_label = "Text Boxes"

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

        text = context.curve

        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")

bpy.types.register(DATA_PT_context_text)
bpy.types.register(DATA_PT_shape_text)
bpy.types.register(DATA_PT_geometry_text)
bpy.types.register(DATA_PT_font)
bpy.types.register(DATA_PT_paragraph)
bpy.types.register(DATA_PT_textboxes)