/external/chromium/chrome/browser/ui/app_modal_dialogs/ |
H A D | app_modal_dialog_queue.cc | 9 void AppModalDialogQueue::AddDialog(AppModalDialog* dialog) { argument 11 ShowModalDialog(dialog); 14 app_modal_dialog_queue_.push(dialog); 18 AppModalDialog* dialog = GetNextDialog(); local 19 if (dialog) 20 ShowModalDialog(dialog); 27 // As part of showing a modal dialog we may end up back in this method 28 // (showing a dialog activates the TabContents, which can trigger a call 30 // activate the tab contents the dialog is shown. 48 void AppModalDialogQueue::ShowModalDialog(AppModalDialog* dialog) { argument 62 AppModalDialog* dialog = app_modal_dialog_queue_.front(); local [all...] |
H A D | app_modal_dialog_queue.h | 16 // dialog is shown at a time. 23 // Adds a modal dialog to the queue, if there are no other dialogs in the 24 // queue, the dialog will be shown immediately. Once it is shown, the 27 // activate any other browser windows. So the dialog being shown should 31 // Note: The AppModalDialog |dialog| must be window modal before it 33 void AddDialog(AppModalDialog* dialog); 35 // Removes the current dialog in the queue (the one that is being shown). 36 // Shows the next dialog in the queue, if any is present. This does not 37 // ensure that the currently showing dialog is closed, it just makes it no 41 // Activates and shows the current dialog, i [all...] |
H A D | native_app_modal_dialog.h | 19 // Shows the dialog. 22 // Activates the dialog. 25 // Closes the dialog. 28 // Accepts or cancels the dialog. 32 // Creates an app modal dialog for a JavaScript prompt. 34 JavaScriptAppModalDialog* dialog,
|
/external/nist-sip/java/javax/sip/ |
H A D | DialogTerminatedEvent.java | 8 public DialogTerminatedEvent(Object source, Dialog dialog) { argument 10 mDialog = dialog;
|
H A D | RequestEvent.java | 12 Dialog dialog, Request request) { 14 mDialog = dialog; 11 RequestEvent(Object source, ServerTransaction serverTransaction, Dialog dialog, Request request) argument
|
H A D | ResponseEvent.java | 12 Dialog dialog, Response response) { 14 mDialog = dialog; 11 ResponseEvent(Object source, ClientTransaction clientTransaction, Dialog dialog, Response response) argument
|
/external/openssh/contrib/ |
H A D | gnome-ssh-askpass1.c | 73 GtkWidget *dialog, *entry, *label; local 78 dialog = gnome_dialog_new("OpenSSH", GNOME_STOCK_BUTTON_OK, 85 gtk_box_pack_start(GTK_BOX(GNOME_DIALOG(dialog)->vbox), 90 gtk_box_pack_start(GTK_BOX(GNOME_DIALOG(dialog)->vbox), entry, FALSE, 96 gtk_object_set(GTK_OBJECT(dialog), "type", GTK_WINDOW_POPUP, NULL); 97 gnome_dialog_set_default(GNOME_DIALOG(dialog), 0); 98 gtk_window_set_position (GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); 99 gtk_window_set_policy(GTK_WINDOW(dialog), FALSE, FALSE, TRUE); 100 gnome_dialog_close_hides(GNOME_DIALOG(dialog), TRUE); 101 gtk_container_set_border_width(GTK_CONTAINER(GNOME_DIALOG(dialog) [all...] |
H A D | gnome-ssh-askpass2.c | 80 ok_dialog(GtkWidget *entry, gpointer dialog) argument 82 g_return_if_fail(GTK_IS_DIALOG(dialog)); 83 gtk_dialog_response(GTK_DIALOG(dialog), GTK_RESPONSE_OK); 92 GtkWidget *dialog, *entry; local 99 dialog = gtk_message_dialog_new(NULL, 0, 106 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), entry, FALSE, 112 gtk_window_set_title(GTK_WINDOW(dialog), "OpenSSH"); 113 gtk_window_set_position (GTK_WINDOW(dialog), GTK_WIN_POS_CENTER); 114 gtk_window_set_keep_above(GTK_WINDOW(dialog), TRUE); 115 gtk_label_set_line_wrap(GTK_LABEL((GTK_MESSAGE_DIALOG(dialog)) 121 G_CALLBACK(ok_dialog), dialog); local [all...] |
/external/chromium/chrome/browser/ |
H A D | platform_util_common_linux.cc | 21 void SetDialogTitle(GtkWidget* dialog, const string16& title) { argument 22 gtk_window_set_title(GTK_WINDOW(dialog), UTF16ToUTF8(title).c_str()); 25 // The following code requires the dialog to be realized. However, we host 26 // dialog's content in a Chrome window without really realize the dialog 28 gtk_widget_realize(dialog); 32 gtk_widget_size_request(dialog, &req); 34 gtk_util::GetWidgetSizeFromCharacters(dialog, title.length(), 0, 42 gtk_widget_set_size_request(dialog, width, -1); 86 GtkWidget* dialog local 98 GtkWidget* dialog = gtk_message_dialog_new(parent, GTK_DIALOG_MODAL, local [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
H A D | dialogs_gtk.cc | 26 // the dialog, but usually not the height). The image's aspect ratio will always 31 // Implementation of SelectFileDialog that shows a Gtk common dialog for 32 // choosing a file or folder. This acts as a modal dialog. 59 void FileSelected(GtkWidget* dialog, const FilePath& path); 62 void MultiFilesSelected(GtkWidget* dialog, 67 // us when we were told to show the dialog. 68 void FileNotSelected(GtkWidget* dialog); 82 // Removes and returns the |params| associated with |dialog| from 84 void* PopParamsForDialog(GtkWidget* dialog); 86 // Take care of internal data structures when a file dialog i 217 GtkWidget* dialog = NULL; local 307 FileSelected(GtkWidget* dialog, const FilePath& path) argument 327 MultiFilesSelected(GtkWidget* dialog, const std::vector<FilePath>& files) argument 336 FileNotSelected(GtkWidget* dialog) argument 352 GtkWidget* dialog = local 384 GtkWidget* dialog = local 410 GtkWidget* dialog = CreateFileOpenHelper(title_string, default_path, parent); local 423 GtkWidget* dialog = CreateFileOpenHelper(title_string, default_path, parent); local 435 GtkWidget* dialog = local 463 PopParamsForDialog(GtkWidget* dialog) argument 471 FileDialogDestroyed(GtkWidget* dialog) argument 499 SelectSingleFileHelper(GtkWidget* dialog, gint response_id, bool allow_folder) argument 527 OnSelectSingleFileDialogResponse(GtkWidget* dialog, int response_id) argument 532 OnSelectSingleFolderDialogResponse(GtkWidget* dialog, int response_id) argument 537 OnSelectMultiFileDialogResponse(GtkWidget* dialog, int response_id) argument 567 OnFileChooserDestroy(GtkWidget* dialog) argument [all...] |
H A D | js_modal_dialog_gtk.cc | 21 // after dialog creation. 25 // If there's a text entry in the dialog, get the text from the first one and 27 std::wstring GetPromptText(GtkDialog* dialog) { argument 29 g_object_get_data(G_OBJECT(dialog), kPromptTextId)); 35 // If there's a toggle button in the dialog, return the toggled state. 37 bool ShouldSuppressJSDialogs(GtkDialog* dialog) { argument 39 g_object_get_data(G_OBJECT(dialog), kSuppressCheckboxId)); 50 JSModalDialogGtk::JSModalDialogGtk(JavaScriptAppModalDialog* dialog, argument 52 : dialog_(dialog) { 189 void JSModalDialogGtk::OnResponse(GtkWidget* dialog, in argument 218 CreateNativeJavaScriptPrompt( JavaScriptAppModalDialog* dialog, gfx::NativeWindow parent_window) argument [all...] |
H A D | process_singleton_dialog.cc | 16 ProcessSingletonDialog dialog(message); 39 void ProcessSingletonDialog::OnResponse(GtkWidget* dialog, int response_id) { argument
|
/external/chromium/chrome/browser/ui/gtk/download/ |
H A D | download_in_progress_dialog_gtk.cc | 56 GtkWidget* dialog = gtk_message_dialog_new( local 63 gtk_util::AddButtonToDialog(dialog, 66 gtk_util::AddButtonToDialog(dialog, 70 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), 74 g_signal_connect(dialog, "response", G_CALLBACK(OnResponseThunk), this); 76 gtk_widget_show_all(dialog); 79 void DownloadInProgressDialogGtk::OnResponse(GtkWidget* dialog, argument 81 gtk_widget_destroy(dialog);
|
/external/chromium/chrome/browser/ui/gtk/extensions/ |
H A D | extension_uninstall_dialog_gtk.cc | 29 void OnResponse(GtkWidget* dialog, int response_id, argument 36 gtk_widget_destroy(dialog); 43 // Build the dialog. 44 GtkWidget* dialog = gtk_dialog_new_with_buttons( local 53 gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE); 56 GtkWidget* content_area = GTK_DIALOG(dialog)->vbox; 78 g_signal_connect(dialog, "response", G_CALLBACK(OnResponse), delegate); 79 gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE); 80 gtk_widget_show_all(dialog);
|
/external/chromium/chrome/browser/ui/cocoa/ |
H A D | js_modal_dialog_cocoa.h | 25 explicit JSModalDialogCocoa(JavaScriptAppModalDialog* dialog); 36 JavaScriptAppModalDialog* dialog() const { return dialog_.get(); } function in class:JSModalDialogCocoa
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
H A D | UiUtils.java | 29 * Opens standard warning dialog. 32 MessageDialog dialog = 40 dialog.open();
|
/external/nist-sip/java/gov/nist/javax/sip/ |
H A D | DialogTimeoutEvent.java | 25 * dialog does not receive or send an ACK. 36 * Constructs a DialogTerminatedEvent to indicate a dialog 40 * @param dialog - the dialog that timed out. 42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) { argument 44 m_dialog = dialog; 51 * enables application developers to access the dialog associated to this 54 * @return the dialog associated with the response event or null if there is no dialog.
|
H A D | ResponseEventExt.java | 16 Dialog dialog, Response response) { 17 super(source,clientTransaction,dialog,response); 15 ResponseEventExt(Object source, ClientTransactionExt clientTransaction, Dialog dialog, Response response) argument
|
H A D | DialogFilter.java | 255 * Process a request. Check for various conditions in the dialog that can result in the 295 SIPDialog dialog = sipStack.getDialog(dialogId); 297 * Check if we got this request on the contact address of the dialog If not the dialog 299 * assigned to the dialog. Forgive the sins of B2BUA's that like to record route ACK's 301 if (dialog != null && sipProvider != dialog.getSipProvider()) { 302 Contact contact = dialog.getMyContactHeader(); 316 // Check if the dialog contact is the same as the provider on 318 // dialog t 1117 processResponse(SIPResponse response, MessageChannel incomingMessageChannel, SIPDialog dialog) argument [all...] |
H A D | SipProviderImpl.java | 176 Dialog dialog = ((RequestEvent) sipEvent).getDialog(); 177 if ( sipStack.isLoggingEnabled()) sipStack.getStackLogger().logDebug("Dialog = " + dialog); 179 Dialog dialog = ((ResponseEvent) sipEvent).getDialog(); 180 if (sipStack.isLoggingEnabled() ) sipStack.getStackLogger().logDebug("Dialog = " + dialog); 342 // Could not find a dialog or the route is not set in dialog. 359 SIPDialog dialog = sipStack.getDialog(dialogId); 360 if (dialog != null && dialog.getState() == DialogState.TERMINATED) { 363 // ("Found a terminated dialog [all...] |
/external/webkit/Source/WebKit/chromium/public/ |
H A D | WebWindowFeatures.h | 62 bool dialog; member in struct:WebKit::WebWindowFeatures 77 , dialog(false) 99 , dialog(f.dialog)
|
/external/replicaisland/src/com/replica/replicaisland/ |
H A D | ConversationUtils.java | 45 ArrayList<Conversation> dialog = null; 53 if (dialog == null) { 54 dialog = new ArrayList<Conversation>(); 58 dialog.add(currentConversation); 86 return dialog;
|
/external/webkit/Tools/QtTestBrowser/ |
H A D | webpage.cpp | 135 QDialog* dialog = new QDialog(QApplication::activeWindow()); local 136 dialog->setWindowTitle("HTTP Authentication"); 138 QGridLayout* layout = new QGridLayout(dialog); 139 dialog->setLayout(layout); 141 QLabel* messageLabel = new QLabel(dialog); 148 QLabel* userLabel = new QLabel("Username:", dialog); 150 QLineEdit* userInput = new QLineEdit(dialog); 153 QLabel* passLabel = new QLabel("Password:", dialog); 155 QLineEdit* passInput = new QLineEdit(dialog); 161 | QDialogButtonBox::Cancel, Qt::Horizontal, dialog); [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
H A D | SIPClientTransaction.java | 500 MessageChannel sourceChannel, SIPDialog dialog) { 519 sipStack.getStackLogger().logDebug("dialog = " + dialog); 527 * if (dialog != null && transactionResponse.getStatusCode() != 100 && 529 * add the route before you process the response. dialog.setLastResponse(this, 530 * transactionResponse); this.setDialog(dialog, transactionResponse.getDialogId(false)); } 535 inviteClientTransaction(transactionResponse, sourceChannel, dialog); 537 nonInviteClientTransaction(transactionResponse, sourceChannel, dialog); 724 MessageChannel sourceChannel, SIPDialog dialog) throws IOException { 729 if (dialog ! 499 processResponse(SIPResponse transactionResponse, MessageChannel sourceChannel, SIPDialog dialog) argument 723 inviteClientTransaction(SIPResponse transactionResponse, MessageChannel sourceChannel, SIPDialog dialog) argument [all...] |
/external/webkit/Source/WebCore/page/ |
H A D | WindowFeatures.h | 53 , dialog(false) 77 bool dialog; member in struct:WebCore::WindowFeatures
|