Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5486)

Unified Diff: chrome/browser/gtk/infobar_gtk.cc

Issue 6334001: [gtk] shenanigans to get the confirm infobar's text to shrink/hide before the buttons do. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove dbging code Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/infobar_gtk.cc
diff --git a/chrome/browser/gtk/infobar_gtk.cc b/chrome/browser/gtk/infobar_gtk.cc
index 097f502d5013aa3cb8e1e4f5a756181d38e69f59..e5f812b1d80ebe76153a0442cc97b4178469f62d 100644
--- a/chrome/browser/gtk/infobar_gtk.cc
+++ b/chrome/browser/gtk/infobar_gtk.cc
@@ -385,23 +385,31 @@ class ConfirmInfoBar : public InfoBar {
ConfirmInfoBar::ConfirmInfoBar(ConfirmInfoBarDelegate* delegate)
: InfoBar(delegate) {
confirm_hbox_ = gtk_chrome_shrinkable_hbox_new(FALSE, FALSE, 0);
- gtk_box_pack_start(GTK_BOX(hbox_), confirm_hbox_, TRUE, TRUE, 0);
- gtk_widget_set_size_request(confirm_hbox_, 0, -1);
+ // This alignment allocates the confirm hbox only as much space as it
+ // requests, and less if there is not enough available.
+ GtkWidget* align = gtk_alignment_new(0, 0, 0, 1);
+ gtk_container_add(GTK_CONTAINER(align), confirm_hbox_);
+ gtk_box_pack_start(GTK_BOX(hbox_), align, TRUE, TRUE, 0);
+
+ // We add the buttons in reverse order and pack end instead of start so
+ // that the first widget to get shrunk is the label rather than the button(s).
+ AddButton(ConfirmInfoBarDelegate::BUTTON_OK);
+ AddButton(ConfirmInfoBarDelegate::BUTTON_CANCEL);
std::string label_text = UTF16ToUTF8(delegate->GetMessageText());
GtkWidget* label = gtk_label_new(label_text.c_str());
gtk_util::ForceFontSizePixels(label, 13.4);
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
- gtk_util::CenterWidgetInHBox(confirm_hbox_, label, false, kEndOfLabelSpacing);
+ gtk_util::CenterWidgetInHBox(confirm_hbox_, label, true, kEndOfLabelSpacing);
gtk_widget_modify_fg(label, GTK_STATE_NORMAL, &gtk_util::kGdkBlack);
g_signal_connect(label, "map",
G_CALLBACK(gtk_util::InitLabelSizeRequestAndEllipsizeMode),
NULL);
- AddButton(ConfirmInfoBarDelegate::BUTTON_CANCEL);
- AddButton(ConfirmInfoBarDelegate::BUTTON_OK);
-
std::string link_text = UTF16ToUTF8(delegate->GetLinkText());
+ if (link_text.empty())
Mike Mammarella 2011/01/13 23:01:12 Is this related to the bug, or just incidentally a
Evan Stade 2011/01/13 23:14:18 incidental. I noticed that for the sessions restor
+ return;
+
GtkWidget* link = gtk_chrome_link_button_new(link_text.c_str());
gtk_misc_set_alignment(GTK_MISC(GTK_CHROME_LINK_BUTTON(link)->label), 0, 0.5);
g_signal_connect(link, "clicked", G_CALLBACK(OnLinkClickedThunk), this);
@@ -416,7 +424,7 @@ void ConfirmInfoBar::AddButton(ConfirmInfoBarDelegate::InfoBarButton type) {
if (delegate_->AsConfirmInfoBarDelegate()->GetButtons() & type) {
GtkWidget* button = gtk_button_new_with_label(UTF16ToUTF8(
delegate_->AsConfirmInfoBarDelegate()->GetButtonLabel(type)).c_str());
- gtk_util::CenterWidgetInHBox(confirm_hbox_, button, false,
+ gtk_util::CenterWidgetInHBox(confirm_hbox_, button, true,
kButtonButtonSpacing);
g_signal_connect(button, "clicked",
G_CALLBACK(type == ConfirmInfoBarDelegate::BUTTON_OK ?
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698