Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Interfaz Gráfica
Search
Hugo Ruscitti
May 08, 2013
0
3.2k
Interfaz Gráfica
Descripción del módulo gui, para el curso de formación profesional 2013
Hugo Ruscitti
May 08, 2013
Tweet
Share
More Decks by Hugo Ruscitti
See All by Hugo Ruscitti
Aprendiendo a programar videojuegos con pilas-engine
hugoruscitti
0
100
Haciendo aplicaciones desktop con NWJS
hugoruscitti
0
270
Taller de programación de videojuegos con pilas-engine
hugoruscitti
0
290
Taller: Introducción a Pilas (por Hugo Ruscitti)
hugoruscitti
0
400
Desarrollo de videojuegos con pilas-engine
hugoruscitti
1
120
Clase 4 - Bocetos y pintura
hugoruscitti
0
810
Haciendo aplicaciones complejas de manera simple
hugoruscitti
0
530
Cómo desarrollar videojuegos con pilas-engine
hugoruscitti
1
400
¡ La Vaca Voladora !
hugoruscitti
0
510
Featured
See All Featured
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.1k
What's in a price? How to price your products and services
michaelherold
246
12k
Leading Effective Engineering Teams in the AI Era
addyosmani
7
680
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
10
640
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.5k
YesSQL, Process and Tooling at Scale
rocio
174
15k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
[RailsConf 2023] Rails as a piece of cake
palkan
57
6k
Java REST API Framework Comparison - PWX 2021
mraible
34
8.9k
Speed Design
sergeychernyshev
32
1.2k
Building Better People: How to give real-time feedback that sticks.
wjessup
370
20k
Building Applications with DynamoDB
mza
96
6.7k
Transcript
Interfaz Gráfica Usando python y pyqt miércoles 8 de mayo
de 13
Interfaz Gráfica Su principal objetivo es proporcionar un entorno visual
sencillo para permitir la comunicación con el sistema operativo. miércoles 8 de mayo de 13
Diferentes sistemas Gráficos miércoles 8 de mayo de 13
Bibliotecas + miércoles 8 de mayo de 13
Instalación sudo apt-get install python-qt4 wget https://raw . github .
com/hugoruscitti/gui/master/gui . py miércoles 8 de mayo de 13
gui import gui ventana = gui.Ventana("Hola!") miércoles 8 de mayo
de 13
gui import gui ventana = gui.Ventana("Hola!") boton = gui.Boton(ventana, "Pulse")
miércoles 8 de mayo de 13
gui import gui ventana = gui.Ventana("Hola!") boton = gui.Boton(ventana, "Pulse")
campo = gui.Campo(ventana, 'ingrese su nombre', 'Pepe') miércoles 8 de mayo de 13
Para mas detalles https://github.com/hugoruscitti/gui miércoles 8 de mayo de 13