Searched defs:Dialog (Results 1 - 25 of 34) sorted by relevance

12

/external/python/cpython2/Demo/tkinter/matt/
H A Ddialog-box.py2 from Dialog import Dialog namespace
14 This uses the Dialog class, which is a wrapper around the Tcl/Tk
19 d = Dialog(
/external/python/cpython2/Lib/lib-tk/
H A DtkColorChooser.py22 from tkCommonDialog import Dialog namespace
28 class Chooser(Dialog):
H A DtkCommonDialog.py13 class Dialog: class in inherits:
H A DDialog.py12 class Dialog(Widget): class in inherits:Widget
28 d = Dialog(None, {'title': 'File Modified',
H A DtkFileDialog.py43 from tkCommonDialog import Dialog namespace
45 class _Dialog(Dialog):
101 class Directory(Dialog):
H A DFileDialog.py12 from Dialog import Dialog namespace
44 title = "File Selection Dialog"
224 title = "Load File Selection Dialog"
238 title = "Save File Selection Dialog"
246 d = Dialog(self.top,
H A DtkMessageBox.py25 from tkCommonDialog import Dialog namespace
57 class Message(Dialog):
H A DtkSimpleDialog.py14 '''Dialog boxes
19 Dialog -- a base class for dialogs
30 class Dialog(Toplevel): class in inherits:Toplevel
172 class _QueryDialog(Dialog):
189 Dialog.__init__(self, parent, title)
193 Dialog.destroy(self)
/external/python/cpython3/Lib/tkinter/
H A Dcolorchooser.py22 from tkinter.commondialog import Dialog namespace
28 class Chooser(Dialog):
H A Dcommondialog.py13 class Dialog: class in inherits:
H A Ddialog.py9 class Dialog(Widget): class in inherits:Widget
25 d = Dialog(None, {'title': 'File Modified',
H A Dmessagebox.py25 from tkinter.commondialog import Dialog namespace
57 class Message(Dialog):
H A Dsimpledialog.py6 # This copyright applies to Dialog, askinteger, askfloat and asktring
17 Dialog -- a base class for dialogs
114 class Dialog(Toplevel): class in inherits:Toplevel
255 class _QueryDialog(Dialog):
271 Dialog.__init__(self, parent, title)
275 Dialog.destroy(self)
411 title="Test Dialog")
H A Dfiledialog.py16 from tkinter.dialog import Dialog namespace
49 title = "File Selection Dialog"
229 title = "Load File Selection Dialog"
243 title = "Save File Selection Dialog"
251 d = Dialog(self.top,
297 class _Dialog(commondialog.Dialog):
351 class Directory(commondialog.Dialog):
/external/python/cpython2/Demo/tkinter/guido/
H A DShellWindow.py6 from Dialog import Dialog namespace
50 Dialog(self.master,
98 Dialog(self.master,
H A DAttrDialog.py5 # Dialog.current: {name: value}
8 # Dialog.options: {name: (default, klass)}
11 # Dialog.classes: {klass: (v0, v1, v2, ...) | 'boolean' | 'other'}
97 class Dialog: class in inherits:
143 class PackDialog(Dialog):
147 Dialog.__init__(self, widget)
252 class WidgetDialog(Dialog):
257 Dialog.__init__(self, widget)
370 Dialog.__init__(self, master)
/external/python/cpython2/Lib/distutils/command/
H A Dbdist_msi.py21 from msilib import Directory, Feature, Dialog, add_data namespace
23 class PyDialog(Dialog):
24 """Dialog class with a fixed layout: controls at the top, then a ruler,
28 """Dialog(database, name, x, y, w, h, attributes, title, first,
30 Dialog.__init__(self, *args)
424 # see "Dialog Style Bits"
522 # See "Error Dialog". See "ICE20" for the required names of the controls.
523 error = Dialog(db, "ErrorDlg",
540 cancel = Dialog(db, "CancelDlg", 50, 10, 260, 85, 3, title,
554 costing = Dialog(d
[all...]
/external/python/cpython3/Lib/distutils/command/
H A Dbdist_msi.py19 from msilib import Directory, Feature, Dialog, add_data namespace
21 class PyDialog(Dialog):
22 """Dialog class with a fixed layout: controls at the top, then a ruler,
26 """Dialog(database, name, x, y, w, h, attributes, title, first,
28 Dialog.__init__(self, *args)
422 # see "Dialog Style Bits"
521 # See "Error Dialog". See "ICE20" for the required names of the controls.
522 error = Dialog(db, "ErrorDlg",
539 cancel = Dialog(db, "CancelDlg", 50, 10, 260, 85, 3, title,
553 costing = Dialog(d
[all...]
/external/nist-sip/java/javax/sip/
H A DDialog.java11 public interface Dialog extends Serializable { interface in inherits:Serializable
/external/python/cpython2/Lib/msilib/
H A D__init__.py447 class Dialog: class in inherits:
452 add_data(db, "Dialog", [(name, x,y,w,h,attr,title,first,default,cancel)])
H A Dschema.py183 Dialog = Table('Dialog') variable
184 Dialog.add_field(1,'Dialog',11592)
185 Dialog.add_field(2,'HCentering',1282)
186 Dialog.add_field(3,'VCentering',1282)
187 Dialog.add_field(4,'Width',1282)
188 Dialog.add_field(5,'Height',1282)
189 Dialog.add_field(6,'Attributes',4356)
190 Dialog
[all...]
/external/python/cpython2/Tools/msi/
H A Duisample.py610 Dialog = [ variable
857 (u'Control', u'Dialog_', u'N', None, None, u'Dialog', 1, u'Identifier', None, u'External key to the Dialog table, name of the dialog.'),
871 (u'ControlCondition', u'Dialog_', u'N', None, None, u'Dialog', 1, u'Identifier', None, u'A foreign key to the Dialog table, name of the dialog.'),
875 (u'ControlEvent', u'Dialog_', u'N', None, None, u'Dialog', 1, u'Identifier', None, u'A foreign key to the Dialog table, name of the dialog.'),
879 (u'Dialog', u'Width', u'N', 0, 32767, None, None, None, None, u'Width of the bounding rectangle of the dialog.'),
880 (u'Dialog', u'Height', u'N', 0, 32767, None, None, None, None, u'Height of the bounding rectangle of the dialog.'),
881 (u'Dialog',
[all...]
H A Dmsi.py5 from msilib import Feature, CAB, Directory, Dialog, Binary, add_data namespace
287 class PyDialog(Dialog):
288 """Dialog class with a fixed layout: controls at the top, then a ruler,
292 """Dialog(database, name, x, y, w, h, attributes, title, first,
294 Dialog.__init__(self, *args)
355 # see "Dialog Style Bits"
564 # See "Error Dialog". See "ICE20" for the required names of the controls.
565 error = Dialog(db, "ErrorDlg",
582 cancel = Dialog(db, "CancelDlg", 50, 10, 260, 85, 3, title,
596 costing = Dialog(d
[all...]
H A Dmsilib.py625 class Dialog: class in inherits:
630 add_data(db, "Dialog", [(name, x,y,w,h,attr,title,first,default,cancel)])
/external/python/cpython3/Lib/msilib/
H A D__init__.py451 class Dialog: class in inherits:
456 add_data(db, "Dialog", [(name, x,y,w,h,attr,title,first,default,cancel)])

Completed in 1621 milliseconds

12