From c7e81ecc057ebdfb6cacc930bbb6b59c9cd3a471 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Fri, 03 Nov 2017 14:58:59 -0400 Subject: MqMainMenu: Add preferences button next to profile button --- (limited to 'src/toolbars/navigation/main-menu.c') diff --git a/src/toolbars/navigation/main-menu.c b/src/toolbars/navigation/main-menu.c index 9fc14bc..50c2cff 100644 --- a/src/toolbars/navigation/main-menu.c +++ b/src/toolbars/navigation/main-menu.c @@ -341,9 +341,11 @@ create_main_grid(MqMainMenu *main_menu) #undef CLICKED_CB static GtkWidget * -create_profile_buttons(MqMainMenu G_GNUC_UNUSED *main_menu) +create_profile_buttons(MqMainMenu *main_menu) { GtkWidget *profile_button; + GtkWidget *preferences_button; + GtkWidget *grid; profile_button = gtk_button_new(); gtk_button_set_image(GTK_BUTTON(profile_button), @@ -353,7 +355,21 @@ create_profile_buttons(MqMainMenu G_GNUC_UNUSED *main_menu) gtk_button_set_image_position(GTK_BUTTON(profile_button), GTK_POS_LEFT); gtk_button_set_always_show_image(GTK_BUTTON(profile_button), TRUE); - return profile_button; + preferences_button = gtk_button_new_from_icon_name( + "preferences-desktop", GTK_ICON_SIZE_BUTTON); + gtk_widget_set_tooltip_text(preferences_button, "Preferences"); + g_signal_connect(preferences_button, "clicked", + G_CALLBACK(preferences_clicked_cb), main_menu); + + /* Set up the grid. */ + grid = gtk_grid_new(); + gtk_grid_set_column_homogeneous(GTK_GRID(grid), TRUE); + gtk_style_context_add_class(gtk_widget_get_style_context(grid), + "linked"); + gtk_grid_attach(GTK_GRID(grid), profile_button, 0, 0, 2, 1); + gtk_grid_attach(GTK_GRID(grid), preferences_button, 2, 0, 1, 1); + + return grid; } static void -- cgit v0.9.1