Lines Matching refs:width
104 def yesno(self, text, height=10, width=30, title=''): argument
111 '--yesno "%s" %d %d' % (text, height, width))
115 def msgbox(self, text, height=10, width=30, title=''): argument
121 '--msgbox "%s" %d %d' % (text, height, width))
124 def infobox(self, text, height=10, width=30): argument
126 self.__perform('--infobox "%s" %d %d' % (text, height, width))
129 def inputbox(self, text, height=10, width=30, init='', title=''): argument
135 '--inputbox "%s" %d %d "%s"' % (text, height, width, init))
145 def textbox(self, filename, height=20, width=60, title=None): argument
150 ' --textbox "%s" %d %d' % (filename, height, width))
153 def menu(self, text, height=15, width=54, list=[]): argument
165 (text, height, width, menuheight, choices))
172 def checklist(self, text, height=15, width=54, list=[], checked=None): argument
189 (text, height, width, menuheight, choices))
203 def radiolist(self, text, height=15, width=54, list=[], selected=0): argument
220 (text, height, width, menuheight, choices))
236 def scrollbox(self, text, height=20, width=60, title=''): argument
248 '--textbox "%s" %d %d' % (fName, height, width))
252 def gauge_start(self, perc=0, text='', height=8, width=54, title=''): argument
265 '--gauge "%s" %d %d %d' % (text, height, width, perc)