Lines Matching full:dialog
73 wkFeatures.dialog = features.dialog;
260 wxMessageDialog dialog(NULL, string, wxT("Confirm Action?"), wxYES_NO);
261 return dialog.ShowModal() == wxYES;
295 wxMessageDialog dialog(NULL, string, wxT("JavaScript Confirm"), wxYES_NO);
296 dialog.Centre();
297 result = (dialog.ShowModal() == wxID_YES);
314 wxTextEntryDialog dialog(NULL, message, wxT("JavaScript Prompt"), wxEmptyString, wxOK | wxCANCEL);
315 dialog.Centre();
316 if (dialog.ShowModal() == wxID_OK) {
317 result = dialog.GetValue();