Scaling support in tint2conf (issue #656)

This commit is contained in:
o9000
2018-01-17 05:27:56 +00:00
parent c7b23ee94a
commit b3f9834313
3 changed files with 23 additions and 1 deletions

View File

@@ -22,6 +22,7 @@
#include "gradient_gui.h"
#include "strlcat.h"
GtkWidget *scale_relative_to_dpi;
GtkWidget *panel_width, *panel_height, *panel_margin_x, *panel_margin_y, *panel_padding_x, *panel_padding_y,
*panel_spacing;
GtkWidget *panel_wm_menu, *panel_dock, *panel_autohide, *panel_autohide_show_time, *panel_autohide_hide_time,
@@ -600,6 +601,19 @@ void create_panel(GtkWidget *parent)
"for centered panels, it is evenly distributed on both sides of the panel."),
NULL);
row++;
col = 2;
label = gtk_label_new(_("Scale relative to DPI"));
gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
gtk_widget_show(label);
gtk_table_attach(GTK_TABLE(table), label, col, col + 1, row, row + 1, GTK_FILL, 0, 0, 0);
col++;
scale_relative_to_dpi = gtk_spin_button_new_with_range(0, 9000, 1);
gtk_widget_show(scale_relative_to_dpi);
gtk_table_attach(GTK_TABLE(table), scale_relative_to_dpi, col, col + 1, row, row + 1, GTK_FILL, 0, 0, 0);
col++;
change_paragraph(parent);
label = gtk_label_new(_("<b>Appearance</b>"));