| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/gtk/infobars/translate_message_infobar_gtk.h" | 5 #include "chrome/browser/ui/gtk/infobars/translate_message_infobar_gtk.h" |
| 6 | 6 |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/translate/translate_infobar_delegate.h" | 8 #include "chrome/browser/translate/translate_infobar_delegate.h" |
| 9 #include "chrome/browser/ui/gtk/gtk_util.h" | 9 #include "chrome/browser/ui/gtk/gtk_util.h" |
| 10 #include "ui/base/gtk/gtk_hig_constants.h" | 10 #include "ui/base/gtk/gtk_hig_constants.h" |
| 11 #include "ui/base/gtk/gtk_signal_registrar.h" | 11 #include "ui/base/gtk/gtk_signal_registrar.h" |
| 12 | 12 |
| 13 TranslateMessageInfoBar::TranslateMessageInfoBar( | 13 TranslateMessageInfoBar::TranslateMessageInfoBar( |
| 14 InfoBarService* owner, | 14 scoped_ptr<TranslateInfoBarDelegate> delegate) |
| 15 TranslateInfoBarDelegate* delegate) | 15 : TranslateInfoBarBase(delegate.Pass()) { |
| 16 : TranslateInfoBarBase(owner, delegate) { | |
| 17 } | 16 } |
| 18 | 17 |
| 19 TranslateMessageInfoBar::~TranslateMessageInfoBar() { | 18 TranslateMessageInfoBar::~TranslateMessageInfoBar() { |
| 20 } | 19 } |
| 21 | 20 |
| 22 void TranslateMessageInfoBar::InitWidgets() { | 21 void TranslateMessageInfoBar::PlatformSpecificSetOwner() { |
| 23 TranslateInfoBarBase::InitWidgets(); | 22 TranslateInfoBarBase::PlatformSpecificSetOwner(); |
| 24 | 23 |
| 25 GtkWidget* new_hbox = gtk_hbox_new(FALSE, ui::kControlSpacing); | 24 GtkWidget* new_hbox = gtk_hbox_new(FALSE, ui::kControlSpacing); |
| 26 gtk_util::CenterWidgetInHBox(hbox(), new_hbox, false, 0); | 25 gtk_util::CenterWidgetInHBox(hbox(), new_hbox, false, 0); |
| 27 | 26 |
| 28 std::string text = UTF16ToUTF8(GetDelegate()->GetMessageInfoBarText()); | 27 std::string text = UTF16ToUTF8(GetDelegate()->GetMessageInfoBarText()); |
| 29 gtk_box_pack_start(GTK_BOX(new_hbox), CreateLabel(text.c_str()), FALSE, FALSE, | 28 gtk_box_pack_start(GTK_BOX(new_hbox), CreateLabel(text.c_str()), FALSE, FALSE, |
| 30 0); | 29 0); |
| 31 string16 button_text = GetDelegate()->GetMessageInfoBarButtonText(); | 30 string16 button_text = GetDelegate()->GetMessageInfoBarButtonText(); |
| 32 if (!button_text.empty()) { | 31 if (!button_text.empty()) { |
| 33 GtkWidget* button = | 32 GtkWidget* button = |
| 34 gtk_button_new_with_label(UTF16ToUTF8(button_text).c_str()); | 33 gtk_button_new_with_label(UTF16ToUTF8(button_text).c_str()); |
| 35 signals()->Connect(button, "clicked", G_CALLBACK(&OnButtonPressedThunk), | 34 signals()->Connect(button, "clicked", G_CALLBACK(&OnButtonPressedThunk), |
| 36 this); | 35 this); |
| 37 gtk_box_pack_start(GTK_BOX(new_hbox), button, FALSE, FALSE, 0); | 36 gtk_box_pack_start(GTK_BOX(new_hbox), button, FALSE, FALSE, 0); |
| 38 } | 37 } |
| 39 } | 38 } |
| 40 | 39 |
| 41 void TranslateMessageInfoBar::OnButtonPressed(GtkWidget* sender) { | 40 void TranslateMessageInfoBar::OnButtonPressed(GtkWidget* sender) { |
| 42 GetDelegate()->MessageInfoBarButtonPressed(); | 41 GetDelegate()->MessageInfoBarButtonPressed(); |
| 43 } | 42 } |
| OLD | NEW |