24 lines
662 B
Python
24 lines
662 B
Python
# -*- coding: utf-8 -*-
|
|
from kivy.lang import Builder
|
|
from kivy.properties import BoundedNumericProperty, ReferenceListProperty
|
|
from kivy.uix.widget import Widget
|
|
|
|
Builder.load_string('''
|
|
<BackgroundColorBehavior>
|
|
canvas:
|
|
Color:
|
|
rgba: self.background_color
|
|
Rectangle:
|
|
size: self.size
|
|
pos: self.pos
|
|
''')
|
|
|
|
|
|
class BackgroundColorBehavior(Widget):
|
|
r = BoundedNumericProperty(1., min=0., max=1.)
|
|
g = BoundedNumericProperty(1., min=0., max=1.)
|
|
b = BoundedNumericProperty(1., min=0., max=1.)
|
|
a = BoundedNumericProperty(0., min=0., max=1.)
|
|
|
|
background_color = ReferenceListProperty(r, g, b, a)
|