代码搜索:pygtk
找到约 117 项符合「pygtk」的源代码
代码结果 117
www.eeworm.com/read/337282/12379364
in pygtk-demo.in
#! @PYTHON@
import sys
import os.path
pygtklibdir = os.path.join("@libdir@", "pygtk", "2.0")
sys.path.insert(0, pygtklibdir)
execfile(os.path.join(pygtklibdir, "pygtk-demo.py"))
www.eeworm.com/read/337282/12379368
py pygtk-demo.py
#!/usr/bin/env python
'''
$Id: pygtk-demo.py 1828 2004-10-01 23:35:38Z finlay $
pygtk-demo.py
2004-07-18: Some enhancements for building the demolist like in gtk-demos of the
gtk+ distribut
www.eeworm.com/read/423632/2025367
spec pygtk2.spec
%define pfx /opt/freescale/rootfs/%{_target_cpu}
Summary : Python bindings for the GTK+ widget set
Name : pygtk2
Version : 2.4.0
Release : 1
License : LGPL
www.eeworm.com/read/348907/10860457
meld
#! /usr/bin/env python
### Copyright (C) 2002-2006 Stephen Kennedy
### This program is free software; you can redistribute it and/or modify
### it under the terms of the GNU Gener
www.eeworm.com/read/369274/9657189
meld
#! /usr/bin/env python
### Copyright (C) 2002-2006 Stephen Kennedy
### This program is free software; you can redistribute it and/or modify
### it under the terms of the GNU Gener
www.eeworm.com/read/116026/14992288
cftp
#!/usr/bin/env python
import sys
try:
import pygtk
pygtk.require('2.0')
except:
print "This program require pygtk 2.x"
sys.exit(1)
from coralftp import main
f = main.CoralFTP()
f.s
www.eeworm.com/read/143979/12825319
py base.py
#!/usr/bin/env python
# example base.py
import pygtk
pygtk.require('2.0')
import gtk
class Base:
def __init__(self):
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.sh
www.eeworm.com/read/143979/12825406
py socket.py
#!/usr/bin/python
import string
import pygtk
pygtk.require('2.0')
import gtk,sys
window = gtk.Window()
window.show()
socket = gtk.Socket()
socket.show()
window.add(socket)
print "Socket ID=", soc