/external/webkit/Source/WebKit/wx/ |
WebBrowserShell.cpp | 136 helpMenu->Append(wxID_ABOUT, _T("&About...\tF1"), _T("Show about dialog")); 204 msg.Printf(_T("This is the About dialog of the wxWebKit sample.\n") 213 wxFileDialog* dialog = new wxFileDialog(this, wxT("Choose a file")); local 214 if (dialog->ShowModal() == wxID_OK) { 215 wxString path = dialog->GetPath().Prepend(wxT("file://")); 352 wxTextEntryDialog* dialog = new wxTextEntryDialog(this, _("Type in a JavaScript to exectute.")); local 353 if (dialog->ShowModal() == wxID_OK) 354 wxMessageBox(wxT("Result is: ") + webview->RunScript(dialog->GetValue())); 356 dialog->Destroy(); 368 wxTextEntryDialog* dialog = new wxTextEntryDialog(this, _("Type in a editing command to exectute.")) local 386 wxTextEntryDialog* dialog = new wxTextEntryDialog(this, _("Type in a editing command whose state you want to get.")); local [all...] |
/frameworks/base/docs/html/sdk/api_diff/11/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.dispatchKeyShortcutEvent_added(android.view.KeyEvent)"></A> 87 <nobr><code>boolean</code> <A HREF="../../../../reference/android/app/Dialog.html#dispatchKeyShortcutEvent(android.view.KeyEvent)" target="_top"><code>dispatchKeyShortcutEvent</code></A>(<code>KeyEvent</code>)</nobr> 93 <A NAME="android.app.Dialog.getActionBar_added()"></A> 94 <nobr><code>ActionBar</code> <A HREF="../../../../reference/android/app/Dialog.html#getActionBar()" target="_top"><code>getActionBar</code></A>()</nobr> 100 <A NAME="android.app.Dialog.invalidateOptionsMenu_added()"></A> 101 <nobr><code>void</code> <A HREF="../../../../reference/android/app/Dialog.html#invalidateOptionsMenu()" target="_top"><code>invalidateOptionsMenu</code></A>()</nobr> 107 <A NAME="android.app.Dialog.onActionModeFinished_added(android.view.ActionMode)"></A [all...] |
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
CertInstaller.java | 21 import android.app.Dialog; 147 protected Dialog onCreateDialog (int dialogId) { 156 ProgressDialog dialog = new ProgressDialog(this); local 157 dialog.setMessage(getString(R.string.extracting_pkcs12)); 158 dialog.setIndeterminate(true); 159 dialog.setCancelable(false); 160 return dialog; 317 private Dialog createPkcs12PasswordDialog() { 329 Dialog d = new AlertDialog.Builder(this) 333 public void onClick(DialogInterface dialog, int id) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/ |
NdefPushReceiverActivity.java | 24 import android.app.Dialog; 116 public Dialog onCreateDialog(int id, Bundle args) { 137 protected void onPrepareDialog(int id, Dialog dialog, Bundle args) { 141 AlertDialog alert = (AlertDialog) dialog; 151 super.onPrepareDialog(id, dialog, args);
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
DateWidgets1.java | 24 import android.app.Dialog; 92 protected Dialog onCreateDialog(int id) { 106 protected void onPrepareDialog(int id, Dialog dialog) { 109 ((TimePickerDialog) dialog).updateTime(mHour, mMinute); 112 ((DatePickerDialog) dialog).updateDate(mYear, mMonth, mDay);
|
/frameworks/base/core/res/res/values-large/ |
themes.xml | 36 parent="@android:style/Theme.Holo.Dialog.FixedSize"> 37 <item name="preferencePanelStyle">@style/PreferencePanel.Dialog</item> 40 parent="@android:style/Theme.Holo.Dialog.NoActionBar.FixedSize"> 41 <item name="preferencePanelStyle">@style/PreferencePanel.Dialog</item> 44 parent="@android:style/Theme.Holo.Light.Dialog.FixedSize"> 47 parent="@android:style/Theme.Holo.Light.Dialog.NoActionBar.FixedSize">
|
themes_device_defaults.xml | 35 parent="@android:style/Theme.DeviceDefault.Dialog.FixedSize"> 36 <item name="preferencePanelStyle">@style/PreferencePanel.Dialog</item> 39 parent="@android:style/Theme.DeviceDefault.Dialog.NoActionBar.FixedSize"> 40 <item name="preferencePanelStyle">@style/PreferencePanel.Dialog</item> 43 parent="@android:style/Theme.DeviceDefault.Light.Dialog.FixedSize"> 46 parent="@android:style/Theme.DeviceDefault.Light.Dialog.NoActionBar.FixedSize">
|
/frameworks/base/docs/html/training/search/ |
backward-compat.jd | 17 Dialog for Older Devices</a></li> 26 later. To support older platforms, you can fall back to the search dialog. The search dialog is a 31 <p>To setup the search dialog, first declare in your manifest that you want to support older 42 <h2 id="provide-sd">Provide the Search Dialog for Older Devices</h2> 44 <p>To invoke the search dialog on older devices, call {@link
|
/frameworks/base/voip/java/com/android/server/sip/ |
SipHelper.java | 36 import javax.sip.Dialog; 312 public ClientTransaction sendReinvite(Dialog dialog, 315 Request request = dialog.createRequest(Request.INVITE); 330 dialog.sendRequest(clientTransaction); 426 public void sendInviteAck(ResponseEvent event, Dialog dialog) 431 Request ack = dialog.createAck(cseq); 433 dialog.sendAck(ack); 436 public void sendBye(Dialog dialog) throws SipException 503 Dialog dialog = ((DialogTerminatedEvent) event).getDialog(); local [all...] |
/packages/apps/Contacts/src/com/android/contacts/vcard/ |
CancelActivity.java | 22 import android.app.Dialog; 53 public void onClick(DialogInterface dialog, int which) { 62 public void onClick(DialogInterface dialog, int which) { 66 public void onCancel(DialogInterface dialog) { 87 protected Dialog onCreateDialog(int id, Bundle bundle) { 112 Log.w(LOG_TAG, "Unknown dialog id: " + id);
|
SelectAccountActivity.java | 24 import android.app.Dialog; 41 public void onClick(DialogInterface dialog, int which) { 44 public void onCancel(DialogInterface dialog) { 84 public void onClick(DialogInterface dialog, int which) { 85 dialog.dismiss(); 100 protected Dialog onCreateDialog(int resId, Bundle bundle) {
|
ExportVCardActivity.java | 23 import android.app.Dialog; 42 * Shows a dialog confirming the export and asks actual vCard export to {@link VCardService} 86 "Show confirmation dialog", mTargetFileName)); 133 public void onClick(DialogInterface dialog, int which) { 203 protected Dialog onCreateDialog(int id, Bundle bundle) { 247 protected void onPrepareDialog(int id, Dialog dialog, Bundle args) { 249 ((AlertDialog)dialog).setMessage(mErrorReason); 251 ((AlertDialog)dialog).setMessage( 254 super.onPrepareDialog(id, dialog, args) [all...] |
/packages/apps/Phone/src/com/android/phone/ |
IccPanel.java | 19 import android.app.Dialog; 31 public class IccPanel extends Dialog { 49 // TODO: Ideally, we'd like this dialog to be visible in front of the 55 // window, since we're a Dialog (not an Activity), and the framework 56 // won't ever let a dialog hide the keyguard (because there could 66 // once this dialog gets moved into the framework and becomes a truly
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/ |
IProgressUiProvider.java | 37 * Sets the description in the current task dialog. 65 * Display a yes/no question dialog box. 68 * makes sure the dialog is opened synchronously in the ui thread. 70 * @param title The title of the dialog box 79 * dialog is opened synchronously in the UI thread. 81 * @param title The title of the dialog box.
|
/external/chromium/chrome/browser/autofill/ |
autofill_dialog.h | 24 // An interface the AutoFill dialog uses to notify its clients (observers) when 40 // Shows the AutoFill dialog, which allows the user to edit profile information. 42 // contains the current profile information and credit cards. The dialog fills
|
/external/chromium/chrome/browser/ui/ |
crypto_module_password_dialog.h | 39 // Display a dialog, prompting the user to authenticate to unlock 41 // affects the message displayed in the dialog. |server| is the name 49 // Returns a CryptoModuleBlockingPasswordDelegate to open a dialog and block
|
/external/chromium/chrome/browser/ui/gtk/ |
html_dialog_gtk.h | 34 // Initializes the contents of the dialog (the DOMView and the callbacks). 57 // about when the dialog is closing. For all other actions (besides dialog
|
/external/chromium/chrome/browser/ui/views/ |
about_ipc_dialog.h | 34 // This dialog is a singleton. If the dialog is already opened, it won't do 45 // Sets up all UI controls for the dialog.
|
/external/chromium/chrome/browser/ui/webui/options/ |
advanced_options_utils_win.cc | 19 // A helper method that opens the Internet Options control panel dialog with 27 // new dialog to be made for each call. rundll32 uses the same global 28 // dialog and it seems to share with the shortcut in control panel.
|
/external/libpng/contrib/visupng/ |
VisualPng.rc | 104 // Dialog
107 ABOUTBOX DIALOG DISCARDABLE 0, 0, 186, 94
128 "ABOUTBOX", DIALOG
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
SIPDialogErrorEvent.java | 22 * An event that indicates that a dialog has encountered an error. 51 * Creates a dialog error event. 53 * @param sourceDialog Dialog which is raising the error.
|
/frameworks/base/tests/ImfTest/res/values/ |
strings.xml | 45 <string name="test_dialog">Test Dialog</string> 46 <string name="open_dialog_scrollable">open scrollable dialog</string> 47 <string name="open_dialog_nonscrollable">open nonscrollable dialog</string>
|
/packages/apps/Music/res/values-keysexposed/ |
strings.xml | 21 <!-- Prompt in dialog when creating a playlist. The user will enter the name of the playlist in a textfield underneath this prompt. --> 23 <!-- Prompt in dialog when renaming a playlist, used when the current name and the new name are the same. The user will enter the new name of the playlist in a textfield underneath this prompt. --> 25 <!-- Prompt in dialog when renaming a playlist, used when the current name the new name are different. The user will enter the new name of the playlist in a textfield underneath this prompt. -->
|
/packages/apps/Music/res/values-keyshidden/ |
strings.xml | 21 <!-- Prompt in dialog when creating a playlist and the keyboard is closed. --> 24 <!-- Prompt in dialog when renaming a playlist, and the entered name is the same as the old one. --> 26 <!-- Prompt in dialog when renaming a playlist, and the entered name is different from the old one. -->
|
/packages/apps/Settings/src/com/android/settings/inputmethod/ |
KeyboardLayoutDialogFragment.java | 24 import android.app.Dialog; 92 public Dialog onCreateDialog(Bundle savedInstanceState) { 100 public void onClick(DialogInterface dialog, int which) { 107 public void onClick(DialogInterface dialog, int which) { 139 public void onCancel(DialogInterface dialog) { 140 super.onCancel(dialog); 176 AlertDialog dialog = (AlertDialog)getDialog(); local 177 if (dialog != null) { 178 dialog.getListView().setItemChecked(data.current, true); 208 AlertDialog dialog = (AlertDialog)getDialog() local [all...] |