termite.c: cleanup

This commit is contained in:
Daniel Micay 2012-07-10 00:02:55 -04:00
parent a3785ebef0
commit 9d8cfcef84
1 changed files with 4 additions and 10 deletions

View File

@ -150,20 +150,20 @@ static void toggle_visual(VteTerminal *vte, select_info *select, select_mode mod
static long first_row(VteTerminal *vte) { static long first_row(VteTerminal *vte) {
GtkAdjustment *adjust = gtk_scrollable_get_vadjustment(GTK_SCROLLABLE(vte)); GtkAdjustment *adjust = gtk_scrollable_get_vadjustment(GTK_SCROLLABLE(vte));
double scroll_lower = gtk_adjustment_get_lower(adjust); const double scroll_lower = gtk_adjustment_get_lower(adjust);
return (long)scroll_lower; return (long)scroll_lower;
} }
static long last_row(VteTerminal *vte) { static long last_row(VteTerminal *vte) {
GtkAdjustment *adjust = gtk_scrollable_get_vadjustment(GTK_SCROLLABLE(vte)); GtkAdjustment *adjust = gtk_scrollable_get_vadjustment(GTK_SCROLLABLE(vte));
double scroll_upper = gtk_adjustment_get_upper(adjust); const double scroll_upper = gtk_adjustment_get_upper(adjust);
return (long)scroll_upper - 1; return (long)scroll_upper - 1;
} }
static void update_scroll(VteTerminal *vte, const select_info *select) { static void update_scroll(VteTerminal *vte, const select_info *select) {
GtkAdjustment *adjust = gtk_scrollable_get_vadjustment(GTK_SCROLLABLE(vte)); GtkAdjustment *adjust = gtk_scrollable_get_vadjustment(GTK_SCROLLABLE(vte));
double scroll_row = gtk_adjustment_get_value(adjust); const double scroll_row = gtk_adjustment_get_value(adjust);
long n_rows = vte_terminal_get_row_count(vte); const long n_rows = vte_terminal_get_row_count(vte);
if (select->cursor_row < scroll_row) { if (select->cursor_row < scroll_row) {
gtk_adjustment_set_value(adjust, (double)select->cursor_row); gtk_adjustment_set_value(adjust, (double)select->cursor_row);
@ -624,27 +624,21 @@ static void load_config(GtkWindow *window, VteTerminal *vte,
} }
} }
} }
if (success) { if (success) {
vte_terminal_set_colors(vte, NULL, NULL, palette, palette_size); vte_terminal_set_colors(vte, NULL, NULL, palette, palette_size);
} }
if (get_config_color(config, "foreground", &color)) { if (get_config_color(config, "foreground", &color)) {
vte_terminal_set_color_foreground(vte, &color); vte_terminal_set_color_foreground(vte, &color);
} }
if (get_config_color(config, "foreground_bold", &color)) { if (get_config_color(config, "foreground_bold", &color)) {
vte_terminal_set_color_bold(vte, &color); vte_terminal_set_color_bold(vte, &color);
} }
if (get_config_color(config, "foreground_dim", &color)) { if (get_config_color(config, "foreground_dim", &color)) {
vte_terminal_set_color_dim(vte, &color); vte_terminal_set_color_dim(vte, &color);
} }
if (get_config_color(config, "background", &color)) { if (get_config_color(config, "background", &color)) {
vte_terminal_set_color_background(vte, &color); vte_terminal_set_color_background(vte, &color);
} }
if (get_config_color(config, "cursor", &color)) { if (get_config_color(config, "cursor", &color)) {
vte_terminal_set_color_cursor(vte, &color); vte_terminal_set_color_cursor(vte, &color);
} }