diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-04-25 15:16:22 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-04-25 15:16:22 +0000 |
commit | f37d7371879e2b1e2d923ec12762430b3d1937fc (patch) | |
tree | 28155bfc9dca9815ac7e8c7599130a15b1d2cb1b /fake_packages/Gnome2 | |
parent | be4fff49f0164e606d4b2f76f64d4d108895f236 (diff) | |
download | perl_checker-f37d7371879e2b1e2d923ec12762430b3d1937fc.tar perl_checker-f37d7371879e2b1e2d923ec12762430b3d1937fc.tar.gz perl_checker-f37d7371879e2b1e2d923ec12762430b3d1937fc.tar.bz2 perl_checker-f37d7371879e2b1e2d923ec12762430b3d1937fc.tar.xz perl_checker-f37d7371879e2b1e2d923ec12762430b3d1937fc.zip |
Diffstat (limited to 'fake_packages/Gnome2')
-rw-r--r-- | fake_packages/Gnome2/Vte.pm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/fake_packages/Gnome2/Vte.pm b/fake_packages/Gnome2/Vte.pm index 598c405..2874a9b 100644 --- a/fake_packages/Gnome2/Vte.pm +++ b/fake_packages/Gnome2/Vte.pm @@ -10,6 +10,7 @@ sub copy_clipboard { my ($_terminal) = @_ } sub copy_primary { my ($_terminal) = @_ } sub feed { my ($_terminal, $_data) = @_ } sub feed_child { my ($_terminal, $_data) = @_ } +sub feed_child_binary { my ($_terminal, $_data) = @_ } sub fork_command { my ($_terminal, $_command, $_arg_ref, $_env_ref, $_directory, $_lastlog, $_utmp, $_wtmp) = @_ } sub get_adjustment { my ($_terminal) = @_ } sub get_allow_bold { my ($_terminal) = @_ } @@ -20,6 +21,7 @@ sub get_char_height { my ($_terminal) = @_ } sub get_char_width { my ($_terminal) = @_ } sub get_column_count { my ($_terminal) = @_ } sub get_cursor_position { my ($_terminal) = @_ } +sub get_default_emulation { my ($_terminal) = @_ } sub get_emulation { my ($_terminal) = @_ } sub get_encoding { my ($_terminal) = @_ } sub get_font { my ($_terminal) = @_ } @@ -29,7 +31,8 @@ sub get_mouse_autohide { my ($_terminal) = @_ } sub get_padding { my ($_terminal) = @_ } sub get_row_count { my ($_terminal) = @_ } sub get_status_line { my ($_terminal) = @_ } -sub get_text { my ($_terminal, $_func, $_o_data) = @_ } +sub get_text { my ($_terminal, $_o_func, $_o_data) = @_ } +sub get_text_include_trailing_spaces { my ($_terminal, $_func, $_o_data) = @_ } sub get_text_range { my ($_terminal, $_start_row, $_start_col, $_end_row, $_end_col, $_func, $_o_data) = @_ } sub get_using_xft { my ($_terminal) = @_ } sub get_visible_bell { my ($_terminal) = @_ } @@ -40,6 +43,8 @@ sub match_add { my ($_terminal, $_match) = @_ } sub match_check { my ($_terminal, $_column, $_row) = @_ } sub match_clear_all { my ($_terminal) = @_ } sub match_remove { my ($_terminal, $_tag) = @_ } +sub match_set_cursor { my ($_terminal, $_tag, $_cursor) = @_ } +sub match_set_cursor_type { my ($_terminal, $_tag, $_cursor_type) = @_ } sub new { my ($_class) = @_ } sub paste_clipboard { my ($_terminal) = @_ } sub paste_primary { my ($_terminal) = @_ } @@ -49,12 +54,15 @@ sub set_audible_bell { my ($_terminal, $_is_audible) = @_ } sub set_background_image { my ($_terminal, $_image) = @_ } sub set_background_image_file { my ($_terminal, $_path) = @_ } sub set_background_saturation { my ($_terminal, $_saturation) = @_ } +sub set_background_tint_color { my ($_terminal, $_color) = @_ } sub set_background_transparent { my ($_terminal, $_transparent) = @_ } sub set_backspace_binding { my ($_terminal, $_binding) = @_ } sub set_color_background { my ($_terminal, $_background) = @_ } sub set_color_bold { my ($_terminal, $_bold) = @_ } +sub set_color_cursor { my ($_terminal, $_cursor_background) = @_ } sub set_color_dim { my ($_terminal, $_dim) = @_ } sub set_color_foreground { my ($_terminal, $_foreground) = @_ } +sub set_color_highlight { my ($_terminal, $_highlight_background) = @_ } sub set_colors { my ($_terminal, $_foreground, $_background, $_palette_ref) = @_ } sub set_cursor_blinks { my ($_terminal, $_blink) = @_ } sub set_default_colors { my ($_terminal) = @_ } @@ -63,7 +71,12 @@ sub set_emulation { my ($_terminal, $_emulation) = @_ } sub set_encoding { my ($_terminal, $_codeset) = @_ } sub set_font { my ($_terminal, $_font_desc) = @_ } sub set_font_from_string { my ($_terminal, $_name) = @_ } +sub set_font_from_string_full { my ($_terminal, $_name, $_anti_alias) = @_ } +sub set_font_full { my ($_terminal, $_font_desc, $_anti_alias) = @_ } sub set_mouse_autohide { my ($_terminal, $_setting) = @_ } +sub set_opacity { my ($_terminal, $_opacity) = @_ } +sub set_pty { my ($_terminal, $_pty_master) = @_ } +sub set_scroll_background { my ($_terminal, $_scroll) = @_ } sub set_scroll_on_keystroke { my ($_terminal, $_scroll) = @_ } sub set_scroll_on_output { my ($_terminal, $_scroll) = @_ } sub set_scrollback_lines { my ($_terminal, $_lines) = @_ } |