from Tkinter import * TEXT = "You are about to send a message to 10,000 newsgroups" FONT = '-*-helvetica-bold-r-normal-*-*-140-*-*-*-*-*-*' class Joke: def __init__(self, master): self.outerframe = Frame(master, relief=GROOVE, borderwidth=2) self.outerframe.pack() self.frame = Frame(self.outerframe) self.frame.pack(padx=20, pady=10) self.title = Label(self.frame, text=TEXT, font=FONT) self.title.pack(pady=10) self.box1 = Checkbutton(self.frame, text="Edit message", anchor=W) self.box1.pack(fill=X) self.box1.select() self.box2 = Checkbutton(self.frame, text="View list of newsgroups", anchor=W) self.box2.pack(fill=X) self.box2.select() self.box3 = Checkbutton(self.frame, text="Run in background", anchor=W) self.box3.pack(fill=X) self.box3.select() self.ok = Button(self.frame, text="OK", anchor=W) self.ok.pack(side=LEFT, pady=10)