diff options
author | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-08-22 20:19:47 +0000 |
---|---|---|
committer | Nalin Dahyabhai <nalin@src.gnome.org> | 2002-08-22 20:19:47 +0000 |
commit | d7144c30e3481e893677d2653b48c2168c6a0bc7 (patch) | |
tree | fdeb80e2096d3f8a3e1f9a68c418b694dec44719 /src/vte.h | |
parent | 72c9f7ef1fa08f27e9ab7fcbaef90b938d7ff4ca (diff) |
Make use of the visible bell a separate option from use of the audible
* src/vte.c, src/vte.h: Make use of the visible bell a separate option from
use of the audible bell, allowing both/neither to be used. Open fonts
right away again -- profterm reads the metrics right after calling
set_font(), so we have to open fonts ASAP. Rework the Xft/Pango/Xlib
decision code to be more consistent. Watch for style changes and reset
our font to the new style's font when we're already using the old
style's font.
Diffstat (limited to 'src/vte.h')
-rw-r--r-- | src/vte.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -140,6 +140,9 @@ void vte_terminal_set_size(VteTerminal *terminal, long columns, long rows); /* Set various one-off settings. */ void vte_terminal_set_audible_bell(VteTerminal *terminal, gboolean is_audible); +gboolean vte_terminal_get_audible_bell(VteTerminal *terminal); +void vte_terminal_set_visible_bell(VteTerminal *terminal, gboolean is_visible); +gboolean vte_terminal_get_visible_bell(VteTerminal *terminal); void vte_terminal_set_scroll_on_output(VteTerminal *terminal, gboolean scroll); void vte_terminal_set_scroll_on_keystroke(VteTerminal *terminal, gboolean scroll); |