src/m/a/matplotlib-HEAD/matplotlib/examples/animation/old_animation/dynamic_image_gtkagg.py matplotlib(Download)
import time
import gobject
import gtk
import matplotlib
matplotlib.use('GTKAgg')
src/m/a/matplotlib-HEAD/matplotlib/examples/animation/old_animation/animation_blit_gtk2.py matplotlib(Download)
import time
import gtk, gobject
import matplotlib
matplotlib.use('GTKAgg')
src/m/a/matplotlib-HEAD/matplotlib/examples/animation/old_animation/animation_blit_gtk.py matplotlib(Download)
# http://www.scipy.org/wikis/topical_software/MatplotlibAnimation
import time
import gtk, gobject
import matplotlib
matplotlib.use('GTKAgg')
src/p/y/pygtk-HEAD/examples/pygtk-demo/demos/ui_manager.py pygtk(Download)
# pygtk version: Maik Hertha <maik.hertha@berlin.de>
import gobject
import gtk
def activate_action(action):
print 'Action "%s" activated' % action.get_name()
src/p/y/pygtk-HEAD/examples/pygtk-demo/demos/tree_store.py pygtk(Download)
# pygtk version: Maik Hertha <maik.hertha@berlin.de> import gobject import gtk # columns (
src/p/y/pygtk-HEAD/examples/pygtk-demo/demos/treemodel.py pygtk(Download)
#!/usr/bin/env python '''Tree View/Generic Tree Model This test is designed to demonstrate creating a new type of tree model in python for use with the new tree widget in gtk 2.0.''' import gtk
src/p/y/pygtk-HEAD/examples/pygtk-demo/demos/tooltip.py pygtk(Download)
fairly straight forward port of the example distributed with gtk. ''' import gtk import cairo import gobject import pango
src/p/y/pygtk-HEAD/examples/pygtk-demo/demos/toolpalette.py pygtk(Download)
"""
# pygtk version: John Stowers <john.stowers@gmail.com>
import gtk
class ToolPaletteDemo(gtk.Window):
def __init__(self, parent=None):
src/p/y/pygtk-HEAD/examples/pygtk-demo/demos/textview.py pygtk(Download)
import sys import gobject import gtk gray50_width = 2 gray50_height = 2
src/p/y/pygtk-HEAD/examples/pygtk-demo/demos/textscroll.py pygtk(Download)
while appending text."""
import gobject
import gtk
class AutomaticScrollingDemo(gtk.Window):
def __init__(self, parent=None):
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next