Add option to hide tasks from different monitors when panel_monitor = x (issue 196)
git-svn-id: http://tint2.googlecode.com/svn/trunk@736 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
committed by
mrovi9000@gmail.com
parent
a2de8d6e53
commit
c900bc24b2
@@ -41,7 +41,7 @@ GtkWidget *panel_background;
|
||||
|
||||
// taskbar
|
||||
GtkWidget *taskbar_show_desktop, *taskbar_show_name, *taskbar_padding_x, *taskbar_padding_y, *taskbar_spacing;
|
||||
GtkWidget *taskbar_hide_inactive_tasks;
|
||||
GtkWidget *taskbar_hide_inactive_tasks, *taskbar_hide_diff_monitor;
|
||||
GtkWidget *taskbar_name_padding_x, *taskbar_name_inactive_color, *taskbar_name_active_color, *taskbar_name_font;
|
||||
GtkWidget *taskbar_active_background, *taskbar_inactive_background;
|
||||
GtkWidget *taskbar_name_active_background, *taskbar_name_inactive_background;
|
||||
@@ -1877,7 +1877,7 @@ void create_taskbar(GtkWidget *parent)
|
||||
{
|
||||
GtkWidget *table, *label;
|
||||
|
||||
table = gtk_table_new(3, 2, FALSE);
|
||||
table = gtk_table_new(4, 2, FALSE);
|
||||
gtk_widget_show(table);
|
||||
gtk_box_pack_start(GTK_BOX(parent), table, FALSE, FALSE, 0);
|
||||
gtk_table_set_row_spacings(GTK_TABLE(table), ROW_SPACING);
|
||||
@@ -1910,6 +1910,15 @@ void create_taskbar(GtkWidget *parent)
|
||||
gtk_widget_show(taskbar_hide_inactive_tasks);
|
||||
gtk_table_attach(GTK_TABLE(table), taskbar_hide_inactive_tasks, 1, 2, 2, 3, GTK_FILL, 0, 0, 0);
|
||||
|
||||
label = gtk_label_new(_("Hide tasks from different monitors"));
|
||||
gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
|
||||
gtk_widget_show(label);
|
||||
gtk_table_attach(GTK_TABLE(table), label, 0, 1, 3, 4, GTK_FILL, 0, 0, 0);
|
||||
|
||||
taskbar_hide_diff_monitor = gtk_check_button_new();
|
||||
gtk_widget_show(taskbar_hide_diff_monitor);
|
||||
gtk_table_attach(GTK_TABLE(table), taskbar_hide_diff_monitor, 1, 2, 3, 4, GTK_FILL, 0, 0, 0);
|
||||
|
||||
change_paragraph(parent);
|
||||
|
||||
label = gtk_label_new(_("<b>Taskbar Appearance</b>"));
|
||||
|
||||
Reference in New Issue
Block a user