HomeSort by relevance Sort by last modified time
    Searched defs:Dialog (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/python/cpython2/Lib/lib-tk/
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',
tkCommonDialog.py 13 class Dialog:
tkSimpleDialog.py 12 # dialog base class
14 '''Dialog boxes
16 This module handles dialog boxes. It contains the following
19 Dialog -- a base class for dialogs
30 class Dialog(Toplevel):
39 '''Initialize a dialog.
45 title -- the dialog title
97 '''create dialog body.
154 dialog is destroyed. By default, it always validates OK.
163 the dialog is destroyed. By default, it does nothing
    [all...]
  /external/python/cpython3/Lib/tkinter/
commondialog.py 13 class Dialog:
dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
9 class Dialog(Widget):
25 d = Dialog(None, {'title': 'File Modified',
simpledialog.py 6 # This copyright applies to Dialog, askinteger, askfloat and asktring
11 """This modules handles dialog boxes.
15 SimpleDialog -- A simple but flexible modal dialog box
17 Dialog -- a base class for dialogs
114 class Dialog(Toplevel):
123 '''Initialize a dialog.
129 title -- the dialog title
180 '''create dialog body.
237 dialog is destroyed. By default, it always validates OK.
246 the dialog is destroyed. By default, it does nothing
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',
tkCommonDialog.py 13 class Dialog:
tkSimpleDialog.py 12 # dialog base class
14 '''Dialog boxes
16 This module handles dialog boxes. It contains the following
19 Dialog -- a base class for dialogs
30 class Dialog(Toplevel):
39 '''Initialize a dialog.
45 title -- the dialog title
97 '''create dialog body.
154 dialog is destroyed. By default, it always validates OK.
163 the dialog is destroyed. By default, it does nothing
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',
tkCommonDialog.py 13 class Dialog:
tkSimpleDialog.py 12 # dialog base class
14 '''Dialog boxes
16 This module handles dialog boxes. It contains the following
19 Dialog -- a base class for dialogs
30 class Dialog(Toplevel):
39 '''Initialize a dialog.
45 title -- the dialog title
97 '''create dialog body.
154 dialog is destroyed. By default, it always validates OK.
163 the dialog is destroyed. By default, it does nothing
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',
tkCommonDialog.py 13 class Dialog:
tkSimpleDialog.py 12 # dialog base class
14 '''Dialog boxes
16 This module handles dialog boxes. It contains the following
19 Dialog -- a base class for dialogs
30 class Dialog(Toplevel):
39 '''Initialize a dialog.
45 title -- the dialog title
97 '''create dialog body.
154 dialog is destroyed. By default, it always validates OK.
163 the dialog is destroyed. By default, it does nothing
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',
tkCommonDialog.py 13 class Dialog:
tkSimpleDialog.py 12 # dialog base class
14 '''Dialog boxes
16 This module handles dialog boxes. It contains the following
19 Dialog -- a base class for dialogs
30 class Dialog(Toplevel):
39 '''Initialize a dialog.
45 title -- the dialog title
97 '''create dialog body.
154 dialog is destroyed. By default, it always validates OK.
163 the dialog is destroyed. By default, it does nothing
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fingerprint/
DeleteFingerprintDialogTest.java 23 import android.app.Dialog;
60 mFragment.onClick(mFragment.getDialog(), Dialog.BUTTON_POSITIVE);
69 mFragment.onClick(mFragment.getDialog(), Dialog.BUTTON_NEGATIVE);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
uisample.py     [all...]
  /external/python/cpython2/Tools/msi/
uisample.py     [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertActivity.java 20 import android.app.Dialog;
75 event.setClassName(Dialog.class.getName());
  /frameworks/base/tests/SharedLibrary/lib/src/com/google/android/test/shared_library/
VersionDialog.java 21 import android.app.Dialog;
32 * This is the dialog we show when the library's version is older than
37 public Dialog onCreateDialog(Bundle savedInstanceState) {
40 // Need to use our library's resources for showing the dialog.
55 new Dialog.OnClickListener() {
57 public void onClick(DialogInterface dialog, int which) {
  /external/nist-sip/java/javax/sip/
Dialog.java 11 public interface Dialog extends Serializable {
  /external/python/cpython2/Demo/tkinter/guido/
AttrDialog.py 5 # Dialog.current: {name: value}
8 # Dialog.options: {name: (default, klass)}
11 # Dialog.classes: {klass: (v0, v1, v2, ...) | 'boolean' | 'other'}
21 def __init__(self, dialog, option):
22 self.dialog = dialog
24 self.master = dialog.top
25 self.default, self.klass = dialog.options[option]
35 self.dialog.refresh()
40 self.current = self.dialog.current[self.option
    [all...]

Completed in 257 milliseconds

1 2 3 4