comparison cagou/kv/common.kv @ 134:1cca97e27a69

core (common): new Symbol widget: it uses font icon to display a symbol by name (should move to direct svg rendering once it's stable in Kivy). bg_color property allows to change background color. margin property allows to display a margin around the symbol
author Goffi <goffi@goffi.org>
date Fri, 06 Apr 2018 16:13:08 +0200
parents 36fc269e2a32
children 654b00fa3fdc
comparison
equal deleted inserted replaced
133:c3aa71daceb8 134:1cca97e27a69
35 halign: 'left' 35 halign: 'left'
36 valign: 'middle' 36 valign: 'middle'
37 padding_x: dp(20) 37 padding_x: dp(20)
38 38
39 39
40 <Symbol>:
41 font_name: app.expand('{media}/fonts/fontello/font/fontello.ttf')
42 text_size: self.size
43 font_size: self.width - self.margin
44 margin: dp(5)
45 halign: 'center'
46 valign: 'middle'
47 bg_color: 1, 1, 1, 1
48 canvas.before:
49 Color:
50 rgba: self.bg_color
51 Rectangle:
52 pos: self.pos
53 size: self.size