/usr/share/kivy-examples/kv/app_logo.kv is in python-kivy-examples 1.9.1-1build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | Widget:
Video:
id: myvideo
source: '/home/tito/code/pymt/examples/apps/videoplayer/softboy.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
|