test-kivy-app/kivy_venv/share/kivy-examples/kv/app_logo.kv

37 lines
860 B
Plaintext
Raw Permalink Normal View History

2024-09-15 12:12:16 +00:00
Widget:
Video:
id: myvideo
source: '../widgets/cityCC0.mpg'
play: mybutton.state == 'down'
canvas:
Color:
rgb: (1, 1, 1)
BorderImage:
texture: self.texture
size: self.texture_size
Image:
source: 'kivy.jpg'
canvas:
PushMatrix:
Rotate:
angle: 1
BorderImage:
border: 250, 250, 250, 250
texture: self.texture
size: self.texture_size
PopMatrix:
Button:
id: mybutton
text: 'Push me'
pos: 100, 100
Slider:
width: myvideo.width
height: 25
min: 0
max: myvideo.duration
value: myvideo.position
pos: myvideo.pos