all tasks

This commit is contained in:
Ingy döt Net 2013-04-11 01:07:29 -07:00
parent b83f433714
commit 68f8f3e56b
14735 changed files with 178959 additions and 0 deletions

View file

@ -0,0 +1,4 @@
import Tkinter
w = Tkinter.Tk()
w.mainloop()

View file

@ -0,0 +1,11 @@
from wxPython.wx import *
class MyApp(wxApp):
def OnInit(self):
frame = wxFrame(NULL, -1, "Hello from wxPython")
frame.Show(true)
self.SetTopWindow(frame)
return true
app = MyApp(0)
app.MainLoop()

View file

@ -0,0 +1,5 @@
import win32ui
from pywin.mfc.dialog import Dialog
d = Dialog(win32ui.IDD_SIMPLE_INPUT)
d.CreateWindow()

View file

@ -0,0 +1,5 @@
import gtk
window = gtk.Window()
window.show()
gtk.main()

View file

@ -0,0 +1,7 @@
from PyQt4.QtGui import *
app = QApplication([])
win = QWidget()
win.show()
app.exec_()