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

1 2 3 4

  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkColorChooser.py 14 # - initialcolor: colour to mark as selected when dialog is displayed
17 # - parent: which window to place the dialog on top of
19 # - title: dialog title
22 from tkCommonDialog import Dialog
28 class Chooser(Dialog):
tkCommonDialog.py 13 class Dialog:
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',
tkFileDialog.py 23 # - initialdir: initial directory. preserved by dialog instance.
25 # - initialfile: initial file (ignored by the open dialog). preserved
26 # by dialog instance.
28 # - parent: which window to place the dialog on top of
30 # - title: dialog title
43 from tkCommonDialog import Dialog
45 class _Dialog(Dialog):
100 # the directory dialog has its own _fix routines.
101 class Directory(Dialog):
200 # dialog for openening file
    [all...]
FileDialog.py 1 """File selection dialog classes.
12 from Dialog import Dialog
23 """Standard file selection dialog -- no checks on selected file.
38 the dialog keeps no memory of previous state. Note that memory is
39 kept even when the dialog is canceled. (All this emulates the
44 title = "File Selection Dialog"
222 """File selection dialog which checks that the file exists."""
224 title = "Load File Selection Dialog"
236 """File selection dialog which checks that the file may be created.""
    [all...]
tkMessageBox.py 18 # - parent: which window to place the dialog on top of
20 # - title: dialog title
22 # - type: dialog type; that is, which buttons to display (see below)
25 from tkCommonDialog import Dialog
55 # message dialog class
57 class Message(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/
tkColorChooser.py 14 # - initialcolor: colour to mark as selected when dialog is displayed
17 # - parent: which window to place the dialog on top of
19 # - title: dialog title
22 from tkCommonDialog import Dialog
28 class Chooser(Dialog):
tkCommonDialog.py 13 class Dialog:
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',
tkFileDialog.py 23 # - initialdir: initial directory. preserved by dialog instance.
25 # - initialfile: initial file (ignored by the open dialog). preserved
26 # by dialog instance.
28 # - parent: which window to place the dialog on top of
30 # - title: dialog title
43 from tkCommonDialog import Dialog
45 class _Dialog(Dialog):
100 # the directory dialog has its own _fix routines.
101 class Directory(Dialog):
200 # dialog for openening file
    [all...]
FileDialog.py 1 """File selection dialog classes.
12 from Dialog import Dialog
23 """Standard file selection dialog -- no checks on selected file.
38 the dialog keeps no memory of previous state. Note that memory is
39 kept even when the dialog is canceled. (All this emulates the
44 title = "File Selection Dialog"
222 """File selection dialog which checks that the file exists."""
224 title = "Load File Selection Dialog"
236 """File selection dialog which checks that the file may be created.""
    [all...]
tkMessageBox.py 18 # - parent: which window to place the dialog on top of
20 # - title: dialog title
22 # - type: dialog type; that is, which buttons to display (see below)
25 from tkCommonDialog import Dialog
55 # message dialog class
57 class Message(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/
tkColorChooser.py 14 # - initialcolor: colour to mark as selected when dialog is displayed
17 # - parent: which window to place the dialog on top of
19 # - title: dialog title
22 from tkCommonDialog import Dialog
28 class Chooser(Dialog):
tkCommonDialog.py 13 class Dialog:
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',
tkFileDialog.py 23 # - initialdir: initial directory. preserved by dialog instance.
25 # - initialfile: initial file (ignored by the open dialog). preserved
26 # by dialog instance.
28 # - parent: which window to place the dialog on top of
30 # - title: dialog title
43 from tkCommonDialog import Dialog
45 class _Dialog(Dialog):
100 # the directory dialog has its own _fix routines.
101 class Directory(Dialog):
200 # dialog for openening file
    [all...]
FileDialog.py 1 """File selection dialog classes.
12 from Dialog import Dialog
23 """Standard file selection dialog -- no checks on selected file.
38 the dialog keeps no memory of previous state. Note that memory is
39 kept even when the dialog is canceled. (All this emulates the
44 title = "File Selection Dialog"
222 """File selection dialog which checks that the file exists."""
224 title = "Load File Selection Dialog"
236 """File selection dialog which checks that the file may be created.""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkColorChooser.py 14 # - initialcolor: colour to mark as selected when dialog is displayed
17 # - parent: which window to place the dialog on top of
19 # - title: dialog title
22 from tkCommonDialog import Dialog
28 class Chooser(Dialog):
tkCommonDialog.py 13 class Dialog:
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',
tkFileDialog.py 23 # - initialdir: initial directory. preserved by dialog instance.
25 # - initialfile: initial file (ignored by the open dialog). preserved
26 # by dialog instance.
28 # - parent: which window to place the dialog on top of
30 # - title: dialog title
43 from tkCommonDialog import Dialog
45 class _Dialog(Dialog):
100 # the directory dialog has its own _fix routines.
101 class Directory(Dialog):
200 # dialog for openening file
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertActivity.java 20 import android.app.Dialog;
70 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) {

Completed in 275 milliseconds

1 2 3 4