diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2013-10-23 16:55:59 +0200 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2013-10-23 16:55:59 +0200 |
commit | 96b28e953de4363736e3dfccbedbf93e9fe70b6c (patch) | |
tree | add921e600fa5776ee8eb3c3ea562dcc884829ef /docs | |
parent | 972ec107cf7a69c32752bab3076af1275239d317 (diff) |
tsm: remove and depend on libtsm
TSM was extracted from kmscon sources so it can more easily be used by
other emulators. It is available at:
http://cgit.freedesktop.org/~dvdhrm/libtsm
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/pc/libtsm.pc.in | 11 | ||||
-rw-r--r-- | docs/sym/libtsm.sym | 137 |
2 files changed, 0 insertions, 148 deletions
diff --git a/docs/pc/libtsm.pc.in b/docs/pc/libtsm.pc.in deleted file mode 100644 index c113e64..0000000 --- a/docs/pc/libtsm.pc.in +++ /dev/null @@ -1,11 +0,0 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ - -Name: tsm -Description: Terminal-emulator State Machine -URL: @PACKAGE_URL@ -Version: @PACKAGE_VERSION@ -Libs: -L${libdir} -ltsm -Cflags: -I${includedir} diff --git a/docs/sym/libtsm.sym b/docs/sym/libtsm.sym deleted file mode 100644 index df605d4..0000000 --- a/docs/sym/libtsm.sym +++ /dev/null @@ -1,137 +0,0 @@ -/*** - * libtsm - Terminal-Emulator State Machine - * - * Copyright (c) 2012-2013 David Herrmann <dh.herrmann@googlemail.com> - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files - * (the "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be included - * in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ***/ - -LIBTSM_1 { -global: - tsm_symbol_default; -local: - *; -}; - -LIBTSM_2 { -global: - tsm_symbol_table_new; - tsm_symbol_table_ref; - tsm_symbol_table_unref; - - tsm_symbol_make; - tsm_symbol_append; - tsm_symbol_get; - tsm_symbol_get_width; - - tsm_ucs4_get_width; - tsm_ucs4_to_utf8; - tsm_ucs4_to_utf8_alloc; - - tsm_utf8_mach_new; - tsm_utf8_mach_free; - - tsm_utf8_mach_feed; - tsm_utf8_mach_get; - tsm_utf8_mach_reset; - - tsm_screen_new; - tsm_screen_ref; - tsm_screen_unref; - - tsm_screen_set_opts; - tsm_screen_reset_opts; - tsm_screen_get_opts; - - tsm_screen_get_width; - tsm_screen_get_height; - tsm_screen_resize; - tsm_screen_set_margins; - tsm_screen_set_max_sb; - tsm_screen_clear_sb; - - tsm_screen_sb_up; - tsm_screen_sb_down; - tsm_screen_sb_page_up; - tsm_screen_sb_page_down; - tsm_screen_sb_reset; - - tsm_screen_set_def_attr; - tsm_screen_reset; - tsm_screen_set_flags; - tsm_screen_reset_flags; - tsm_screen_get_flags; - - tsm_screen_get_cursor_x; - tsm_screen_get_cursor_y; - - tsm_screen_set_tabstop; - tsm_screen_reset_tabstop; - tsm_screen_reset_all_tabstops; - - tsm_screen_write; - tsm_screen_newline; - tsm_screen_scroll_up; - tsm_screen_scroll_down; - tsm_screen_move_to; - tsm_screen_move_up; - tsm_screen_move_down; - tsm_screen_move_left; - tsm_screen_move_right; - tsm_screen_move_line_end; - tsm_screen_move_line_home; - tsm_screen_tab_right; - tsm_screen_tab_left; - tsm_screen_insert_lines; - tsm_screen_delete_lines; - tsm_screen_insert_chars; - tsm_screen_delete_chars; - tsm_screen_erase_cursor; - tsm_screen_erase_chars; - tsm_screen_erase_cursor_to_end; - tsm_screen_erase_home_to_cursor; - tsm_screen_erase_current_line; - tsm_screen_erase_screen_to_cursor; - tsm_screen_erase_cursor_to_screen; - tsm_screen_erase_screen; - - tsm_screen_selection_reset; - tsm_screen_selection_start; - tsm_screen_selection_target; - tsm_screen_selection_copy; - - tsm_screen_draw; - - tsm_vte_unicode_lower; - - tsm_vte_new; - tsm_vte_ref; - tsm_vte_unref; - - tsm_vte_set_palette; - - tsm_vte_reset; - tsm_vte_hard_reset; - tsm_vte_input; - tsm_vte_handle_keyboard; - tsm_vte_unicode_upper; - tsm_vte_dec_supplemental_graphics; - tsm_vte_dec_special_graphics; -} LIBTSM_1; |