Searched refs:dialog (Results 1 - 25 of 270) sorted by relevance

1234567891011

/external/chromium_org/chrome/browser/ui/app_modal_dialogs/
H A Dapp_modal_dialog_queue.cc15 void AppModalDialogQueue::AddDialog(AppModalDialog* dialog) { argument
17 ShowModalDialog(dialog);
20 app_modal_dialog_queue_.push_back(dialog);
24 AppModalDialog* dialog = GetNextDialog(); local
25 if (dialog)
26 ShowModalDialog(dialog);
33 // As part of showing a modal dialog we may end up back in this method
34 // (showing a dialog activates the WebContents, which can trigger a call
36 // activate the tab contents the dialog is shown.
55 void AppModalDialogQueue::ShowModalDialog(AppModalDialog* dialog) { argument
69 AppModalDialog* dialog = app_modal_dialog_queue_.front(); local
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Dshare_dialog.css5 .cr-dialog-frame.share-dialog-frame {
11 .share-dialog-webview-wrapper {
19 .share-dialog-webview-wrapper:not(.loaded) {
23 .share-dialog-webview {
28 .share-dialog-webview-wrapper:not(.loaded) .share-dialog-webview {
32 .share-dialog-frame .cr-dialog-text,
33 .share-dialog
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPreferenceScreen.java12 private Dialog dialog; field in class:ShadowPreferenceScreen
16 return dialog;
19 public void setDialog(Dialog dialog) { argument
20 this.dialog = dialog;
H A DShadowDialogFragment.java23 private Dialog dialog; field in class:ShadowDialogFragment
44 dialog = realDialogFragment.onCreateDialog(null);
46 if (dialog == null) {
47 dialog = new Dialog(activityFromManager);
48 dialog.setContentView(view);
50 dialog.setCancelable(cancelable);
62 if (dialog != null) {
63 dialog.show();
69 if (dialog != null) {
70 dialog
[all...]
/external/nist-sip/java/javax/sip/
H A DDialogTerminatedEvent.java8 public DialogTerminatedEvent(Object source, Dialog dialog) { argument
10 mDialog = dialog;
/external/chromium_org/extensions/shell/browser/
H A Dshell_web_contents_modal_dialog_manager.cc11 NativeWebContentsModalDialog dialog,
10 CreateNativeWebModalManager( NativeWebContentsModalDialog dialog, SingleWebContentsDialogManagerDelegate* native_delegate) argument
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
H A Dprogress.c7 static GtkWidget *dialog; variable
15 if (dialog == NULL) {
19 dialog = gtk_window_new(GTK_WINDOW_TOPLEVEL);
25 gtk_container_add(GTK_CONTAINER(dialog), vbox);
27 gtk_window_set_title(GTK_WINDOW(dialog), "perf");
28 gtk_window_resize(GTK_WINDOW(dialog), 300, 80);
29 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER);
31 gtk_widget_show_all(dialog);
46 gtk_widget_destroy(dialog);
48 dialog
[all...]
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dmedia_galleries_dialog_views_unittest.cc75 MediaGalleriesDialogViews dialog(controller());
76 EXPECT_EQ(2U, dialog.checkbox_map_.size());
78 MediaGalleryCheckboxView* checkbox_view1 = dialog.checkbox_map_[1];
81 MediaGalleryCheckboxView* checkbox_view2 = dialog.checkbox_map_[2];
93 MediaGalleriesDialogViews dialog(controller());
94 EXPECT_EQ(1U, dialog.checkbox_map_.size());
95 views::Checkbox* checkbox = dialog.checkbox_map_[1]->checkbox();
101 dialog.ButtonPressed(checkbox, dummy_event);
105 dialog.ButtonPressed(checkbox, dummy_event);
109 // a gallery that the dialog has
[all...]
/external/chromium-trace/trace-viewer/src/tracing/
H A Drecord_selection_dialog.css6 .record-selection-dialog {
11 .record-selection-dialog .default-enabled-categories {
15 .record-selection-dialog .default-disabled-categories {
21 .record-selection-dialog .categories {
26 .record-selection-dialog form {
34 .record-selection-dialog .options {
40 .record-selection-dialog td {
44 .record-selection-dialog .options label {
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DRepostFormWarningDialog.java16 * Form resubmission warning dialog. Presents the cancel/continue choice and fires one of two
20 // Warning dialog currently being shown, stored for testing.
37 public void onClick(DialogInterface dialog, int id) {
44 public void onClick(DialogInterface dialog, int id) {
50 Dialog dialog = builder.create();
51 setCurrentDialog(dialog);
53 return dialog;
57 public void onDismiss(DialogInterface dialog) { argument
58 super.onDismiss(dialog);
63 * Sets the currently displayed dialog i
66 setCurrentDialog(Dialog dialog) argument
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DDialogTest.java28 final Dialog dialog = new Dialog(null);
29 dialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
32 assertThat((Dialog) dialogInListener, sameInstance(dialog));
37 dialog.dismiss();
44 Dialog dialog = new Dialog(Robolectric.application);
45 assertNotNull(dialog.getLayoutInflater());
50 TestDialog dialog = new TestDialog();
51 dialog.show();
53 assertTrue(dialog.onStartCalled);
58 Dialog dialog
[all...]
H A DProgressDialogTest.java29 private ProgressDialog dialog; field in class:ProgressDialogTest
34 dialog = new ProgressDialog(null);
35 shadow = Robolectric.shadowOf(dialog);
48 dialog.setMessage(message);
54 assertThat(dialog.isIndeterminate(), equalTo(false));
56 dialog.setIndeterminate(true);
57 assertThat(dialog.isIndeterminate(), equalTo(true));
59 dialog.setIndeterminate(false);
60 assertThat(dialog.isIndeterminate(), equalTo(false));
113 public void onCancel(DialogInterface dialog) {
[all...]
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dselect_file_dialog_impl_gtk2.cc47 // Implementation of SelectFileDialog that shows a Gtk common dialog for
48 // choosing a file or folder. This acts as a modal dialog.
83 void FileSelected(GtkWidget* dialog, const base::FilePath& path);
86 void MultiFilesSelected(GtkWidget* dialog,
91 // us when we were told to show the dialog.
92 void FileNotSelected(GtkWidget* dialog);
109 // Removes and returns the |params| associated with |dialog| from
111 void* PopParamsForDialog(GtkWidget* dialog);
113 // Take care of internal data structures when a file dialog is destroyed.
114 void FileDialogDestroyed(GtkWidget* dialog);
242 GtkWidget* dialog = NULL; local
343 FileSelected(GtkWidget* dialog, const base::FilePath& path) argument
365 MultiFilesSelected(GtkWidget* dialog, const std::vector<base::FilePath>& files) argument
374 FileNotSelected(GtkWidget* dialog) argument
385 GtkWidget* dialog = local
426 GtkWidget* dialog = local
455 GtkWidget* dialog = CreateFileOpenHelper(title_string, default_path, parent); local
469 GtkWidget* dialog = CreateFileOpenHelper(title_string, default_path, parent); local
481 GtkWidget* dialog = local
510 PopParamsForDialog(GtkWidget* dialog) argument
518 FileDialogDestroyed(GtkWidget* dialog) argument
548 SelectSingleFileHelper(GtkWidget* dialog, gint response_id, bool allow_folder) argument
576 OnSelectSingleFileDialogResponse( GtkWidget* dialog, int response_id) argument
581 OnSelectSingleFolderDialogResponse( GtkWidget* dialog, int response_id) argument
586 OnSelectMultiFileDialogResponse(GtkWidget* dialog, int response_id) argument
616 OnFileChooserDestroy(GtkWidget* dialog) argument
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/first_run/app/
H A Dstyle.css12 .step.dialog {
21 .step.dialog h1 {
27 .step.dialog p {
33 .step.dialog .controls {
38 .step.dialog .controls button {
45 .step.dialog .window-header {
54 .step.dialog .topbutton-bar {
59 .step.dialog .topbutton-wrapper {
65 .step.dialog .topbutton-bar button {
71 .step.dialog
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A DrootUi.js49 var dialog = $('#message_dialog');
51 if (dialog.length == 0) {
52 dialog = $('<div id="message_dialog"/>');
53 $('body').append(dialog);
56 dialog.empty().text(content);
58 dialog.empty().append(content); // Assume is a jQuery DOM object.
60 dialog.dialog({modal: true, title: title, height:'auto', width:'auto'});
64 $('#message_dialog').dialog('close');
/external/chromium_org/chrome/browser/ui/views/
H A Dselect_file_dialog_extension_unittest.cc26 SelectFileDialogExtension* dialog = new SelectFileDialogExtension(listener, local
28 // Simulate the dialog opening.
30 dialog->AddPending(kDefaultRoutingID);
32 return dialog;
63 // Client of a SelectFileDialog that deletes itself whenever the dialog
76 SelectFileDialogExtension* dialog() const { return dialog_.get(); } function in class:SelfDeletingClient
92 scoped_refptr<SelectFileDialogExtension> dialog = local
98 // Simulate closing the dialog so the listener gets invoked.
99 dialog->ExtensionDialogClosing(NULL);
106 scoped_refptr<SelectFileDialogExtension> dialog local
[all...]
H A Dconstrained_window_views_browsertest.cc53 // A helper function to create and show a web contents modal dialog.
55 scoped_ptr<TestDialog> dialog(new TestDialog());
56 ShowWebModalDialogViews(dialog.get(), web_contents);
57 return dialog.Pass();
78 // Create a second dialog. This will also be modal to |web_contents|, but will
98 // Creating a new tab should take focus away from the other tab's dialog.
104 // Activating the previous tab should bring focus to the dialog.
119 scoped_ptr<TestDialog> dialog = ShowModalDialog( local
121 EXPECT_TRUE(dialog->GetWidget()->IsVisible());
124 EXPECT_EQ(NULL, dialog
130 scoped_ptr<TestDialog> dialog = ShowModalDialog( local
152 scoped_ptr<TestDialog> dialog = ShowModalDialog(web_contents); local
186 scoped_ptr<TestDialog> dialog = ShowModalDialog(web_contents); local
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/
H A Dpopup.js56 $('#deletedialog').empty().dialog({
70 $(this).dialog('destroy');
73 $(this).dialog('destroy');
76 }).dialog('open');
79 $('#adddialog').empty().append(edit).dialog({autoOpen: false,
86 $(this).dialog('destroy');
90 $(this).dialog('destroy');
92 }}).dialog('open');
96 $('#editdialog').empty().append(edit).dialog({autoOpen: false,
105 $(this).dialog('destro
[all...]
/external/chromium_org/ui/webui/resources/css/
H A Ddialogs.css5 .cr-dialog-container {
20 .cr-dialog-frame {
35 .cr-dialog-frame:focus {
54 .cr-dialog-frame.pulse {
61 .shown > .cr-dialog-frame {
67 .cr-dialog-frame {
75 .cr-dialog-shield {
88 .shown > .cr-dialog-shield {
97 .cr-dialog-title {
107 .cr-dialog
[all...]
/external/chromium_org/third_party/polymer/components/paper-dialog/
H A Dpaper-dialog-transition.css8 :host(.paper-dialog-transition) {
15 :host(.paper-dialog-transition.core-opened) {
21 :host(.paper-dialog-transition-bottom) {
26 :host(.paper-dialog-transition-center.core-opened) {
27 animation: paper-dialog-transition-center-keyframes 0.2s cubic-bezier(0.4, 0, 0.2, 1);
28 -webkit-animation: paper-dialog-transition-center-keyframes 0.2s cubic-bezier(0.4, 0, 0.2, 1);
31 @keyframes paper-dialog-transition-center-keyframes {
46 @-webkit-keyframes paper-dialog-transition-center-keyframes {
/external/chromium_org/third_party/polymer/components-chromium/paper-dialog/
H A Dpaper-dialog-transition.css8 :host(.paper-dialog-transition) {
15 :host(.paper-dialog-transition.core-opened) {
21 :host(.paper-dialog-transition-bottom) {
26 :host(.paper-dialog-transition-center.core-opened) {
27 animation: paper-dialog-transition-center-keyframes 0.2s cubic-bezier(0.4, 0, 0.2, 1);
28 -webkit-animation: paper-dialog-transition-center-keyframes 0.2s cubic-bezier(0.4, 0, 0.2, 1);
31 @keyframes paper-dialog-transition-center-keyframes {
46 @-webkit-keyframes paper-dialog-transition-center-keyframes {
/external/chromium_org/ui/views/window/
H A Ddialog_delegate_unittest.cc84 // Prevent the dialog from closing, for repeated ok and cancel button clicks.
108 TestDialog* dialog() const { return dialog_; } function in class:views::__anon17172::DialogTest
119 DialogClientView* client_view = dialog()->GetDialogClientView();
123 EXPECT_EQ(ui::DIALOG_BUTTON_OK, dialog()->GetDefaultDialogButton());
124 dialog()->PressEnterAndCheckStates(ok_button);
126 // Focus another button in the dialog, it should become the default.
127 LabelButton* button_1 = new LabelButton(dialog(), base::string16());
131 dialog()->PressEnterAndCheckStates(button_1);
138 dialog()->PressEnterAndCheckStates(ok_button);
140 // Focus yet another button in the dialog, i
[all...]
/external/chromium_org/content/shell/browser/
H A Dshell_javascript_dialog_win.cc16 INT_PTR CALLBACK ShellJavaScriptDialog::DialogProc(HWND dialog, argument
22 SetWindowLongPtr(dialog, DWLP_USER, static_cast<LONG_PTR>(lparam));
25 owner->dialog_win_ = dialog;
26 SetDlgItemText(dialog, IDC_DIALOGTEXT, owner->message_text_.c_str());
28 SetDlgItemText(dialog, IDC_PROMPTEDIT,
34 GetWindowLongPtr(dialog, DWLP_USER));
44 GetWindowLongPtr(dialog, DWLP_USER));
54 GetWindowTextLength(GetDlgItem(dialog, IDC_PROMPTEDIT)) + 1;
55 GetDlgItemText(dialog, IDC_PROMPTEDIT,
67 DestroyWindow(dialog);
[all...]
/external/chromium_org/components/web_modal/
H A Dweb_contents_modal_dialog_manager.h32 NativeWebContentsModalDialog dialog,
35 // Shows the dialog as a web contents modal dialog. The dialog will notify via
37 void ShowModalDialog(NativeWebContentsModalDialog dialog);
39 // Allow clients to supply their own native dialog manager. Suitable for
42 NativeWebContentsModalDialog dialog,
48 // Focus the topmost modal dialog. IsDialogActive() must be true when calling
54 virtual void WillClose(NativeWebContentsModalDialog dialog) OVERRIDE;
79 DialogState(NativeWebContentsModalDialog dialog,
83 NativeWebContentsModalDialog dialog; member in struct:web_modal::WebContentsModalDialogManager::DialogState
[all...]
/external/fio/
H A Dgerror.c63 GtkWidget *dialog, *content, *label; local
65 dialog = gtk_dialog_new_with_buttons(title, GTK_WINDOW(ui->window),
69 content = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
72 gtk_widget_show_all(dialog);
73 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
74 gtk_dialog_run(GTK_DIALOG(dialog));
75 gtk_widget_destroy(dialog);

Completed in 1960 milliseconds

1234567891011