/external/webkit/WebKit/wx/WebKitSupport/ |
D | ChromeClientWx.cpp | 224 wxMessageDialog dialog(NULL, string, wxT("Confirm Action?"), wxYES_NO); in runBeforeUnloadConfirmPanel() local 225 return dialog.ShowModal() == wxYES; in runBeforeUnloadConfirmPanel() 247 wxMessageDialog dialog(NULL, string, wxT("JavaScript Confirm"), wxYES_NO); in runJavaScriptConfirm() local 248 dialog.Centre(); in runJavaScriptConfirm() 249 return (dialog.ShowModal() == wxID_YES); in runJavaScriptConfirm() 254 … wxTextEntryDialog dialog(NULL, message, wxT("JavaScript Prompt"), wxEmptyString, wxOK | wxCANCEL); in runJavaScriptPrompt() local 255 dialog.Centre(); in runJavaScriptPrompt() 256 if (dialog.ShowModal() == wxID_OK) { in runJavaScriptPrompt() 257 result = dialog.GetValue(); in runJavaScriptPrompt()
|
/external/webkit/WebKit/wx/ |
D | WebBrowserShell.cpp | 203 wxFileDialog* dialog = new wxFileDialog(this, wxT("Choose a file")); in OnLoadFile() local 204 if (dialog->ShowModal() == wxID_OK) { in OnLoadFile() 205 wxString path = dialog->GetPath().Prepend(wxT("file://")); in OnLoadFile() 323 … wxTextEntryDialog* dialog = new wxTextEntryDialog(this, _("Type in a JavaScript to exectute.")); in OnRunScript() local 324 if (dialog->ShowModal() == wxID_OK) in OnRunScript() 325 wxMessageBox(wxT("Result is: ") + webview->RunScript(dialog->GetValue())); in OnRunScript() 327 dialog->Destroy(); in OnRunScript()
|
/external/webkit/WebKit/gtk/WebCoreSupport/ |
D | ChromeClientGtk.cpp | 411 GtkWidget* dialog = gtk_file_chooser_dialog_new(_("Upload File"), in runOpenPanel() local 418 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), chooser->allowsMultipleFiles()); in runOpenPanel() 420 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) { in runOpenPanel() 421 if (gtk_file_chooser_get_select_multiple(GTK_FILE_CHOOSER(dialog))) { in runOpenPanel() 422 GSList* filenames = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog)); in runOpenPanel() 433 gchar* filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog)); in runOpenPanel() 439 gtk_widget_destroy(dialog); in runOpenPanel()
|
/external/webkit/WebCore/page/ |
D | WindowFeatures.h | 50 , dialog(false) in WindowFeatures() 78 bool dialog; member
|
D | WindowFeatures.cpp | 46 , dialog(false) in WindowFeatures()
|
/external/webkit/WebKit/android/WebCoreSupport/ |
D | ChromeClientAndroid.cpp | 106 bool dialog = features.dialog || !features.resizable in createWindow() local 114 dialog = false; in createWindow() 115 WebCore::Frame* newFrame = m_webFrame->createWindow(dialog, in createWindow()
|
/external/expat/bcb5/ |
D | README.txt | 44 (CTRL-F4) then open the options dialog (CTRL-Shift-F11), then click OK on 45 the dialog immediately without changing anything in it. If this doesn't work, 52 dialog, Directories/Conditionals tab, in the Conditional define box. In a 82 1. For the static expatlibs, in the Tlib tab on the options dialog, uncheck the 84 options dialog, uncheck "Use dynamic RTL". If you are using a make file,
|
/external/qemu/distrib/sdl-1.2.12/src/video/macdsp/ |
D | SDL_dspvideo.c | 677 DialogPtr dialog; in DSp_ConfirmSwitch() local 685 dialog = GetNewDialog (rDialog, NULL, (WindowPtr) -1); in DSp_ConfirmSwitch() 686 if (dialog == NULL) in DSp_ConfirmSwitch() 690 SetPort (GetDialogPort(dialog)); in DSp_ConfirmSwitch() 692 SetPort ((WindowPtr) dialog); in DSp_ConfirmSwitch() 695 SetDialogDefaultItem (dialog, bCancel); in DSp_ConfirmSwitch() 696 SetDialogCancelItem (dialog, bCancel); in DSp_ConfirmSwitch() 706 SetDialogTimeout(dialog, bCancel, 15); in DSp_ConfirmSwitch() 716 DisposeDialog (dialog); in DSp_ConfirmSwitch()
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetCreator.py | 865 …dialog = wx.FileDialog(None, JetDefs.SAVE_PROMPT, defDir, "", JetDefs.JTC_FILE_SPEC, wx.SAVE | wx.… 866 if dialog.ShowModal() == wx.ID_OK: 867 …ETCREATOR_INI, JetDefs.INI_DEFAULTDIRS, JetDefs.JTC_FILE_SPEC, str(FileJustPath(dialog.GetPath()))) 868 self.currentJetConfigFile = FileJustRoot(dialog.GetPath()) + ".jtc" 873 dialog.Destroy() 999 …dialog = wx.FileDialog(None, JetDefs.IMPORT_ARCHIVE_PROMPT, defDir, "", JetDefs.ARCHIVE_FILE_SPEC,… 1000 if dialog.ShowModal() == wx.ID_OK: 1001 …EATOR_INI, JetDefs.INI_DEFAULTDIRS, JetDefs.ARCHIVE_FILE_SPEC, str(FileJustPath(dialog.GetPath()))) 1006 …if YesNo(JetDefs.MAIN_IMPORTTITLE, JetDefs.MAIN_IMPORTMSG % (dialog.GetPath(),dlg1.GetPath()), Fal… 1008 zipFile = dialog.GetPath() [all …]
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
D | regress-104077.js | 287 var dialog = new Object(); 292 with (dialog)
|
/external/webkit/WebKit/gtk/webkit/ |
D | webkitwebframe.cpp | 613 GtkWidget* dialog = gtk_message_dialog_new(GTK_WINDOW(topLevel), in webkit_web_frame_print() local 620 g_signal_connect(dialog, "response", G_CALLBACK(gtk_widget_destroy), NULL); in webkit_web_frame_print() 621 gtk_widget_show(dialog); in webkit_web_frame_print()
|
D | webkitwebview.cpp | 702 GtkWidget* dialog; in webkit_web_view_script_dialog() local 728 …dialog = gtk_message_dialog_new(GTK_WIDGET_TOPLEVEL(window) ? GTK_WINDOW(window) : 0, GTK_DIALOG_D… in webkit_web_view_script_dialog() 730 gtk_window_set_title(GTK_WINDOW(dialog), title); in webkit_web_view_script_dialog() 736 gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), entry); in webkit_web_view_script_dialog() 741 gtk_dialog_set_default_response(GTK_DIALOG(dialog), defaultResponse); in webkit_web_view_script_dialog() 742 gint response = gtk_dialog_run(GTK_DIALOG(dialog)); in webkit_web_view_script_dialog() 761 gtk_widget_destroy(GTK_WIDGET(dialog)); in webkit_web_view_script_dialog()
|
/external/webkit/WebKit/win/WebCoreSupport/ |
D | WebChromeClient.cpp | 153 if (features.dialog) { in createWindow() 158 COMPtr<IWebView> dialog; in createWindow() local 159 if (FAILED(delegate->createModalDialog(m_webView, request.get(), &dialog))) in createWindow() 161 return core(dialog.get()); in createWindow()
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
D | WebChromeClient.mm | 180 NSNumber *dialog = [[NSNumber alloc] initWithBool:features.dialog]; 189 dialog, @"dialog", 214 [dialog release]; 215 …} else if (features.dialog && [delegate respondsToSelector:@selector(webView:createWebViewModalDia…
|
/external/webkit/WebKit/android/jni/ |
D | WebCoreFrameBridge.h | 98 WebCore::Frame* createWindow(bool dialog, bool userGesture);
|
D | WebCoreFrameBridge.cpp | 603 WebFrame::createWindow(bool dialog, bool userGesture) in createWindow() argument 610 mJavaFrame->mCreateWindow, dialog, userGesture); in createWindow()
|
/external/webkit/WebKit/qt/WebCoreSupport/ |
D | ChromeClientQt.cpp | 143 …QWebPage *newPage = m_webPage->createWindow(features.dialog ? QWebPage::WebModalDialog : QWebPage:… in createWindow()
|
/external/webkit/WebKit/mac/Panels/ |
D | WebAuthenticationPanel.m | 234 // This override of a private AppKit method allows the user to quit when a login dialog
|
/external/webkit/WebKit/ |
D | StringsNotToBeLocalized.txt | 577 WebKit/mac/WebCoreSupport/WebChromeClient.mm:"dialog"
|
/external/webkit/WebCore/bindings/js/ |
D | JSDOMWindowBase.cpp | 325 wargs.dialog = true; in showModalDialog()
|
/external/webkit/WebKit/English.lproj/ |
D | Localizable.strings | 358 /* (Windows) Form submit file upload dialog title */
|
/external/webkit/WebKit/mac/Carbon/ |
D | CarbonWindowAdapter.mm | 49 // Clicking on an NSCarbonWindow while a Cocoa app-modal dialog is shown does not beep, as it shoul… 52 // The background on NSCarbonWindowTester's sample window (not sample dialog or sample sheet) might…
|
D | HIWebView.m | 1074 // you've closed a dialog by hitting return in an NSTextView
|
/external/webkit/WebCore/loader/ |
D | FrameLoader.cpp | 326 ASSERT(!features.dialog || request.frameName().isEmpty()); in createWindow()
|
/external/webkit/WebKitTools/ |
D | ChangeLog | 8239 (droseraWndProc): No longer creats an attach dialog box. 11026 Detect that DRT crashed even if a crash dialog is running 11028 On Windows, when DRT crashes a crash dialog commonly appears. The DRT 11031 handler so that we know if DRT crashed even if the crash dialog is up. 16764 … (myApplicationWillFinishLaunching): Improve wording of dialog. Update to set new running state. 17883 To save a crashing test, you can use curl while the crash reporter dialog is on the screen 17915 I'm trying to find a way to prevent the Crash Reporter dialog from appearing on crash,
|