Home | History | Annotate | Download | only in wx

Lines Matching full:dialog

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"));
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."));
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."));
369 if (dialog->ShowModal() == wxID_OK) {
370 bool result = webview->ExecuteEditCommand(dialog->GetValue());
374 dialog->Destroy();
386 wxTextEntryDialog* dialog = new wxTextEntryDialog(this, _("Type in a editing command whose state you want to get."));
387 if (dialog->ShowModal() == wxID_OK) {
388 EditState result = webview->GetEditCommandState(dialog->GetValue());
396 dialog->Destroy();