Lines Matching refs:title

28         """Dialog(database, name, x, y, w, h, attributes, title, first,
36 def title(self, title):
37 "Set the title text of the dialog at the top."
41 r"{\VerdanaBold10}%s" % title)
43 def back(self, title, next, name = "Back", active = 1):
44 """Add a back button with a given title, the tab-next button,
52 return self.pushbutton(name, 180, self.h-27 , 56, 17, flags, title, next)
54 def cancel(self, title, next, name = "Cancel", active = 1):
55 """Add a cancel button with a given title, the tab-next button,
63 return self.pushbutton(name, 304, self.h-27, 56, 17, flags, title, next)
65 def next(self, title, next, name = "Next", active = 1):
66 """Add a Next button with a given title, the tab-next button,
74 return self.pushbutton(name, 236, self.h-27, 56, 17, flags, title, next)
76 def xbutton(self, name, title, next, xpos):
77 """Add a button with a given title, the tab-next button,
82 return self.pushbutton(name, int(self.w*xpos - 28), self.h-27, 56, 17, 3, title, next)
286 title = "Python from another location"
289 title = "Python %s from registry" % version
291 f = Feature(db, name, title, desc, 1, level, directory=target)
422 title = "[ProductName] Setup"
465 fatal=PyDialog(db, "FatalError", x, y, w, h, modal, title,
467 fatal.title("[ProductName] Installer ended prematurely")
477 user_exit=PyDialog(db, "UserExit", x, y, w, h, modal, title,
479 user_exit.title("[ProductName] Installer was interrupted")
490 exit_dialog = PyDialog(db, "ExitDialog", x, y, w, h, modal, title,
492 exit_dialog.title("Completing the [ProductName] Installer")
505 title,
526 title,
540 cancel = Dialog(db, "CancelDlg", 50, 10, 260, 85, 3, title,
554 costing = Dialog(db, "WaitForCostingDlg", 50, 10, 260, 85, modal, title,
563 prep = PyDialog(db, "PrepareDlg", x, y, w, h, modeless, title,
567 prep.title("Welcome to the [ProductName] Installer")
579 seldlg = PyDialog(db, "SelectFeaturesDlg", x, y, w, h, modal, title,
581 seldlg.title("Select Python Installations")
624 cost = PyDialog(db, "DiskCostDlg", x, y, w, h, modal, title,
651 whichusers = PyDialog(db, "WhichUsersDlg", x, y, w, h, modal, title,
653 whichusers.title("Select whether to install [ProductName] for all users of this computer.")
671 progress = PyDialog(db, "ProgressDlg", x, y, w, h, modeless, title,
696 maint = PyDialog(db, "MaintenanceTypeDlg", x, y, w, h, modal, title,
698 maint.title("Welcome to the [ProductName] Setup Wizard")