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
300
Taller: Introducción a Pilas (por Hugo Ruscitti)
hugoruscitti
0
400
Desarrollo de videojuegos con pilas-engine
hugoruscitti
1
130
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
410
¡ La Vaca Voladora !
hugoruscitti
0
510
Featured
See All Featured
Documentation Writing (for coders)
carmenintech
76
5.1k
Product Roadmaps are Hard
iamctodd
PRO
55
12k
Raft: Consensus for Rubyists
vanstee
140
7.2k
[RailsConf 2023] Rails as a piece of cake
palkan
57
6.1k
Bash Introduction
62gerente
615
210k
Build The Right Thing And Hit Your Dates
maggiecrowley
38
2.9k
Building Applications with DynamoDB
mza
96
6.8k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
10
690
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.1k
Designing Experiences People Love
moore
142
24k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.8k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
196
67k
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