Searched refs:title (Results 1 - 25 of 175) sorted by relevance

1234567

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
H A DtkMessageBox.py20 # - title: dialog title
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
70 if title: options["title"] = title
81 def showinfo(title=None, message=None, **options):
83 return _show(title, message, INFO, OK, **options)
85 def showwarning(title=None, message=None, **options):
87 return _show(title, messag
[all...]
H A DtkSimpleDialog.py37 def __init__(self, parent, title = None):
45 title -- the dialog title
56 if title:
57 self.title(title)
174 def __init__(self, title, prompt,
189 Dialog.__init__(self, parent, title)
251 def askinteger(title, prompt, **kw):
256 title
[all...]
H A DSimpleDialog.py11 title=None, class_=None):
16 if title:
17 self.root.title(title)
18 self.root.iconname(title)
104 title="Test Dialog")
H A DFileDialog.py44 title = "File Selection Dialog" variable in class:FileDialog
46 def __init__(self, master, title=None):
47 if title is None: title = self.title
52 self.top.title(title)
53 self.top.iconname(title)
224 title = "Load File Selection Dialog" variable in class:LoadFileDialog
238 title variable in class:SaveFileDialog
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
H A DtkMessageBox.py20 # - title: dialog title
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
70 if title: options["title"] = title
81 def showinfo(title=None, message=None, **options):
83 return _show(title, message, INFO, OK, **options)
85 def showwarning(title=None, message=None, **options):
87 return _show(title, messag
[all...]
H A DtkSimpleDialog.py37 def __init__(self, parent, title = None):
45 title -- the dialog title
56 if title:
57 self.title(title)
174 def __init__(self, title, prompt,
189 Dialog.__init__(self, parent, title)
251 def askinteger(title, prompt, **kw):
256 title
[all...]
H A DSimpleDialog.py11 title=None, class_=None):
16 if title:
17 self.root.title(title)
18 self.root.iconname(title)
104 title="Test Dialog")
H A DFileDialog.py44 title = "File Selection Dialog" variable in class:FileDialog
46 def __init__(self, master, title=None):
47 if title is None: title = self.title
52 self.top.title(title)
53 self.top.iconname(title)
224 title = "Load File Selection Dialog" variable in class:LoadFileDialog
238 title variable in class:SaveFileDialog
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
H A DtextView.py12 def __init__(self, parent, title, text, modal=True):
26 self.title(title)
62 def view_text(parent, title, text, modal=True):
63 return TextViewer(parent, title, text, modal)
65 def view_file(parent, title, filename, encoding=None, modal=True):
74 tkMessageBox.showerror(title='File Load Error',
78 return view_text(parent, title, textFile.read(), modal)
84 root.title('textView test')
H A DWindowList.py26 title = window.get_title()
29 list.append((title, window))
31 for title, window in list:
32 menu.add_command(label=title, command=window.wakeup)
H A DconfigSectionNameDialog.py9 def __init__(self,parent,title,message,usedNames):
17 self.title(title)
65 tkMessageBox.showerror(title='Name Error',
69 tkMessageBox.showerror(title='Name Error',
74 tkMessageBox.showerror(title='Name Error',
H A DkeybindingDialog.py9 def __init__(self,parent,title,action,currentKeySequences):
19 self.title(title)
236 title = 'Key Sequence Error'
238 tkMessageBox.showerror(title=title, parent=self,
241 tkMessageBox.showerror(title=title, parent=self,
245 tkMessageBox.showerror(title=title, paren
[all...]
H A DaboutDialog.py15 def __init__(self,parent,title):
24 self.title(title)
126 def display_printer_text(self, title, printer):
129 textView.view_text(self, title, text)
131 def display_file_text(self, title, filename, encoding=None):
133 textView.view_file(self, title, fn, encoding)
H A DconfigHelpSourceEdit.py11 def __init__(self, parent, title, menuItem='', filePath=''):
22 self.title(title)
105 tkMessageBox.showerror(title='Menu Item Error',
111 tkMessageBox.showerror(title='Menu Item Error',
125 tkMessageBox.showerror(title='File Path Error',
136 tkMessageBox.showerror(title='File Path Error',
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
H A DtextView.py12 def __init__(self, parent, title, text, modal=True):
26 self.title(title)
62 def view_text(parent, title, text, modal=True):
63 return TextViewer(parent, title, text, modal)
65 def view_file(parent, title, filename, encoding=None, modal=True):
74 tkMessageBox.showerror(title='File Load Error',
78 return view_text(parent, title, textFile.read(), modal)
84 root.title('textView test')
H A DWindowList.py26 title = window.get_title()
29 list.append((title, window))
31 for title, window in list:
32 menu.add_command(label=title, command=window.wakeup)
H A DconfigSectionNameDialog.py9 def __init__(self,parent,title,message,usedNames):
17 self.title(title)
65 tkMessageBox.showerror(title='Name Error',
69 tkMessageBox.showerror(title='Name Error',
74 tkMessageBox.showerror(title='Name Error',
H A DkeybindingDialog.py9 def __init__(self,parent,title,action,currentKeySequences):
19 self.title(title)
236 title = 'Key Sequence Error'
238 tkMessageBox.showerror(title=title, parent=self,
241 tkMessageBox.showerror(title=title, parent=self,
245 tkMessageBox.showerror(title=title, paren
[all...]
H A DaboutDialog.py15 def __init__(self,parent,title):
24 self.title(title)
126 def display_printer_text(self, title, printer):
129 textView.view_text(self, title, text)
131 def display_file_text(self, title, filename, encoding=None):
133 textView.view_file(self, title, fn, encoding)
H A DconfigHelpSourceEdit.py11 def __init__(self, parent, title, menuItem='', filePath=''):
22 self.title(title)
105 tkMessageBox.showerror(title='Menu Item Error',
111 tkMessageBox.showerror(title='Menu Item Error',
125 tkMessageBox.showerror(title='File Path Error',
136 tkMessageBox.showerror(title='File Path Error',
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
H A Dbdist_msi.py28 """Dialog(database, name, x, y, w, h, attributes, title, first,
36 def title(self, title): member in class:PyDialog
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, th
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
H A Dbdist_msi.py28 """Dialog(database, name, x, y, w, h, attributes, title, first,
36 def title(self, title): member in class:PyDialog
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, th
[all...]
/prebuilts/tools/common/easymock-tools/
H A Deasymock-3.1-samples.jar ... public void addDocument (java.lang.String, byte[]) String title byte[] document boolean documentChange public boolean removeDocument (java.lang ...
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_unicodedata.py55 char.title(),
60 (char + u'abc').title(),
61 (char + u'ABC').title(),
287 if u"\x00" in unichr(c).lower()+unichr(c).upper()+unichr(c).title()
294 self.assertEqual(u"\u01c4".title(), u"\u01c5")
295 self.assertEqual(u"\u01c5".title(), u"\u01c5")
296 self.assertEqual(u"\u01c6".title(), u"\u01c5")
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_unicodedata.py55 char.title(),
60 (char + u'abc').title(),
61 (char + u'ABC').title(),
287 if u"\x00" in unichr(c).lower()+unichr(c).upper()+unichr(c).title()
294 self.assertEqual(u"\u01c4".title(), u"\u01c5")
295 self.assertEqual(u"\u01c5".title(), u"\u01c5")
296 self.assertEqual(u"\u01c6".title(), u"\u01c5")

Completed in 610 milliseconds

1234567