/external/webkit/Source/WebCore/manual-tests/ |
modal-dialog-blur.html | 22 window.showModalDialog("modal-dialog-blur-selfclose.html");
|
right-click-crash.html | 4 To try to reproduce the bug, right click and then dismiss the dialog by hitting Return.
|
show-modal-dialog-test.html | 4 showModalDialog("modal-dialog.html",
|
/external/webkit/Source/WebKit/chromium/public/ |
WebWindowFeatures.h | 62 bool dialog; member in struct:WebKit::WebWindowFeatures 77 , dialog(false) 99 , dialog(f.dialog)
|
/frameworks/base/docs/html/guide/topics/ui/notifiers/ |
index.jd | 26 <li>A <a href="#Dialog">Dialog Notification</a>, for Activity-related notifications.</li> 68 <a href="#Dialog">Dialog Notification</a> instead.</p> 74 <h2 id="Dialog">Dialog Notification</h2> 78 <p>A dialog is usually a small window that appears in front of the current Activity. 79 The underlying Activity loses focus and the dialog accepts all user interaction. 83 <p>You should use a dialog when you need to show a progress bar or a short
|
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
GroupCreationDialogFragment.java | 29 * A dialog for creating a new group. 47 GroupCreationDialogFragment dialog = new GroupCreationDialogFragment(listener); local 52 dialog.setArguments(args); 53 dialog.show(fragmentManager, FRAGMENT_TAG);
|
ImportExportDialogFragment.java | 28 import android.app.Dialog; 51 * An dialog invoked to import/export contacts. 64 /** Preferred way to show this dialog */ 74 public Dialog onCreateDialog(Bundle savedInstanceState) { 116 public void onClick(DialogInterface dialog, int which) { 143 dialog.dismiss(); 191 * @return {@code true} if the dialog show be closed. {@code false} otherwise. 211 // SelectAccountDialogFragment, we can't close it yet. We close the dialog when 218 return true; // Close the dialog. 228 // At this point the dialog is still showing (which is why we can use getActivity() above [all...] |
/packages/apps/Contacts/src/com/android/contacts/util/ |
AccountSelectionUtil.java | 25 import android.app.Dialog; 69 public void onClick(DialogInterface dialog, int which) { 70 dialog.dismiss(); 75 public static Dialog getSelectAccountDialog(Context context, int resId) { 79 public static Dialog getSelectAccountDialog(Context context, int resId, 86 * The default OnCancelListener just closes itself with {@link Dialog#dismiss()}. 88 public static Dialog getSelectAccountDialog(Context context, int resId, 140 public void onCancel(DialogInterface dialog) { 141 dialog.dismiss();
|
/packages/apps/Email/src/com/android/email/activity/ |
AttachmentInfoDialog.java | 23 import android.app.Dialog; 34 * "Info" dialog box 43 * Returns a new dialog instance 78 AttachmentInfoDialog dialog = new AttachmentInfoDialog(); local 84 dialog.setArguments(args); 85 return dialog; 89 public Dialog onCreateDialog(Bundle savedInstanceState) { 99 public void onClick(DialogInterface dialog, int which) { 105 dialog.dismiss();
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
EditQuickResponseDialog.java | 25 import android.app.Dialog; 37 * Dialog to edit the text of a given or new quick response 49 * Creates a new dialog to edit an existing QuickResponse or create a new 58 final EditQuickResponseDialog dialog = new EditQuickResponseDialog(); local 66 dialog.setArguments(args); 67 return dialog; 71 public Dialog onCreateDialog(Bundle savedInstanceState) { 133 public void onClick(DialogInterface dialog, int which) { 136 dialog.cancel();
|
AccountSecurity.java | 21 import android.app.Dialog; 74 * @param showDialog If true, a simple warning dialog will be shown before kicking off 90 * to give the user a dialog (for context) about a device pin/password expiration event. 126 PasswordExpirationDialog dialog = local 129 dialog.show(fm, "password_expiration"); 137 // Show dialog first, unless already showing (e.g. after rotation) 140 SecurityNeededDialog dialog = local 142 dialog.show(fm, "security_needed"); 295 * Dialog briefly shown in some cases, to indicate the user that a security update is needed. 304 * Create a new dialog 307 final SecurityNeededDialog dialog = new SecurityNeededDialog(); local 373 final PasswordExpirationDialog dialog = new PasswordExpirationDialog(); local [all...] |
/packages/apps/KeyChain/res/values/ |
strings.xml | 19 <!-- Dialog title when no certificates were found --> 22 <!-- Dialog title when at least one certificate was found --> 25 <!-- Used at top of dialog to identify requesting application --> 28 <!-- Used at top of dialog to identify requesting server (may be host:port or just host)-->
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/ |
ProgressTask.java | 58 * Changes the auto-close behavior of the dialog on task completion.
60 * @param autoClose True if the dialog should be closed automatically when the task
76 * When the task completes, requests to close the dialog.
100 * Sets the dialog to not auto-close since we want the user to see the error
|
ProgressTaskDialog.java | 38 import org.eclipse.swt.widgets.Dialog;
48 * This separates the dialog UI from the task logic.
53 final class ProgressTaskDialog extends Dialog implements IProgressUiProvider {
56 * Min Y location for dialog. Need to deal with the menu bar on mac os.
73 /** The current mode of operation of the dialog. */
76 /** Last dialog size for this session. */
90 * Create the dialog.
98 * Open the dialog and blocks till it gets closed
125 * Create contents of the dialog.
183 // The dialog is not disposed, make sure to run all this in the UI thread [all...] |
/frameworks/base/core/java/android/app/ |
SearchDialog.java | 55 * Search dialog. This is controlled by the 60 public class SearchDialog extends Dialog { 71 // a microphone button since one already exists in the search dialog. 138 * Create the search dialog and any resources that are used for the 139 * entire lifetime of the dialog. 156 // Touching outside of the search dialog will dismiss it 161 * We recreate the dialog view each time it becomes visible so as to limit 201 // Additional adjustments to make Dialog work for Search 206 * Set up the search dialog 208 * @return true if search dialog launched, false if no [all...] |
/frameworks/base/docs/html/guide/topics/search/ |
index.jd | 8 <li><a href="search-dialog.html">Creating a Search Interface</a></li> 32 <p class="img-caption"><strong>Figure 1.</strong> Screenshot of a search dialog with custom 36 <p>The search framework offers two modes of search input: a search dialog at the top of the 40 the search dialog or widget to provide search suggestions as the user types. Figure 1 shows an 41 example of the search dialog with optional search suggestions.</p> 43 <p>Once you've set up either the search dialog or the search widget, you can:</p> 58 search interface in your application. When using the search dialog or a custom interface, you 60 information, see <a href="search-dialog.html#InvokingTheSearchDialog">Invoking the search 61 dialog</a>.</p> 66 <dt><strong><a href="search-dialog.html">Creating a Search Interface</a></strong></dt [all...] |
search-dialog.jd | 11 <li>The Android system sends search queries from the search dialog or widget to an activity you 28 <li><a href="#SearchDialog">Using the Search Dialog</a> 30 <li><a href="#InvokingTheSearchDialog">Invoking the search dialog</a></li> 31 <li><a href="#LifeCycle">The impact of the search dialog on your activity lifecycle</a></li> 39 <li><a href="#UsingBoth">Using both the widget and the dialog</a></li> 78 the user interface with either a search dialog that appears at the top of the activity window or a 79 search widget that you can insert in your layout. Both the search dialog and the widget can deliver 81 a search from any activity where the search dialog or widget is available, and the system starts the 84 <p>Other features available for the search dialog and widget include:</p> 94 search dialog or the search widget.</p [all...] |
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
android.app.Dialog.html | 10 android.app.Dialog 74 Class android.app.<A HREF="../../../../reference/android/app/Dialog.html" target="_top"><font size="+2"><code>Dialog</code></font></A> 86 <A NAME="android.app.Dialog.onAttachedToWindow_added()"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/app/Dialog.html#onAttachedToWindow()" target="_top"><code>onAttachedToWindow</code></A>()</nobr> 93 <A NAME="android.app.Dialog.onBackPressed_added()"></A> 94 <nobr><code>void</code> <A HREF="../../../../reference/android/app/Dialog.html#onBackPressed()" target="_top"><code>onBackPressed</code></A>()</nobr> 100 <A NAME="android.app.Dialog.onDetachedFromWindow_added()"></A> 101 <nobr><code>void</code> <A HREF="../../../../reference/android/app/Dialog.html#onDetachedFromWindow()" target="_top"><code>onDetachedFromWindow</code></A>()</nobr> 107 <A NAME="android.app.Dialog.onKeyLongPress_added(int, android.view.KeyEvent)"></A [all...] |
/frameworks/base/core/java/com/android/internal/app/ |
AlertController.java | 155 public ButtonHandler(DialogInterface dialog) { 156 mDialog = new WeakReference<DialogInterface>(dialog); 266 * Set the view to display in the dialog. 274 * Set the view to display in the dialog along with the spacing around that view 785 * @param listView The ListView that will be shown in the dialog. 796 public void apply(AlertController dialog) { 798 dialog.setCustomTitle(mCustomTitleView); 801 dialog.setTitle(mTitle); 804 dialog.setIcon(mIcon); 807 dialog.setIcon(mIconId) [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
gtk_util.h | 54 // Constants relating to the layout of dialog windows: 66 // Space around the outside of a dialog's contents. 116 // As above, but a convenience method for configuring dialog size. 119 // |resizable| also controls whether the dialog will be resizable 131 // Puts all browser windows in one window group; this will make any dialog 135 // Called after an app modal dialog that used MakeAppModalWindowGroup() was 211 // Adds an action button with the given text to the dialog. Only useful when you 213 GtkWidget* AddButtonToDialog(GtkWidget* dialog, const gchar* text, 216 GtkWidget* BuildDialogButton(GtkWidget* dialog, int ids_id, 318 void ShowDialog(GtkWidget* dialog); [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
PermissionStubActivity.java | 21 import android.app.Dialog; 43 public Dialog getDialog() {
|
/development/apps/Fallback/res/values/ |
strings.xml | 21 <!-- Dialog title informing the user that the requested action is not supported --> 23 <!-- Dialog content informing the user that the requested action is not supported -->
|
/external/chromium/chrome/browser/chromeos/status/ |
status_area_host.h | 44 // Indicates if options dialog related to the button specified should be 49 // Opens options dialog related to the button specified.
|
/external/chromium/chrome/browser/printing/cloud_print/ |
cloud_print_setup_handler.h | 14 // CloudPrintSetupFlow::OpenDialog can still be notified when the dialog 24 // Called when the setup dialog is closed.
|
/external/chromium/chrome/browser/printing/ |
print_dialog_cloud_internal.h | 48 // file (on the FILE thread) and send it to the print dialog contents 60 // information to the dialog renderer (on the IO thread). We know 86 // to the dialog backing HTML and JS by providing WebUIMessageHandler 119 // Call to get the debugger loaded on our hosted dialog page 137 // State machine used to run the printing dialog. This class is used 138 // to open and run the html dialog and deletes itself when the dialog 177 // The parameters needed to display a modal HTML dialog.
|