filesel.py
字号:
#!/usr/bin/env python# example filesel.pyimport pygtkpygtk.require('2.0')import gtkclass FileSelectionExample: # Get the selected filename and print it to the console def file_ok_sel(self, w): print "%s" % self.filew.get_filename() def destroy(self, widget): gtk.main_quit() def __init__(self): # Create a new file selection widget self.filew = gtk.FileSelection("File selection") self.filew.connect("destroy", self.destroy) # Connect the ok_button to file_ok_sel method self.filew.ok_button.connect("clicked", self.file_ok_sel) # Connect the cancel_button to destroy the widget self.filew.cancel_button.connect("clicked", lambda w: self.filew.destroy()) # Lets set the filename, as if this were a save dialog, # and we are giving a default filename self.filew.set_filename("penguin.png") self.filew.show()def main(): gtk.main() return 0if __name__ == "__main__": FileSelectionExample() main()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -