Slide 1

Slide 1 text

Kivy Spaß mit Natural User Interfaces und Python Ernesto Rico-Schmidt PyCon DE 2011 Leipzig, Oktober 2011

Slide 2

Slide 2 text

Inhalt Natural User Interfaces Kivy Das Projekt Installation Hello World Architektur Beispiel Zusammenfassung und Ausblick

Slide 3

Slide 3 text

Natural User Interfaces

Slide 4

Slide 4 text

Natural User Interfaces Wischen Tippen Berühren Gesten

Slide 5

Slide 5 text

Natural User Interfaces Wischen Tippen Berühren Gesten Apple iPhone, iPad, iPod Touch, Mac Touchpad Microsoft Surface Xbox Kinect

Slide 6

Slide 6 text

Natural User Interfaces Wischen Tippen Berühren Gesten Apple iPhone, iPad, iPod Touch, Mac Touchpad Microsoft Surface Xbox Kinect 1. Command-line interface 2. Graphical user interface 3. Natural user interface

Slide 7

Slide 7 text

Kivy Mathieu Virbel Thomas Hansen Christopher Denter

Slide 8

Slide 8 text

Kivy Mathieu Virbel Thomas Hansen Christopher Denter Lightning Talk bei der EuroPython 2011 in Florenz

Slide 9

Slide 9 text

Kivy Mathieu Virbel Thomas Hansen Christopher Denter Lightning Talk bei der EuroPython 2011 in Florenz Linux Mac OS X Windows Android

Slide 10

Slide 10 text

Kivy Mathieu Virbel Thomas Hansen Christopher Denter Lightning Talk bei der EuroPython 2011 in Florenz Linux Mac OS X Windows Android http://kivy.org https://github.com/tito/kivy

Slide 11

Slide 11 text

Installation Python 2.x Cython

Slide 12

Slide 12 text

Installation Python 2.x Cython Optional: OpenCV 2.0 PIL PyCairo PyEnchant Pygame GStreamer Python Bindings

Slide 13

Slide 13 text

Hello World import kivy kivy.require(’1.0.7’) from kivy.app import App from kivy.uix.button import Button class MyApp(App): def build(self): return Button(text=’Hello World’) if __name__ in ’__main__’: MyApp().run()

Slide 14

Slide 14 text

No content

Slide 15

Slide 15 text

Architektur Core Provider Fenster, Bilder, Videos, Sounds, etc. Input Provider Eingabegeräte Graphics OpenGL Abstraktion (Hardware-Beschleunigung) Core Clock, Cache, Gesture Erkennung, Kivy Language, Properties Widgets Buttons, Sliders, etc. Layouts Grid, Box Input Events Touches: Down, Move, Up Widgets und Event Dispatching on_touch_down, on_touch_move, on_touch_up

Slide 16

Slide 16 text

Beispiel from kivy.app import App from kivy.uix.widget import Widget class MyPaintWidget(Widget): pass class MyPaintApp(App): def build(self): return MyPaintWidget() if __name__ == ’__main__’: MyPaintApp().run()

Slide 17

Slide 17 text

from kivy.app import App from kivy.uix.widget import Widget class MyPaintWidget(Widget): def on_touch_down(self, touch): print touch class MyPaintApp(App): def build(self): return MyPaintWidget() if __name__ == ’__main__’: MyPaintApp().run()

Slide 18

Slide 18 text

from kivy.app import App from kivy.uix.widget import Widget from kivy.graphics import Color, Ellipse class MyPaintWidget(Widget): def on_touch_down(self, touch): with self.canvas: Color(1, 1, 0) Ellipse(pos=(touch.x - 15., touch.y - 15.), size=(30., 30.)) class MyPaintApp(App): def build(self): return MyPaintWidget() if __name__ == ’__main__’: MyPaintApp().run()

Slide 19

Slide 19 text

from kivy.app import App from kivy.uix.widget import Widget from kivy.graphics import Color, Ellipse, Line class MyPaintWidget(Widget): def on_touch_down(self, touch): ud = touch.ud with self.canvas: Color(1, 1, 0) Ellipse(pos=(touch.x - 15., touch.y - 15.), size=(30., 30.)) ud[’line’] = Line(points=(touch.x, touch.y)) def on_touch_move(self, touch): touch.ud[’line’].points += [touch.x, touch.y]

Slide 20

Slide 20 text

class MyPaintApp(App): def build(self): return MyPaintWidget() if __name__ == ’__main__’: MyPaintApp().run()

Slide 21

Slide 21 text

from random import random from kivy.app import App from kivy.uix.widget import Widget from kivy.graphics import Color, Ellipse, Line class MyPaintWidget(Widget): def on_touch_down(self, touch): ud = touch.ud ud[’color’] = c = (random(), random(), random()) with self.canvas: Color(*c) Ellipse(pos=(touch.x - 15., touch.y - 15.), size=(30., 30.)) ud[’line’] = Line(points=(touch.x, touch.y)) def on_touch_move(self, touch): touch.ud[’line’].points += [touch.x, touch.y]

Slide 22

Slide 22 text

class MyPaintApp(App): def build(self): return MyPaintWidget() if __name__ == ’__main__’: MyPaintApp().run()

Slide 23

Slide 23 text

from random import random from kivy.app import App from kivy.uix.widget import Widget from kivy.uix.button import Button from kivy.graphics import Color, Ellipse, Line class MyPaintWidget(Widget): def on_touch_down(self, touch): ud = touch.ud ud[’color’] = c = (random(), 1, 1) with self.canvas: Color(*c, mode=’hsv’) Ellipse(pos=(touch.x - 15., touch.y - 15.), size=(30., 30.)) ud[’line’] = Line(points=(touch.x, touch.y)) def on_touch_move(self, touch): touch.ud[’line’].points += [touch.x, touch.y]

Slide 24

Slide 24 text

class MyPaintApp(App): def build(self): parent_widget = Widget() my_paint_widget = MyPaintWidget() clear_button = Button(text=’Clear’) parent_widget.add_widget(my_paint_widget) parent_widget.add_widget(clear_button) def clear_canvas(obj): my_paint_widget.canvas.clear() clear_button.bind(on_release=clear_canvas) return parent if __name__ == ’__main__’: MyPaintApp().run()

Slide 25

Slide 25 text

import kivy from kivy.uix.floatlayout import FloatLayout from kivy.app import App from kivy.properties import ObjectProperty, StringProperty class Controller(FloatLayout): label_wid = ObjectProperty(None) info = StringProperty(’’) def do_action(self): self.label_wid.text = ’My label after button press’ self.info = ’New info text’ class ControllerApp(App): def build(self): return Controller(info=’Hello world’) if __name__ in ’__main__’: ControllerApp().run()

Slide 26

Slide 26 text

#:kivy 1.0 : label_wid: my_custom_label BoxLayout: orientation: ’vertical’ padding: 20 Button: text: ’My controler info is : ’ + root.info on_press: root.do_action() Label: id: my_custom_label text: ’My label before button press’

Slide 27

Slide 27 text

Zusammenfassung und Ausblick Natural User Interfaces Kivy Core Provider Input Provider Gesture-Erkennung Kivy Language Widget Layout http://kivy.org