代码搜索:Pygtk

找到约 117 项符合「Pygtk」的源代码

代码结果 117
www.eeworm.com/read/161312/10426341

bluepin

#!/usr/bin/python # # Bluetooth PIN helper # Written by Maxim Krasnyansky # import sys, os, string, popen2, pygtk pygtk.require('2.0') # X Display initialization. # Find running
www.eeworm.com/read/143979/12825320

py comboboxwrap.py

#!/usr/bin/env python import pygtk pygtk.require('2.0') import gtk class ComboBoxWrapExample: def __init__(self): window = gtk.Window() window.connect('destroy', lambda w: gtk.ma
www.eeworm.com/read/143979/12825332

py comboboxentrybasic.py

#!/usr/bin/env python import pygtk pygtk.require('2.0') import gtk class ComboBoxEntryExample: def __init__(self): window = gtk.Window() window.connect('destroy', lambda w: gtk.m
www.eeworm.com/read/143979/12825364

py filelisting-gtm.py

#!/usr/bin/env python import os, stat, time import pygtk pygtk.require('2.0') import gtk folderxpm = [ "17 16 7 1", " c #000000", ". c #808000", "X c yellow", "o c #808080",
www.eeworm.com/read/143979/12825368

py progressbar.py

#!/usr/bin/env python # example progressbar.py import pygtk pygtk.require('2.0') import gtk, gobject # Update the value of the progress bar so that we get # some movement def progress_timeout(pbobj
www.eeworm.com/read/143979/12825370

py images.py

#!/usr/bin/env python # example images.py import pygtk pygtk.require('2.0') import gtk class ImagesExample: # when invoked (via signal delete_event), terminates the application. def close_a
www.eeworm.com/read/143979/12825372

py filelisting.py

#!/usr/bin/env python import os, stat, time import pygtk pygtk.require('2.0') import gtk folderxpm = [ "17 16 7 1", " c #000000", ". c #808000", "X c yellow", "o c #808080",
www.eeworm.com/read/143979/12825380

py colorbutton.py

#!/usr/bin/env python import pygtk pygtk.require('2.0') import gtk class ColorButtonExample: def __init__(self): window = gtk.Window() window.connect('destroy', lambda w: gtk.mai
www.eeworm.com/read/143979/12825414

py eventbox.py

#!/usr/bin/env python # example eventbox.py import pygtk pygtk.require('2.0') import gtk class EventBoxExample: def __init__(self): window = gtk.Window(gtk.WINDOW_TOPLEVEL) wind
www.eeworm.com/read/143979/12825448

py statusbar.py

#!/usr/bin/env python # example statusbar.py import pygtk pygtk.require('2.0') import gtk class StatusbarExample: def push_item(self, widget, data): buff = " Item %d" % self.count