Graphical user interfaces for Python programs Phần 5 potx

1 196 0
Graphical user interfaces for Python programs Phần 5 potx

Đang tải... (xem toàn văn)

Thông tin tài liệu

252 CHAPTER 10 DRAWING BLOBS AND RUBBER LINES from Tkinter import * class ScrolledCanvas: def __init__(self, master, width=500, height=350): Label(master, text="This window displays a canvas widget " "that can be scrolled either using the scrollbars or " "by dragging with button 3 in the canvas. If you " "click button 1 on one of the rectangles, its indices " "will be printed on stdout.", wraplength="4i", justify=LEFT).pack(side=TOP) self.control=Frame(master) self.control.pack(side=BOTTOM, fill=X, padx=2) Button(self.control, text='Quit', command=master.quit).pack() self.grid = Frame(master) self.canvas = Canvas(master, relief=SUNKEN, borderwidth=2, scrollregion=('-11c', '-11c', '50c', '20c')) self.hscroll = Scrollbar(master, orient=HORIZONTAL, command=self.canvas.xview) self.vscroll = Scrollbar(master, command=self.canvas.yview) self.canvas.configure(xscrollcommand=self.hscroll.set, yscrollcommand=self.vscroll.set) self.grid.pack(expand=YES, fill=BOTH, padx=1, pady=1) self.grid.rowconfigure(0, weight=1, minsize=0) self.grid.columnconfigure(0, weight=1, minsize=0) self.canvas.grid(padx=1, in_=self.grid, pady=1, row=0, column=0, rowspan=1, columnspan=1, sticky='news') self.vscroll.grid(padx=1, in_=self.grid, pady=1, row=0, column=1, rowspan=1, columnspan=1, sticky='news') self.hscroll.grid(padx=1, in_=self.grid, pady=1, row=1, column=0, rowspan=1, columnspan=1, sticky='news') self.oldFill = None bg = self.canvas['background'] for i in range(20): x = -10 + 3*i y = -10 for j in range(10): self.canvas.create_rectangle('%dc'%x, '%dc'%y, '%dc'%(x+2), '%dc'%(y+2), outline='black', fill=bg, tags='rect') self.canvas.create_text('%dc'%(x+1), '%dc'%(y+1), text='%d,%d'%(i,j), anchor=CENTER, tags=('text', 'rect')) y = y + 3 self.canvas.tag_bind('rect', '<Any-Enter>', self.scrollEnter) self.canvas.tag_bind('rect', '<Any-Leave>', self.scrollLeave) self.canvas.bind_all('<1>', self.scrollButton) self.canvas.bind('<3>', lambda e, s=self: s.canvas.scan_mark(e.x, e.y)) self.canvas.bind('<B3-Motion>', lambda e, s=self: s.canvas.scan_dragto(e.x, e.y)) cscroll.py 1 2 3 . 252 CHAPTER 10 DRAWING BLOBS AND RUBBER LINES from Tkinter import * class ScrolledCanvas: def __init__(self, master, width =50 0, height= 350 ): Label(master, text="This. sticky='news') self.oldFill = None bg = self.canvas['background'] for i in range(20): x = -10 + 3*i y = -10 for j in range(10): self.canvas.create_rectangle('%dc'%x, '%dc'%y, '%dc'%(x+2),. Canvas(master, relief=SUNKEN, borderwidth=2, scrollregion=('-11c', '-11c', &apos ;50 c', '20c')) self.hscroll = Scrollbar(master, orient=HORIZONTAL, command=self.canvas.xview) self.vscroll

Ngày đăng: 05/08/2014, 14:20

Tài liệu cùng người dùng

Tài liệu liên quan