File size: 8,168 Bytes
c1ce505
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
<DeepSVGWidget>:
    orientation: "vertical"

    Header:
        id: header

    BoxLayout:
        orientation: "horizontal"

        Sidebar:
            id: sidebar_scroll

        StencilView:
            size_hint: 1, 1

            canvas.before:
                Color:
                    rgb: 0.89, 0.89, 0.89
                Rectangle:
                    pos: self.pos
                    size: self.size

            EditorView:
                id: editor

    TimeLine:
        id: timeline_scroll


<Header>:
    orientation: "horizontal"
    size_hint_y: None
    height: 50

    canvas.before:
        Color:
            rgb: 0, 0, 0
        Rectangle:
            pos: self.pos
            size: self.size
    HeaderIcon:
        source: "deepsvg/gui/res/hand.png"
        index: 0

    HeaderIcon:
        source: "deepsvg/gui/res/pen.png"
        index: 1

    HeaderIcon:
        source: "deepsvg/gui/res/pencil.png"
        index: 2

    Padding

    HeaderButton:
        text: "Clear all"
        on_press: root.on_erase()

    Padding

    HeaderButton:
        text: "Done"
        on_press: root.on_done()

    Label

    Padding

    TitleWidget:
        text: root.title
        on_text: root.on_title(self.text)

    Padding

    Label

    HeaderButton:
        text: "Add frame"
        on_press: root.add_frame()

    Padding

    HeaderButton:
        text: "Interpolate"
        on_press: root.interpolate()

    Padding

    HeaderIcon:
        index: 3
        source: "deepsvg/gui/res/pause.png" if root.is_playing else "deepsvg/gui/res/play.png"
        on_press: root.pause_animation() if root.is_playing else root.play_animation()


<TitleWidget>:
    size_hint_x: None
    width: 150

    multiline: False
    background_color: 0, 0, 0, 1
    background_active: ""
    background_normal: ""
    halign: "center"
    valign: "middle"
    foreground_color: 1, 1, 1, 1
    hint_text_color: 1, 1, 1, 1
    cursor_color: 1, 1, 1, 1

<Sidebar>:
    do_scroll_x: False
    size_hint_x: None
    width: 225

    canvas.before:
        Color:
            rgb: 1, 1, 1
        Rectangle:
            pos: self.pos
            size: self.size

        Color:
            rgb: 0.8, 0.8, 0.8
        Line:
            width: 1
            rectangle: self.x, self.y, self.width, self.height

    BoxLayout:
        id: sidebar

        orientation: "vertical"
        size_hint_y: None
        height: self.children[0].height * len(self.children) if self.children else 0


<PathLayerView>
    orientation: "horizontal"
    size_hint_y: None
    height: 40

    canvas:
        Color:
            rgb: (0.08, 0.58, 0.97) if self.parent is not None and self.index == self.parent.parent.selected_path_idx else (1, 1, 1)
        Rectangle:
            pos: self.pos
            size: self.size
        Color:
            rgb: 0.8, 0.8, 0.8
        Line:
            width: 1
            rectangle: self.x, self.y, self.width, self.height

    Label:
        color: 0, 0, 0, 1
        size_hint_x: None
        text: str(root.index)
        width: self.texture_size[0]
        padding_x: 10

    Label

    Image:
        size_hint_x: None
        source: root.source
        nocache: True

    Label

    UpButton

    DownButton

    Padding

    ReverseButton

    Label


<UpButton>:
    size_hint: None, None
    height: 0.6 * self.parent.height
    pos_hint: {'top': 0.8}
    width: self.height

    background_normal: ""
    background_down: ""
    background_color: 0.3, 0.3, 0.3, 1

    Image:
        source: "deepsvg/gui/res/up.png"
        center: self.parent.center

<DownButton>:
    size_hint: None, None
    height: 0.6 * self.parent.height
    pos_hint: {'top': 0.8}
    width: self.height

    background_normal: ""
    background_down: ""
    background_color: 0.3, 0.3, 0.3, 1

    Image:
        source: "deepsvg/gui/res/down.png"
        center: self.parent.center

<ReverseButton>:
    size_hint: None, None
    height: 0.6 * self.parent.height
    pos_hint: {'top': 0.8}
    width: self.height

    background_normal: ""
    background_down: ""
    background_color: 0.3, 0.3, 0.3, 1

    Image:
        source: "deepsvg/gui/res/switch.png"
        center: self.parent.center


<BezierSegment>:
    canvas:
        Color:
            rgb: .769, .769, .769
        Line:
            points: [*self.p1, *self.q1] if root.parent and root.parent.selected and self.is_curved else []
            dash_length: 5
            dash_offset: 5
        Line:
            points: [*self.q2, *self.p2] if root.parent and root.parent.selected and self.is_curved else []
            dash_length: 5
            dash_offset: 5
        Color:
            rgb: tuple(root.parent.color) if root.parent is not None else (.043, .769, 1)
        Line:
            bezier: ([*self.p1, *self.q1, *self.q2, *self.p2] if self.is_curved else [*self.p1, *self.p2]) if self.is_finished else [-10000, -10000]
            width: 1.1
        Color:
            rgb: 1, .616, .043
        Point:
            points: [*self.p1, *self.p2] if root.parent and root.parent.selected else []
            pointsize: 1.5
        Color:
            rgb: .769, .769, .769
        Point:
            points: [*self.q1, *self.q2] if self.is_curved and root.parent and root.parent.selected else []
            pointsize: 1.5


<BezierPath>


<Sketch>:
    canvas:
        Color:
            rgb: root.color
        Line:
            points: root.points
            width: 1.2


<EditorView>:
    size_hint: None, None
    size: draw_viewbox.size
    center: self.parent.center
    scale: 1.5

    DrawViewbox:
        id: draw_viewbox


<DrawViewbox>
    size: 256, 256

    canvas.before:
        Color:
            rgb: 1, 1, 1
        Rectangle:
            pos: self.pos
            size: self.size

<TimeLine>:
    do_scroll_y: False
    size_hint_y: None
    height: 50

    canvas.before:
        Color:
            rgb: 1, 1, 1
        Rectangle:
            pos: self.pos
            size: self.size

        Color:
            rgb: 0.8, 0.8, 0.8
        Line:
            width: 1
            rectangle: self.x, self.y, self.width, self.height

    BoxLayout:
        id: timeline

        orientation: "horizontal"
        size_hint_x: None
        width: 50 * len(self.children) if self.children else 0


<FrameView>
    size_hint_x: None
    width: self.height

    color: 0, 0, 0, 1
    text: str(self.index)

    background_normal: ""
    background_down: ""
    background_color: (0.08, 0.58, 0.97, 1) if self.parent and self.index == self.parent.parent.selected_frame and self.keyframe else (0.48, 0.78, 1, 1) if self.parent and self.index == self.parent.parent.selected_frame and not self.keyframe else (1, 0.67, 0.19, 1) if self.keyframe else (1, 1, 1, 1)

    canvas:
        Color:
            rgb: 0.8, 0.8, 0.8
        Line:
            width: 1
            rectangle: self.x, self.y, self.width, self.height


<HeaderIcon>:
    size_hint_x: None
    width: self.height

    canvas:
        Color:
            rgb: (0.08, 0.58, 0.97) if self.index == self.parent.selected_tool else (0, 0, 0)
        Rectangle:
            pos: self.pos
            size: self.size

    Image:
        source: self.parent.source
        center: self.parent.center

<HeaderButton>:
    size_hint: None, None
    height: 0.8 * self.parent.height
    pos_hint: {'top': 0.9}
    width: self.texture_size[0] + 40

<Padding>:
    size_hint_x: None
    width: 10



<FileChoosePopup>:
    title: "Import SVG file"
    size_hint: .9, .9
    auto_dismiss: True

    BoxLayout:
        orientation: "vertical"
        FileChooserIconView:
            id: filechooser
            path: root.path

        BoxLayout:
            size_hint_x: 1
            size_hint_y: None
            height: 50
            pos_hint: {'center_x': .5, 'center_y': .5}
            spacing: 20
            Button:
                text: "Cancel"
                on_release: root.dismiss()
            Button:
                text: "Load"
                on_release: root.load(filechooser.selection)
                id: ldbtn
                disabled: True if filechooser.selection==[] else False