Home
last modified time | relevance | path

Searched refs:dialog (Results 1 – 25 of 40) sorted by relevance

12

/external/webkit/WebKit/wx/WebKitSupport/
DChromeClientWx.cpp224 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/
DWebBrowserShell.cpp203 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/
DChromeClientGtk.cpp411 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/
DWindowFeatures.h50 , dialog(false) in WindowFeatures()
78 bool dialog; member
DWindowFeatures.cpp46 , dialog(false) in WindowFeatures()
/external/webkit/WebKit/android/WebCoreSupport/
DChromeClientAndroid.cpp106 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/
DREADME.txt44 (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/
DSDL_dspvideo.c677 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/
DJetCreator.py865dialog = 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()
999dialog = 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/
Dregress-104077.js287 var dialog = new Object();
292 with (dialog)
/external/webkit/WebKit/gtk/webkit/
Dwebkitwebframe.cpp613 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()
Dwebkitwebview.cpp702 GtkWidget* dialog; in webkit_web_view_script_dialog() local
728dialog = 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/
DWebChromeClient.cpp153 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/
DWebChromeClient.mm180 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/
DWebCoreFrameBridge.h98 WebCore::Frame* createWindow(bool dialog, bool userGesture);
DWebCoreFrameBridge.cpp603 WebFrame::createWindow(bool dialog, bool userGesture) in createWindow() argument
610 mJavaFrame->mCreateWindow, dialog, userGesture); in createWindow()
/external/webkit/WebKit/qt/WebCoreSupport/
DChromeClientQt.cpp143 …QWebPage *newPage = m_webPage->createWindow(features.dialog ? QWebPage::WebModalDialog : QWebPage:… in createWindow()
/external/webkit/WebKit/mac/Panels/
DWebAuthenticationPanel.m234 // This override of a private AppKit method allows the user to quit when a login dialog
/external/webkit/WebKit/
DStringsNotToBeLocalized.txt577 WebKit/mac/WebCoreSupport/WebChromeClient.mm:"dialog"
/external/webkit/WebCore/bindings/js/
DJSDOMWindowBase.cpp325 wargs.dialog = true; in showModalDialog()
/external/webkit/WebKit/English.lproj/
DLocalizable.strings358 /* (Windows) Form submit file upload dialog title */
/external/webkit/WebKit/mac/Carbon/
DCarbonWindowAdapter.mm49 // 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…
DHIWebView.m1074 // you've closed a dialog by hitting return in an NSTextView
/external/webkit/WebCore/loader/
DFrameLoader.cpp326 ASSERT(!features.dialog || request.frameName().isEmpty()); in createWindow()
/external/webkit/WebKitTools/
DChangeLog8239 (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,

12