⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 images.py

📁 pygtk的教程
💻 PY
字号:
#!/usr/bin/env python# example images.pyimport pygtkpygtk.require('2.0')import gtkclass ImagesExample:    # when invoked (via signal delete_event), terminates the application.    def close_application(self, widget, event, data=None):        gtk.main_quit()        return False    # is invoked when the button is clicked.  It just prints a message.    def button_clicked(self, widget, data=None):        print "button %s clicked" % data    def __init__(self):        # create the main window, and attach delete_event signal to terminating        # the application        window = gtk.Window(gtk.WINDOW_TOPLEVEL)        window.connect("delete_event", self.close_application)        window.set_border_width(10)        window.show()        # a horizontal box to hold the buttons        hbox = gtk.HBox()        hbox.show()        window.add(hbox)        pixbufanim = gtk.gdk.PixbufAnimation("goalie.gif")        image = gtk.Image()        image.set_from_animation(pixbufanim)        image.show()        # a button to contain the image widget        button = gtk.Button()        button.add(image)        button.show()        hbox.pack_start(button)        button.connect("clicked", self.button_clicked, "1")                # create several images with data from files and load images into        # buttons        image = gtk.Image()        image.set_from_file("apple-red.png")        image.show()        # a button to contain the image widget        button = gtk.Button()        button.add(image)        button.show()        hbox.pack_start(button)        button.connect("clicked", self.button_clicked, "2")        image = gtk.Image()        image.set_from_file("chaos.jpg")        image.show()        # a button to contain the image widget        button = gtk.Button()        button.add(image)        button.show()        hbox.pack_start(button)        button.connect("clicked", self.button_clicked, "3")        image = gtk.Image()        image.set_from_file("important.tif")        image.show()        # a button to contain the image widget        button = gtk.Button()        button.add(image)        button.show()        hbox.pack_start(button)        button.connect("clicked", self.button_clicked, "4")        image = gtk.Image()        image.set_from_file("soccerball.gif")        image.show()        # a button to contain the image widget        button = gtk.Button()        button.add(image)        button.show()        hbox.pack_start(button)        button.connect("clicked", self.button_clicked, "5")def main():    gtk.main()    return 0if __name__ == "__main__":    ImagesExample()    main()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -