| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_GTK_TAB_MODAL_CONFIRM_DIALOG_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_TAB_MODAL_CONFIRM_DIALOG_GTK_H_ |
| 7 #pragma once |
| 8 |
| 9 #include <gtk/gtk.h> |
| 10 |
| 11 #include "base/compiler_specific.h" |
| 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "chrome/browser/ui/gtk/constrained_window_gtk.h" |
| 14 #include "ui/base/gtk/gtk_signal.h" |
| 15 |
| 16 class TabContentsWrapper; |
| 17 class TabModalConfirmDialogDelegate; |
| 18 |
| 19 // Displays a tab-modal dialog, i.e. a dialog that will block the current page |
| 20 // but still allow the user to switch to a different page. |
| 21 // To display the dialog, allocate this object on the heap. It will open the |
| 22 // dialog from its constructor and then delete itself when the user dismisses |
| 23 // the dialog. |
| 24 class TabModalConfirmDialogGtk : public ConstrainedWindowGtkDelegate { |
| 25 public: |
| 26 TabModalConfirmDialogGtk(TabModalConfirmDialogDelegate* delegate, |
| 27 TabContentsWrapper* wrapper); |
| 28 |
| 29 // ConstrainedWindowGtkDelegate methods |
| 30 virtual GtkWidget* GetWidgetRoot() OVERRIDE; |
| 31 virtual GtkWidget* GetFocusWidget() OVERRIDE; |
| 32 virtual void DeleteDelegate() OVERRIDE; |
| 33 |
| 34 private: |
| 35 virtual ~TabModalConfirmDialogGtk(); |
| 36 |
| 37 // Callbacks |
| 38 CHROMEGTK_CALLBACK_0(TabModalConfirmDialogGtk, void, OnAccept); |
| 39 CHROMEGTK_CALLBACK_0(TabModalConfirmDialogGtk, void, OnCancel); |
| 40 |
| 41 scoped_ptr<TabModalConfirmDialogDelegate> delegate_; |
| 42 |
| 43 GtkWidget* dialog_; |
| 44 GtkWidget* ok_; |
| 45 GtkWidget* cancel_; |
| 46 |
| 47 DISALLOW_COPY_AND_ASSIGN(TabModalConfirmDialogGtk); |
| 48 }; |
| 49 |
| 50 #endif // CHROME_BROWSER_UI_GTK_TAB_MODAL_CONFIRM_DIALOG_GTK_H_ |
| OLD | NEW |