curses 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.devcontainer/Dockerfile +132 -0
- data/.devcontainer/devcontainer.json +58 -0
- data/.devcontainer/init-firewall.sh +139 -0
- data/.github/workflows/gh-pages.yml +4 -4
- data/.github/workflows/macos.yml +5 -2
- data/.github/workflows/push_gem.yml +7 -2
- data/.github/workflows/ubuntu.yml +5 -2
- data/.github/workflows/windows.yml +5 -2
- data/.gitmodules +3 -3
- data/README.md +2 -2
- data/curses.gemspec +1 -1
- data/ext/curses/extconf.rb +5 -2
- data/lib/curses.rb +1 -1
- data/vendor/PDCursesMod/.github/workflows/github_actions_build.yml +42 -0
- data/vendor/PDCursesMod/.gitignore +47 -0
- data/vendor/PDCursesMod/.travis.yml +308 -0
- data/vendor/PDCursesMod/CMakeLists.txt +77 -0
- data/vendor/PDCursesMod/README.md +60 -0
- data/vendor/PDCursesMod/appveyor.yml +300 -0
- data/vendor/PDCursesMod/cmake/README.md +71 -0
- data/vendor/PDCursesMod/cmake/build_dependencies.cmake +186 -0
- data/vendor/PDCursesMod/cmake/build_options.cmake +29 -0
- data/vendor/PDCursesMod/cmake/dll_version.cmake +24 -0
- data/vendor/PDCursesMod/cmake/gen_config_header.cmake +40 -0
- data/vendor/PDCursesMod/cmake/get_version.cmake +17 -0
- data/vendor/PDCursesMod/cmake/project_common.cmake +131 -0
- data/vendor/PDCursesMod/cmake/sdl2_ttf/CMakeLists.txt +95 -0
- data/vendor/PDCursesMod/cmake/version.in.cmake +61 -0
- data/vendor/PDCursesMod/cmake/watcom_open_dos16_toolchain.cmake +90 -0
- data/vendor/PDCursesMod/cmake/watcom_open_dos32_toolchain.cmake +89 -0
- data/vendor/PDCursesMod/cmake/watcom_open_os2v2_toolchain.cmake +88 -0
- data/vendor/PDCursesMod/cmake/watcom_open_win32_toolchain.cmake +12 -0
- data/vendor/PDCursesMod/common/acs_defs.h +288 -0
- data/vendor/PDCursesMod/common/approx.c +163 -0
- data/vendor/PDCursesMod/common/beep.c +70 -0
- data/vendor/PDCursesMod/common/blink.c +90 -0
- data/vendor/PDCursesMod/common/config_curses.c +134 -0
- data/vendor/PDCursesMod/common/dos_key.h +59 -0
- data/vendor/PDCursesMod/common/dosutil.c +136 -0
- data/vendor/PDCursesMod/common/font437.h +386 -0
- data/vendor/PDCursesMod/common/icon32.xpm +42 -0
- data/vendor/PDCursesMod/common/icon64.xpm +74 -0
- data/vendor/PDCursesMod/common/iconbmp.h +24 -0
- data/vendor/PDCursesMod/common/libobjs.mif +32 -0
- data/vendor/PDCursesMod/common/mouse.c +293 -0
- data/vendor/PDCursesMod/common/pdcclip.c +135 -0
- data/vendor/PDCursesMod/common/pdccolor.c +223 -0
- data/vendor/PDCursesMod/common/pdccolor.h +17 -0
- data/vendor/PDCursesMod/common/pdccolor.txt +81 -0
- data/vendor/PDCursesMod/common/pdcurses.rc +35 -0
- data/vendor/PDCursesMod/common/psf.c +250 -0
- data/vendor/PDCursesMod/common/psf.h +13 -0
- data/vendor/PDCursesMod/common/psf_wide.h +584 -0
- data/vendor/PDCursesMod/common/watcom.mif +224 -0
- data/vendor/PDCursesMod/common/winclip.c +151 -0
- data/vendor/PDCursesMod/common/xlates.h +142 -0
- data/vendor/PDCursesMod/curses.h +1972 -0
- data/vendor/PDCursesMod/curspriv.h +295 -0
- data/vendor/PDCursesMod/demos/UTF-8-demo.txt +225 -0
- data/vendor/PDCursesMod/demos/calendar.c +278 -0
- data/vendor/PDCursesMod/demos/curses.priv.h +37 -0
- data/vendor/PDCursesMod/demos/dates.txt +2576 -0
- data/vendor/PDCursesMod/demos/firework.c +149 -0
- data/vendor/PDCursesMod/demos/init_col.c +152 -0
- data/vendor/PDCursesMod/demos/mbrot.c +366 -0
- data/vendor/PDCursesMod/demos/nctests.mif +299 -0
- data/vendor/PDCursesMod/demos/ncurses_cfg.h +100 -0
- data/vendor/PDCursesMod/demos/newtest.c +608 -0
- data/vendor/PDCursesMod/demos/ozdemo.c +444 -0
- data/vendor/PDCursesMod/demos/picsview.c +516 -0
- data/vendor/PDCursesMod/demos/ptest.c +315 -0
- data/vendor/PDCursesMod/demos/rain.c +161 -0
- data/vendor/PDCursesMod/demos/snprintf.c +30 -0
- data/vendor/PDCursesMod/demos/speed.c +124 -0
- data/vendor/PDCursesMod/demos/test_pan.c +372 -0
- data/vendor/PDCursesMod/demos/testcurs.c +1978 -0
- data/vendor/PDCursesMod/demos/tui.c +816 -0
- data/vendor/PDCursesMod/demos/tui.h +65 -0
- data/vendor/PDCursesMod/demos/tuidemo.c +231 -0
- data/vendor/PDCursesMod/demos/version.c +66 -0
- data/vendor/PDCursesMod/demos/widetest.c +130 -0
- data/vendor/PDCursesMod/demos/worm.c +450 -0
- data/vendor/PDCursesMod/demos/xmas.c +955 -0
- data/vendor/PDCursesMod/docs/HISTORY.md +3850 -0
- data/vendor/PDCursesMod/docs/IMPLEMNT.md +321 -0
- data/vendor/PDCursesMod/docs/MANUAL.md +3304 -0
- data/vendor/PDCursesMod/docs/README.md +51 -0
- data/vendor/PDCursesMod/docs/USERS.md +451 -0
- data/vendor/PDCursesMod/docs/manext.awk +15 -0
- data/vendor/PDCursesMod/docs/mkman.sh +7 -0
- data/vendor/PDCursesMod/dos/CMakeLists.txt +54 -0
- data/vendor/PDCursesMod/dos/Makefile +85 -0
- data/vendor/PDCursesMod/dos/Makefile.bcc +81 -0
- data/vendor/PDCursesMod/dos/Makefile.dmc +315 -0
- data/vendor/PDCursesMod/dos/Makefile.wcc +44 -0
- data/vendor/PDCursesMod/dos/README.md +49 -0
- data/vendor/PDCursesMod/dos/pdcclip.c +1 -0
- data/vendor/PDCursesMod/dos/pdcdisp.c +164 -0
- data/vendor/PDCursesMod/dos/pdcdos.h +173 -0
- data/vendor/PDCursesMod/dos/pdcgetsc.c +81 -0
- data/vendor/PDCursesMod/dos/pdckbd.c +428 -0
- data/vendor/PDCursesMod/dos/pdcscrn.c +707 -0
- data/vendor/PDCursesMod/dos/pdcsetsc.c +120 -0
- data/vendor/PDCursesMod/dos/pdcutil.c +11 -0
- data/vendor/PDCursesMod/dosvga/CMakeLists.txt +54 -0
- data/vendor/PDCursesMod/dosvga/Makefile +109 -0
- data/vendor/PDCursesMod/dosvga/Makefile.bcc +82 -0
- data/vendor/PDCursesMod/dosvga/Makefile.dmc +318 -0
- data/vendor/PDCursesMod/dosvga/Makefile.wcc +40 -0
- data/vendor/PDCursesMod/dosvga/README.md +58 -0
- data/vendor/PDCursesMod/dosvga/cp437.h +184 -0
- data/vendor/PDCursesMod/dosvga/font.h +454 -0
- data/vendor/PDCursesMod/dosvga/hexize.c +45 -0
- data/vendor/PDCursesMod/dosvga/mk_font.c +35 -0
- data/vendor/PDCursesMod/dosvga/pdcclip.c +1 -0
- data/vendor/PDCursesMod/dosvga/pdcdisp.c +684 -0
- data/vendor/PDCursesMod/dosvga/pdcdos.h +201 -0
- data/vendor/PDCursesMod/dosvga/pdcgetsc.c +47 -0
- data/vendor/PDCursesMod/dosvga/pdckbd.c +484 -0
- data/vendor/PDCursesMod/dosvga/pdcscrn.c +1693 -0
- data/vendor/PDCursesMod/dosvga/pdcsetsc.c +79 -0
- data/vendor/PDCursesMod/dosvga/pdcutil.c +13 -0
- data/vendor/PDCursesMod/dosvga/pdcvesa.h +88 -0
- data/vendor/PDCursesMod/fb/Makefile +150 -0
- data/vendor/PDCursesMod/fb/README.md +52 -0
- data/vendor/PDCursesMod/fb/cursor.c +111 -0
- data/vendor/PDCursesMod/fb/drm.c +264 -0
- data/vendor/PDCursesMod/fb/pdcclip.c +1 -0
- data/vendor/PDCursesMod/fb/pdcdisp.c +521 -0
- data/vendor/PDCursesMod/fb/pdcfb.h +11 -0
- data/vendor/PDCursesMod/fb/pdcgetsc.c +1 -0
- data/vendor/PDCursesMod/fb/pdckbd.c +114 -0
- data/vendor/PDCursesMod/fb/pdcmouse.c +185 -0
- data/vendor/PDCursesMod/fb/pdcscrn.c +539 -0
- data/vendor/PDCursesMod/fb/pdcsetsc.c +3 -0
- data/vendor/PDCursesMod/fb/pdcutil.c +5 -0
- data/vendor/PDCursesMod/gl/CMakeLists.txt +66 -0
- data/vendor/PDCursesMod/gl/Makefile +188 -0
- data/vendor/PDCursesMod/gl/Makefile.vc +129 -0
- data/vendor/PDCursesMod/gl/README.md +134 -0
- data/vendor/PDCursesMod/gl/glfuncs.h +159 -0
- data/vendor/PDCursesMod/gl/pdcclip.c +93 -0
- data/vendor/PDCursesMod/gl/pdcdisp.c +867 -0
- data/vendor/PDCursesMod/gl/pdcgetsc.c +30 -0
- data/vendor/PDCursesMod/gl/pdcgl.h +51 -0
- data/vendor/PDCursesMod/gl/pdckbd.c +548 -0
- data/vendor/PDCursesMod/gl/pdcscrn.c +700 -0
- data/vendor/PDCursesMod/gl/pdcsetsc.c +99 -0
- data/vendor/PDCursesMod/gl/pdcutil.c +35 -0
- data/vendor/PDCursesMod/ncurses/CMakeLists.txt +76 -0
- data/vendor/PDCursesMod/ncurses/Makefile +38 -0
- data/vendor/PDCursesMod/os2/Makefile +150 -0
- data/vendor/PDCursesMod/os2/Makefile.bcc +85 -0
- data/vendor/PDCursesMod/os2/Makefile.wcc +26 -0
- data/vendor/PDCursesMod/os2/iccos2.lrf +49 -0
- data/vendor/PDCursesMod/os2/iccos2.mak +260 -0
- data/vendor/PDCursesMod/os2/pdcclip.c +172 -0
- data/vendor/PDCursesMod/os2/pdcdisp.c +130 -0
- data/vendor/PDCursesMod/os2/pdcgetsc.c +52 -0
- data/vendor/PDCursesMod/os2/pdckbd.c +435 -0
- data/vendor/PDCursesMod/os2/pdcos2.h +21 -0
- data/vendor/PDCursesMod/os2/pdcscrn.c +231 -0
- data/vendor/PDCursesMod/os2/pdcsetsc.c +110 -0
- data/vendor/PDCursesMod/os2/pdcutil.c +51 -0
- data/vendor/PDCursesMod/os2gui/.gitignore +1 -0
- data/vendor/PDCursesMod/os2gui/CMakeLists.txt +30 -0
- data/vendor/PDCursesMod/os2gui/Makefile +139 -0
- data/vendor/PDCursesMod/os2gui/Makefile.wcc +32 -0
- data/vendor/PDCursesMod/os2gui/README.md +69 -0
- data/vendor/PDCursesMod/os2gui/pdcclip.c +165 -0
- data/vendor/PDCursesMod/os2gui/pdcdisp.c +2021 -0
- data/vendor/PDCursesMod/os2gui/pdcgetsc.c +26 -0
- data/vendor/PDCursesMod/os2gui/pdckbd.c +79 -0
- data/vendor/PDCursesMod/os2gui/pdcscrn.c +2433 -0
- data/vendor/PDCursesMod/os2gui/pdcsetsc.c +115 -0
- data/vendor/PDCursesMod/os2gui/pdcutil.c +42 -0
- data/vendor/PDCursesMod/os2gui/pdcwin.h +106 -0
- data/vendor/PDCursesMod/os2gui/table.py +112 -0
- data/vendor/PDCursesMod/os2gui/unitable.h +3933 -0
- data/vendor/PDCursesMod/panel.h +41 -0
- data/vendor/PDCursesMod/pdcurses/addch.c +838 -0
- data/vendor/PDCursesMod/pdcurses/addchstr.c +232 -0
- data/vendor/PDCursesMod/pdcurses/addstr.c +245 -0
- data/vendor/PDCursesMod/pdcurses/attr.c +430 -0
- data/vendor/PDCursesMod/pdcurses/beep.c +78 -0
- data/vendor/PDCursesMod/pdcurses/bkgd.c +233 -0
- data/vendor/PDCursesMod/pdcurses/border.c +413 -0
- data/vendor/PDCursesMod/pdcurses/clear.c +161 -0
- data/vendor/PDCursesMod/pdcurses/color.c +761 -0
- data/vendor/PDCursesMod/pdcurses/debug.c +157 -0
- data/vendor/PDCursesMod/pdcurses/delch.c +96 -0
- data/vendor/PDCursesMod/pdcurses/deleteln.c +149 -0
- data/vendor/PDCursesMod/pdcurses/getch.c +871 -0
- data/vendor/PDCursesMod/pdcurses/getstr.c +487 -0
- data/vendor/PDCursesMod/pdcurses/getyx.c +152 -0
- data/vendor/PDCursesMod/pdcurses/inch.c +133 -0
- data/vendor/PDCursesMod/pdcurses/inchstr.c +217 -0
- data/vendor/PDCursesMod/pdcurses/initscr.c +524 -0
- data/vendor/PDCursesMod/pdcurses/inopts.c +490 -0
- data/vendor/PDCursesMod/pdcurses/insch.c +273 -0
- data/vendor/PDCursesMod/pdcurses/insstr.c +268 -0
- data/vendor/PDCursesMod/pdcurses/instr.c +253 -0
- data/vendor/PDCursesMod/pdcurses/kernel.c +338 -0
- data/vendor/PDCursesMod/pdcurses/keyname.c +149 -0
- data/vendor/PDCursesMod/pdcurses/mouse.c +469 -0
- data/vendor/PDCursesMod/pdcurses/move.c +84 -0
- data/vendor/PDCursesMod/pdcurses/outopts.c +283 -0
- data/vendor/PDCursesMod/pdcurses/overlay.c +204 -0
- data/vendor/PDCursesMod/pdcurses/pad.c +303 -0
- data/vendor/PDCursesMod/pdcurses/pairs.txt +94 -0
- data/vendor/PDCursesMod/pdcurses/panel.c +551 -0
- data/vendor/PDCursesMod/pdcurses/printw.c +180 -0
- data/vendor/PDCursesMod/pdcurses/refresh.c +372 -0
- data/vendor/PDCursesMod/pdcurses/scanw.c +582 -0
- data/vendor/PDCursesMod/pdcurses/scr_dump.c +311 -0
- data/vendor/PDCursesMod/pdcurses/scroll.c +115 -0
- data/vendor/PDCursesMod/pdcurses/slk.c +660 -0
- data/vendor/PDCursesMod/pdcurses/termattr.c +177 -0
- data/vendor/PDCursesMod/pdcurses/terminfo.c +243 -0
- data/vendor/PDCursesMod/pdcurses/touch.c +255 -0
- data/vendor/PDCursesMod/pdcurses/util.c +502 -0
- data/vendor/PDCursesMod/pdcurses/window.c +708 -0
- data/vendor/PDCursesMod/plan9/README.md +57 -0
- data/vendor/PDCursesMod/plan9/header.patch +11 -0
- data/vendor/PDCursesMod/plan9/mkfile +103 -0
- data/vendor/PDCursesMod/plan9/mkfile_demo +42 -0
- data/vendor/PDCursesMod/plan9/pdcclip.c +1 -0
- data/vendor/PDCursesMod/plan9/pdcdisp.c +62 -0
- data/vendor/PDCursesMod/plan9/pdcgetsc.c +28 -0
- data/vendor/PDCursesMod/plan9/pdckbd.c +53 -0
- data/vendor/PDCursesMod/plan9/pdcplan9.h +10 -0
- data/vendor/PDCursesMod/plan9/pdcscrn.c +103 -0
- data/vendor/PDCursesMod/plan9/pdcsetsc.c +51 -0
- data/vendor/PDCursesMod/plan9/pdcutil.c +370 -0
- data/vendor/PDCursesMod/psffonts/10x20.psf +0 -0
- data/vendor/PDCursesMod/psffonts/18x18.psf +0 -0
- data/vendor/PDCursesMod/psffonts/4x6.psf +0 -0
- data/vendor/PDCursesMod/psffonts/6x12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/8x13.psf +0 -0
- data/vendor/PDCursesMod/psffonts/9x15.psf +0 -0
- data/vendor/PDCursesMod/psffonts/9x18.psf +0 -0
- data/vendor/PDCursesMod/psffonts/README +38 -0
- data/vendor/PDCursesMod/psffonts/README.md +14 -0
- data/vendor/PDCursesMod/psffonts/bmp2psf2.c +130 -0
- data/vendor/PDCursesMod/psffonts/cour11x17.psf +0 -0
- data/vendor/PDCursesMod/psffonts/cour20x29.psf +0 -0
- data/vendor/PDCursesMod/psffonts/default.psf +0 -0
- data/vendor/PDCursesMod/psffonts/dosemu.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/2_hebrew-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/README +285 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/antique-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apeaus-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/apls-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabdrft-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabkufi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arabnaf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/arbnaskh-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/armenian-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/armenian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/armenian-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/art-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/ascii-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/backward-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bdeclo-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexall-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexbox-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexhi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bhexlo-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bigserif-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bigserif-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bigsf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/binaryed-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/blcksnsf-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/block-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bold-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/boxround-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/boxround-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/broadway-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bthin-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/bway2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cafe-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cafe-12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cntdown-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cntdown-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/computer-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/copyleft.txt +209 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/courier-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp111-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp112-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp113-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437alt-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp437bgr-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp850-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp851-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp852-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp853-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp860-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp861-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp862-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp862-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp862-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp863-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp864-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp864-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp864-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp865-19.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp866-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp866-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp866-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp880-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp880-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp880-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp881-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp881-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp881-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp882-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp882-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp882-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp883-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp883-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp883-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp884-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp884-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp884-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp885-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp885-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cp885-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyril2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyril_b-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill1-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrill3-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/cyrillic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/decorate-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/draw-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/drawhi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/europe-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-09.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-11.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/evga-alt-13.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/farsi-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/finnish-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/fontorig.txt +308 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/fractur-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/future-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/gaelic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/gaelic1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/georgian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/grckssrf-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-06.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-07.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/greek2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hack4th-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/handugly-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/handwrit-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/handwrit-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-7bit-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-big-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-bold-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-ktab-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-med-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heb-snsf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebboldk-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebclrgf-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebktav1-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebktav2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heblarge-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/heblarge-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebrew-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebugly-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hebyogi-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercital-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercules-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercules-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hercules-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/history.txt +45 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hollow-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hrkgreek-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/hylas-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/icons-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/inverted-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso3-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/iso4-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/italics-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/kana-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/kana-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_large-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_misc-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_ocr-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lb_ocr-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbarabic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbitalic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbitalic-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lbscript-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/lcd-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/mac-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/macntosh-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/macntosh-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/madrid-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/medieval-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/modern-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/norway-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/norway2-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/old-engl-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/old-engl-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/oldeng-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/oldeng-f-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pc_6-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pc_7-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/persian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/persian-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/police-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/polish-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/polish1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pp_roman-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/pp_sser-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readabl7-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readabl8-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readable-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/readable-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/reverse-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/rimrock-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/rmrkbold-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/rom8pix-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/roman-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/roman-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/runic-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/russian1-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/sanserif-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/sanserif-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/script-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/scrwl----16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/scrwl~~~-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/security-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/side-10.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/slant-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/smalcaps-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/smcapnum-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/spranto-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/spranto1-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/spranto2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/square-12.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/standard-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/standard-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/stretch-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/subsup-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/super-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swiss-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swiss-av-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swissav2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swissbox-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/swissbx2-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/tex-math-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/tex-math-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thai-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thin_ss-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thinasci-07.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thincaps-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thindemo-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/thinscrp-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/turkish-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/urdu-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-08.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/vga-rom-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/voynich-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/wiggly-16.psf +0 -0
- data/vendor/PDCursesMod/psffonts/fntcol16/yugosla-14.psf +0 -0
- data/vendor/PDCursesMod/psffonts/lc12x20.psf +0 -0
- data/vendor/PDCursesMod/psffonts/makefile +2 -0
- data/vendor/PDCursesMod/psffonts/mappings/8859-3.TXT +285 -0
- data/vendor/PDCursesMod/psffonts/mappings/APL-ISO-IR-68.TXT +273 -0
- data/vendor/PDCursesMod/psffonts/mappings/ATARIST.TXT +320 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1006.TXT +302 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1250.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1251.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1252.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1253.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1254.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1255.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1256.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1257.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP1258.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP424.TXT +304 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP437.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP737.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP775.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP850.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP851.TXT +276 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP852.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP855.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP856.TXT +303 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP857.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP860.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP861.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP862.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP863.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP864.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP865.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP866.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP869.TXT +275 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP874.TXT +274 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP932.TXT +7998 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP936.TXT +22065 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP949.TXT +17322 -0
- data/vendor/PDCursesMod/psffonts/mappings/CP950.TXT +13777 -0
- data/vendor/PDCursesMod/psffonts/mappings/IBMGRAPH.TXT +99 -0
- data/vendor/PDCursesMod/psffonts/mappings/KOI8-R.TXT +294 -0
- data/vendor/PDCursesMod/psffonts/mappings/KOI8-U.TXT +301 -0
- data/vendor/PDCursesMod/psffonts/mappings/KPS9566.TXT +17166 -0
- data/vendor/PDCursesMod/psffonts/mappings/KZ1048.TXT +294 -0
- data/vendor/PDCursesMod/psffonts/mappings/ReadMe.txt +20 -0
- data/vendor/PDCursesMod/psffonts/mappings/SGML.TXT +1041 -0
- data/vendor/PDCursesMod/psffonts/medieval2.psf +0 -0
- data/vendor/PDCursesMod/psffonts/vga11x19.psf +0 -0
- data/vendor/PDCursesMod/sdl1/Makefile +140 -0
- data/vendor/PDCursesMod/sdl1/README.md +200 -0
- data/vendor/PDCursesMod/sdl1/pdcclip.c +1 -0
- data/vendor/PDCursesMod/sdl1/pdcdisp.c +462 -0
- data/vendor/PDCursesMod/sdl1/pdcgetsc.c +30 -0
- data/vendor/PDCursesMod/sdl1/pdckbd.c +417 -0
- data/vendor/PDCursesMod/sdl1/pdcscrn.c +396 -0
- data/vendor/PDCursesMod/sdl1/pdcsdl.h +34 -0
- data/vendor/PDCursesMod/sdl1/pdcsetsc.c +99 -0
- data/vendor/PDCursesMod/sdl1/pdcutil.c +34 -0
- data/vendor/PDCursesMod/sdl1/sdltest.c +79 -0
- data/vendor/PDCursesMod/sdl2/CMakeLists.txt +76 -0
- data/vendor/PDCursesMod/sdl2/Makefile +207 -0
- data/vendor/PDCursesMod/sdl2/Makefile.vc +132 -0
- data/vendor/PDCursesMod/sdl2/README.md +215 -0
- data/vendor/PDCursesMod/sdl2/pdcclip.c +93 -0
- data/vendor/PDCursesMod/sdl2/pdcdisp.c +536 -0
- data/vendor/PDCursesMod/sdl2/pdcgetsc.c +30 -0
- data/vendor/PDCursesMod/sdl2/pdckbd.c +540 -0
- data/vendor/PDCursesMod/sdl2/pdcscrn.c +529 -0
- data/vendor/PDCursesMod/sdl2/pdcsdl.h +46 -0
- data/vendor/PDCursesMod/sdl2/pdcsetsc.c +99 -0
- data/vendor/PDCursesMod/sdl2/pdcutil.c +35 -0
- data/vendor/PDCursesMod/sdl2/sdltest.c +91 -0
- data/vendor/PDCursesMod/sdl2/versions.mif +2 -0
- data/vendor/PDCursesMod/term.h +48 -0
- data/vendor/PDCursesMod/tests/README.md +16 -0
- data/vendor/PDCursesMod/tests/brk_test.c +42 -0
- data/vendor/PDCursesMod/tests/del_test.c +95 -0
- data/vendor/PDCursesMod/tests/focus.c +53 -0
- data/vendor/PDCursesMod/tests/ins_del.c +108 -0
- data/vendor/PDCursesMod/tests/keytest.c +87 -0
- data/vendor/PDCursesMod/tests/naptest.c +43 -0
- data/vendor/PDCursesMod/tests/opaque.c +42 -0
- data/vendor/PDCursesMod/tests/restart.c +60 -0
- data/vendor/PDCursesMod/tests/ripoff.c +141 -0
- data/vendor/PDCursesMod/tests/show_col.c +55 -0
- data/vendor/PDCursesMod/tests/show_uni.c +163 -0
- data/vendor/PDCursesMod/tests/vt0.c +472 -0
- data/vendor/PDCursesMod/vt/CMakeLists.txt +35 -0
- data/vendor/PDCursesMod/vt/Makefile +204 -0
- data/vendor/PDCursesMod/vt/Makefile.bcc +101 -0
- data/vendor/PDCursesMod/vt/Makefile.dmc +313 -0
- data/vendor/PDCursesMod/vt/Makefile.vc +145 -0
- data/vendor/PDCursesMod/vt/Makefile.wcc +48 -0
- data/vendor/PDCursesMod/vt/README.md +82 -0
- data/vendor/PDCursesMod/vt/pdcclip.c +8 -0
- data/vendor/PDCursesMod/vt/pdcdisp.c +424 -0
- data/vendor/PDCursesMod/vt/pdckbd.c +603 -0
- data/vendor/PDCursesMod/vt/pdcscrn.c +492 -0
- data/vendor/PDCursesMod/vt/pdcsetsc.c +158 -0
- data/vendor/PDCursesMod/vt/pdcutil.c +85 -0
- data/vendor/PDCursesMod/vt/pdcvt.h +25 -0
- data/vendor/PDCursesMod/wincon/CMakeLists.txt +29 -0
- data/vendor/PDCursesMod/wincon/Makefile +190 -0
- data/vendor/PDCursesMod/wincon/Makefile.bcc +87 -0
- data/vendor/PDCursesMod/wincon/Makefile.dmc +275 -0
- data/vendor/PDCursesMod/wincon/Makefile.vc +132 -0
- data/vendor/PDCursesMod/wincon/Makefile.wcc +33 -0
- data/vendor/PDCursesMod/wincon/README.md +76 -0
- data/vendor/PDCursesMod/wincon/pdcclip.c +6 -0
- data/vendor/PDCursesMod/wincon/pdcdisp.c +408 -0
- data/vendor/PDCursesMod/wincon/pdcgetsc.c +42 -0
- data/vendor/PDCursesMod/wincon/pdckbd.c +778 -0
- data/vendor/PDCursesMod/wincon/pdcscrn.c +733 -0
- data/vendor/PDCursesMod/wincon/pdcsetsc.c +130 -0
- data/vendor/PDCursesMod/wincon/pdcutil.c +38 -0
- data/vendor/PDCursesMod/wincon/pdcwin.h +35 -0
- data/vendor/PDCursesMod/wingui/CMakeLists.txt +30 -0
- data/vendor/PDCursesMod/wingui/Makefile +186 -0
- data/vendor/PDCursesMod/wingui/Makefile.bcc +80 -0
- data/vendor/PDCursesMod/wingui/Makefile.dmc +314 -0
- data/vendor/PDCursesMod/wingui/Makefile.vc +144 -0
- data/vendor/PDCursesMod/wingui/Makefile.wcc +32 -0
- data/vendor/PDCursesMod/wingui/README.md +92 -0
- data/vendor/PDCursesMod/wingui/pdcclip.c +6 -0
- data/vendor/PDCursesMod/wingui/pdcdisp.c +576 -0
- data/vendor/PDCursesMod/wingui/pdckbd.c +89 -0
- data/vendor/PDCursesMod/wingui/pdcscrn.c +2235 -0
- data/vendor/PDCursesMod/wingui/pdcsetsc.c +124 -0
- data/vendor/PDCursesMod/wingui/pdcutil.c +44 -0
- data/vendor/PDCursesMod/wingui/pdcwin.h +85 -0
- data/vendor/PDCursesMod/x11/Makefile.in +1047 -0
- data/vendor/PDCursesMod/x11/README.md +227 -0
- data/vendor/PDCursesMod/x11/aclocal.m4 +553 -0
- data/vendor/PDCursesMod/x11/config.guess +1774 -0
- data/vendor/PDCursesMod/x11/config.h.in +37 -0
- data/vendor/PDCursesMod/x11/config.sub +1907 -0
- data/vendor/PDCursesMod/x11/configure +5944 -0
- data/vendor/PDCursesMod/x11/configure.ac +175 -0
- data/vendor/PDCursesMod/x11/pdcclip.c +254 -0
- data/vendor/PDCursesMod/x11/pdcdisp.c +418 -0
- data/vendor/PDCursesMod/x11/pdcgetsc.c +28 -0
- data/vendor/PDCursesMod/x11/pdckbd.c +743 -0
- data/vendor/PDCursesMod/x11/pdcscrn.c +848 -0
- data/vendor/PDCursesMod/x11/pdcsetsc.c +108 -0
- data/vendor/PDCursesMod/x11/pdcutil.c +41 -0
- data/vendor/PDCursesMod/x11/pdcx11.h +82 -0
- data/vendor/PDCursesMod/x11/sb.c +331 -0
- data/vendor/PDCursesMod/x11/scrlbox.c +348 -0
- data/vendor/PDCursesMod/x11/scrlbox.h +47 -0
- data/vendor/PDCursesMod/x11/xcurses-config.in +81 -0
- data/vendor/PDCursesMod/x11new/Makefile +151 -0
- data/vendor/PDCursesMod/x11new/README.md +63 -0
- data/vendor/PDCursesMod/x11new/pdcclip.c +221 -0
- data/vendor/PDCursesMod/x11new/pdcdisp.c +195 -0
- data/vendor/PDCursesMod/x11new/pdcgetsc.c +27 -0
- data/vendor/PDCursesMod/x11new/pdckbd.c +722 -0
- data/vendor/PDCursesMod/x11new/pdcscrn.c +277 -0
- data/vendor/PDCursesMod/x11new/pdcsetsc.c +90 -0
- data/vendor/PDCursesMod/x11new/pdcutil.c +38 -0
- data/vendor/PDCursesMod/x11new/pdcx11.h +16 -0
- metadata +692 -246
- data/vendor/PDCurses/.gitignore +0 -47
- data/vendor/PDCurses/.travis.yml +0 -49
- data/vendor/PDCurses/CMakeLists.txt +0 -68
- data/vendor/PDCurses/HISTORY.md +0 -2036
- data/vendor/PDCurses/IMPLEMNT.md +0 -327
- data/vendor/PDCurses/Makefile +0 -27
- data/vendor/PDCurses/README.md +0 -77
- data/vendor/PDCurses/acs_defs.h +0 -265
- data/vendor/PDCurses/appveyor.yml +0 -218
- data/vendor/PDCurses/cmake/README.md +0 -71
- data/vendor/PDCurses/cmake/build_dependencies.cmake +0 -178
- data/vendor/PDCurses/cmake/build_options.cmake +0 -25
- data/vendor/PDCurses/cmake/dll_version.cmake +0 -26
- data/vendor/PDCurses/cmake/gen_config_header.cmake +0 -43
- data/vendor/PDCurses/cmake/get_version.cmake +0 -17
- data/vendor/PDCurses/cmake/project_common.cmake +0 -121
- data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +0 -83
- data/vendor/PDCurses/cmake/version.in.cmake +0 -73
- data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +0 -96
- data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +0 -106
- data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +0 -105
- data/vendor/PDCurses/curses.h +0 -1846
- data/vendor/PDCurses/curspriv.h +0 -134
- data/vendor/PDCurses/demos/firework.c +0 -144
- data/vendor/PDCurses/demos/newtest.c +0 -581
- data/vendor/PDCurses/demos/ozdemo.c +0 -447
- data/vendor/PDCurses/demos/ptest.c +0 -283
- data/vendor/PDCurses/demos/rain.c +0 -157
- data/vendor/PDCurses/demos/testcurs.c +0 -1607
- data/vendor/PDCurses/demos/tui.c +0 -1048
- data/vendor/PDCurses/demos/tui.h +0 -65
- data/vendor/PDCurses/demos/tuidemo.c +0 -233
- data/vendor/PDCurses/demos/version.c +0 -61
- data/vendor/PDCurses/demos/worm.c +0 -432
- data/vendor/PDCurses/demos/xmas.c +0 -955
- data/vendor/PDCurses/dos/CMakeLists.txt +0 -47
- data/vendor/PDCurses/dos/Makefile +0 -105
- data/vendor/PDCurses/dos/Makefile.bcc +0 -83
- data/vendor/PDCurses/dos/Makefile.dmc +0 -257
- data/vendor/PDCurses/dos/Makefile.msc +0 -113
- data/vendor/PDCurses/dos/Makefile.wcc +0 -107
- data/vendor/PDCurses/dos/README.md +0 -51
- data/vendor/PDCurses/dos/bccdos.lrf +0 -9
- data/vendor/PDCurses/dos/mscdos.lrf +0 -50
- data/vendor/PDCurses/dos/pdcclip.c +0 -132
- data/vendor/PDCurses/dos/pdcdisp.c +0 -135
- data/vendor/PDCurses/dos/pdcdos.h +0 -194
- data/vendor/PDCurses/dos/pdcgetsc.c +0 -98
- data/vendor/PDCurses/dos/pdckbd.c +0 -513
- data/vendor/PDCurses/dos/pdcscrn.c +0 -785
- data/vendor/PDCurses/dos/pdcsetsc.c +0 -101
- data/vendor/PDCurses/dos/pdcutil.c +0 -212
- data/vendor/PDCurses/libobjs.mif +0 -26
- data/vendor/PDCurses/makedist.mif +0 -20
- data/vendor/PDCurses/man/Makefile +0 -37
- data/vendor/PDCurses/man/README.md +0 -21
- data/vendor/PDCurses/man/intro.md +0 -361
- data/vendor/PDCurses/man/manext.c +0 -119
- data/vendor/PDCurses/man/sdl.md +0 -152
- data/vendor/PDCurses/man/sdl2.md +0 -58
- data/vendor/PDCurses/man/x11.md +0 -407
- data/vendor/PDCurses/ncurses/CMakeLists.txt +0 -66
- data/vendor/PDCurses/ncurses/makefile +0 -29
- data/vendor/PDCurses/os2/Makefile +0 -132
- data/vendor/PDCurses/os2/Makefile.bcc +0 -90
- data/vendor/PDCurses/os2/Makefile.wcc +0 -43
- data/vendor/PDCurses/os2/iccos2.lrf +0 -50
- data/vendor/PDCurses/os2/iccos2.mak +0 -256
- data/vendor/PDCurses/os2/pdcclip.c +0 -188
- data/vendor/PDCurses/os2/pdcdisp.c +0 -93
- data/vendor/PDCurses/os2/pdcgetsc.c +0 -89
- data/vendor/PDCurses/os2/pdckbd.c +0 -521
- data/vendor/PDCurses/os2/pdcos2.h +0 -55
- data/vendor/PDCurses/os2/pdcscrn.c +0 -449
- data/vendor/PDCurses/os2/pdcsetsc.c +0 -112
- data/vendor/PDCurses/os2/pdcutil.c +0 -52
- data/vendor/PDCurses/panel.h +0 -56
- data/vendor/PDCurses/pdcurses/addch.c +0 -693
- data/vendor/PDCurses/pdcurses/addchstr.c +0 -245
- data/vendor/PDCurses/pdcurses/addstr.c +0 -240
- data/vendor/PDCurses/pdcurses/attr.c +0 -359
- data/vendor/PDCurses/pdcurses/beep.c +0 -68
- data/vendor/PDCurses/pdcurses/bkgd.c +0 -223
- data/vendor/PDCurses/pdcurses/border.c +0 -411
- data/vendor/PDCurses/pdcurses/clear.c +0 -159
- data/vendor/PDCurses/pdcurses/color.c +0 -298
- data/vendor/PDCurses/pdcurses/debug.c +0 -109
- data/vendor/PDCurses/pdcurses/delch.c +0 -96
- data/vendor/PDCurses/pdcurses/deleteln.c +0 -211
- data/vendor/PDCurses/pdcurses/deprec.c +0 -27
- data/vendor/PDCurses/pdcurses/getch.c +0 -417
- data/vendor/PDCurses/pdcurses/getstr.c +0 -474
- data/vendor/PDCurses/pdcurses/getyx.c +0 -139
- data/vendor/PDCurses/pdcurses/inch.c +0 -127
- data/vendor/PDCurses/pdcurses/inchstr.c +0 -214
- data/vendor/PDCurses/pdcurses/initscr.c +0 -367
- data/vendor/PDCurses/pdcurses/inopts.c +0 -324
- data/vendor/PDCurses/pdcurses/insch.c +0 -271
- data/vendor/PDCurses/pdcurses/insstr.c +0 -264
- data/vendor/PDCurses/pdcurses/instr.c +0 -246
- data/vendor/PDCurses/pdcurses/kernel.c +0 -259
- data/vendor/PDCurses/pdcurses/keyname.c +0 -157
- data/vendor/PDCurses/pdcurses/mouse.c +0 -438
- data/vendor/PDCurses/pdcurses/move.c +0 -57
- data/vendor/PDCurses/pdcurses/outopts.c +0 -159
- data/vendor/PDCurses/pdcurses/overlay.c +0 -214
- data/vendor/PDCurses/pdcurses/pad.c +0 -260
- data/vendor/PDCurses/pdcurses/panel.c +0 -633
- data/vendor/PDCurses/pdcurses/printw.c +0 -126
- data/vendor/PDCurses/pdcurses/refresh.c +0 -279
- data/vendor/PDCurses/pdcurses/scanw.c +0 -578
- data/vendor/PDCurses/pdcurses/scr_dump.c +0 -213
- data/vendor/PDCurses/pdcurses/scroll.c +0 -101
- data/vendor/PDCurses/pdcurses/slk.c +0 -591
- data/vendor/PDCurses/pdcurses/termattr.c +0 -182
- data/vendor/PDCurses/pdcurses/terminfo.c +0 -217
- data/vendor/PDCurses/pdcurses/touch.c +0 -163
- data/vendor/PDCurses/pdcurses/util.c +0 -312
- data/vendor/PDCurses/pdcurses/window.c +0 -569
- data/vendor/PDCurses/sdl1/Makefile +0 -129
- data/vendor/PDCurses/sdl1/Makefile.mng +0 -110
- data/vendor/PDCurses/sdl1/README.md +0 -31
- data/vendor/PDCurses/sdl1/deffont.h +0 -385
- data/vendor/PDCurses/sdl1/deficon.h +0 -23
- data/vendor/PDCurses/sdl1/pdcclip.c +0 -131
- data/vendor/PDCurses/sdl1/pdcdisp.c +0 -373
- data/vendor/PDCurses/sdl1/pdcgetsc.c +0 -30
- data/vendor/PDCurses/sdl1/pdckbd.c +0 -405
- data/vendor/PDCurses/sdl1/pdcscrn.c +0 -414
- data/vendor/PDCurses/sdl1/pdcsdl.h +0 -31
- data/vendor/PDCurses/sdl1/pdcsetsc.c +0 -64
- data/vendor/PDCurses/sdl1/pdcutil.c +0 -40
- data/vendor/PDCurses/sdl1/sdltest.c +0 -79
- data/vendor/PDCurses/sdl2/CMakeLists.txt +0 -76
- data/vendor/PDCurses/sdl2/Makefile +0 -135
- data/vendor/PDCurses/sdl2/Makefile.vc +0 -164
- data/vendor/PDCurses/sdl2/README.md +0 -34
- data/vendor/PDCurses/sdl2/deffont.h +0 -385
- data/vendor/PDCurses/sdl2/deficon.h +0 -23
- data/vendor/PDCurses/sdl2/pdcclip.c +0 -93
- data/vendor/PDCurses/sdl2/pdcdisp.c +0 -534
- data/vendor/PDCurses/sdl2/pdcgetsc.c +0 -30
- data/vendor/PDCurses/sdl2/pdckbd.c +0 -480
- data/vendor/PDCurses/sdl2/pdcscrn.c +0 -443
- data/vendor/PDCurses/sdl2/pdcsdl.h +0 -33
- data/vendor/PDCurses/sdl2/pdcsetsc.c +0 -67
- data/vendor/PDCurses/sdl2/pdcutil.c +0 -39
- data/vendor/PDCurses/sdl2/sdltest.c +0 -81
- data/vendor/PDCurses/term.h +0 -48
- data/vendor/PDCurses/version.mif +0 -7
- data/vendor/PDCurses/vt/CMakeLists.txt +0 -28
- data/vendor/PDCurses/vt/Makefile +0 -135
- data/vendor/PDCurses/vt/Makefile.bcc +0 -111
- data/vendor/PDCurses/vt/Makefile.dmc +0 -258
- data/vendor/PDCurses/vt/Makefile.vc +0 -144
- data/vendor/PDCurses/vt/Makefile.wcc +0 -107
- data/vendor/PDCurses/vt/README.md +0 -64
- data/vendor/PDCurses/vt/pdcclip.c +0 -20
- data/vendor/PDCurses/vt/pdcdisp.c +0 -284
- data/vendor/PDCurses/vt/pdckbd.c +0 -394
- data/vendor/PDCurses/vt/pdcscrn.c +0 -434
- data/vendor/PDCurses/vt/pdcsetsc.c +0 -45
- data/vendor/PDCurses/vt/pdcutil.c +0 -43
- data/vendor/PDCurses/vt/pdcvt.h +0 -16
- data/vendor/PDCurses/watcom.mif +0 -68
- data/vendor/PDCurses/wincon/CMakeLists.txt +0 -27
- data/vendor/PDCurses/wincon/Makefile.bcc +0 -88
- data/vendor/PDCurses/wincon/Makefile.dmc +0 -256
- data/vendor/PDCurses/wincon/Makefile.lcc +0 -273
- data/vendor/PDCurses/wincon/Makefile.mng +0 -176
- data/vendor/PDCurses/wincon/Makefile.vc +0 -144
- data/vendor/PDCurses/wincon/Makefile.wcc +0 -51
- data/vendor/PDCurses/wincon/README.md +0 -85
- data/vendor/PDCurses/wincon/pdcclip.c +0 -174
- data/vendor/PDCurses/wincon/pdcdisp.c +0 -143
- data/vendor/PDCurses/wincon/pdcgetsc.c +0 -55
- data/vendor/PDCurses/wincon/pdckbd.c +0 -786
- data/vendor/PDCurses/wincon/pdcscrn.c +0 -717
- data/vendor/PDCurses/wincon/pdcsetsc.c +0 -91
- data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
- data/vendor/PDCurses/wincon/pdcurses.rc +0 -28
- data/vendor/PDCurses/wincon/pdcutil.c +0 -41
- data/vendor/PDCurses/wincon/pdcwin.h +0 -31
- data/vendor/PDCurses/wingui/CMakeLists.txt +0 -27
- data/vendor/PDCurses/wingui/Makefile.bcc +0 -85
- data/vendor/PDCurses/wingui/Makefile.dmc +0 -259
- data/vendor/PDCurses/wingui/Makefile.lcc +0 -273
- data/vendor/PDCurses/wingui/Makefile.mng +0 -171
- data/vendor/PDCurses/wingui/Makefile.vc +0 -144
- data/vendor/PDCurses/wingui/Makefile.wcc +0 -51
- data/vendor/PDCurses/wingui/README.md +0 -93
- data/vendor/PDCurses/wingui/pdcclip.c +0 -174
- data/vendor/PDCurses/wingui/pdcdisp.c +0 -718
- data/vendor/PDCurses/wingui/pdckbd.c +0 -143
- data/vendor/PDCurses/wingui/pdcscrn.c +0 -2797
- data/vendor/PDCurses/wingui/pdcsetsc.c +0 -89
- data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
- data/vendor/PDCurses/wingui/pdcurses.rc +0 -28
- data/vendor/PDCurses/wingui/pdcutil.c +0 -61
- data/vendor/PDCurses/wingui/pdcwin.h +0 -122
- data/vendor/PDCurses/x11/Makefile.in +0 -754
- data/vendor/PDCurses/x11/PDCurses.spec +0 -82
- data/vendor/PDCurses/x11/README.md +0 -62
- data/vendor/PDCurses/x11/ScrollBox.c +0 -319
- data/vendor/PDCurses/x11/ScrollBox.h +0 -51
- data/vendor/PDCurses/x11/ScrollBoxP.h +0 -70
- data/vendor/PDCurses/x11/aclocal.m4 +0 -994
- data/vendor/PDCurses/x11/big_icon.xbm +0 -46
- data/vendor/PDCurses/x11/compose.h +0 -201
- data/vendor/PDCurses/x11/config.guess +0 -1500
- data/vendor/PDCurses/x11/config.h.in +0 -100
- data/vendor/PDCurses/x11/config.sub +0 -1616
- data/vendor/PDCurses/x11/configure +0 -6700
- data/vendor/PDCurses/x11/configure.ac +0 -295
- data/vendor/PDCurses/x11/debian/changelog +0 -6
- data/vendor/PDCurses/x11/debian/compat +0 -1
- data/vendor/PDCurses/x11/debian/control +0 -11
- data/vendor/PDCurses/x11/debian/copyright +0 -27
- data/vendor/PDCurses/x11/debian/rules +0 -98
- data/vendor/PDCurses/x11/little_icon.xbm +0 -14
- data/vendor/PDCurses/x11/ncurses_cfg.h +0 -45
- data/vendor/PDCurses/x11/pdcclip.c +0 -173
- data/vendor/PDCurses/x11/pdcdisp.c +0 -85
- data/vendor/PDCurses/x11/pdcgetsc.c +0 -28
- data/vendor/PDCurses/x11/pdckbd.c +0 -104
- data/vendor/PDCurses/x11/pdcscrn.c +0 -258
- data/vendor/PDCurses/x11/pdcsetsc.c +0 -95
- data/vendor/PDCurses/x11/pdcutil.c +0 -52
- data/vendor/PDCurses/x11/pdcx11.c +0 -316
- data/vendor/PDCurses/x11/pdcx11.h +0 -191
- data/vendor/PDCurses/x11/sb.c +0 -155
- data/vendor/PDCurses/x11/x11.c +0 -3686
- data/vendor/PDCurses/x11/xcurses-config.in +0 -81
- /data/vendor/{PDCurses → PDCursesMod}/cmake/make_uninstall.cmake +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/cmake/resource.in.cmake +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/cmake/target_arch.cmake +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/demos/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/ncurses/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/os2/CMakeLists.txt +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/os2/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/pdcurses/README.md +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/vt/pdcgetsc.c +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/wingui/pdcgetsc.c +0 -0
- /data/vendor/{PDCurses → PDCursesMod}/x11/install-sh +0 -0
|
@@ -0,0 +1,521 @@
|
|
|
1
|
+
#include <wchar.h>
|
|
2
|
+
#include <assert.h>
|
|
3
|
+
#include <errno.h>
|
|
4
|
+
#include <stdint.h>
|
|
5
|
+
#include <string.h>
|
|
6
|
+
#include <stdlib.h>
|
|
7
|
+
#include <unistd.h>
|
|
8
|
+
|
|
9
|
+
#include "curspriv.h"
|
|
10
|
+
#include "pdcfb.h"
|
|
11
|
+
#include "../common/psf.h"
|
|
12
|
+
|
|
13
|
+
#ifdef PDC_WIDE
|
|
14
|
+
#define USE_UNICODE_ACS_CHARS 1
|
|
15
|
+
#else
|
|
16
|
+
#define USE_UNICODE_ACS_CHARS 0
|
|
17
|
+
#endif
|
|
18
|
+
|
|
19
|
+
#include "../common/acs_defs.h"
|
|
20
|
+
#include "../common/pdccolor.h"
|
|
21
|
+
#include "../common/blink.c"
|
|
22
|
+
|
|
23
|
+
extern struct font_info PDC_font_info;
|
|
24
|
+
extern struct video_info PDC_fb;
|
|
25
|
+
|
|
26
|
+
static bool _is_fullwidth_glyph( const chtype c)
|
|
27
|
+
{
|
|
28
|
+
const int unicode_point = (int)( c & A_CHARTEXT) | 0x200000;
|
|
29
|
+
const int glyph_idx = find_psf_or_vgafont_glyph( &PDC_font_info, unicode_point);
|
|
30
|
+
|
|
31
|
+
return( glyph_idx >= 0 && glyph_idx < (int)PDC_font_info.n_glyphs);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
static const uint8_t *_get_raw_glyph_bytes( struct font_info *font, int unicode_point)
|
|
35
|
+
{
|
|
36
|
+
int glyph_idx = find_psf_or_vgafont_glyph( font, unicode_point);
|
|
37
|
+
const int font_char_size_in_bytes = (font->width + 7) >> 3;
|
|
38
|
+
|
|
39
|
+
if( glyph_idx < 0 || glyph_idx >= (int)font->n_glyphs)
|
|
40
|
+
glyph_idx = find_psf_or_vgafont_glyph( font, '?');
|
|
41
|
+
if( glyph_idx < 0)
|
|
42
|
+
glyph_idx = 0;
|
|
43
|
+
return( font->glyphs + glyph_idx * font_char_size_in_bytes * font->height);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
void PDC_draw_rectangle( const int xpix, const int ypix,
|
|
47
|
+
const int xsize, const int ysize, const uint32_t color)
|
|
48
|
+
{
|
|
49
|
+
const int line_len = PDC_fb.line_length * 8 / PDC_fb.bits_per_pixel;
|
|
50
|
+
int x, y;
|
|
51
|
+
const long video_offset = xpix + ypix * line_len;
|
|
52
|
+
|
|
53
|
+
if( PDC_fb.bits_per_pixel == 32)
|
|
54
|
+
{
|
|
55
|
+
uint32_t *tptr = (uint32_t *)PDC_fb.framebuf + video_offset;
|
|
56
|
+
|
|
57
|
+
for( y = ysize; y; y--, tptr += line_len - xsize)
|
|
58
|
+
for( x = xsize; x; x--)
|
|
59
|
+
*tptr++ = color;
|
|
60
|
+
}
|
|
61
|
+
if( PDC_fb.bits_per_pixel == 8)
|
|
62
|
+
{
|
|
63
|
+
uint8_t *tptr = (uint8_t *)PDC_fb.framebuf + video_offset;
|
|
64
|
+
|
|
65
|
+
for( y = ysize; y; y--, tptr += line_len - xsize)
|
|
66
|
+
for( x = xsize; x; x--)
|
|
67
|
+
*tptr++ = color;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
static void _add_combining_character_glyph( uint8_t *glyph, const int code_point)
|
|
72
|
+
{
|
|
73
|
+
const uint8_t *add_in = _get_raw_glyph_bytes( &PDC_font_info, code_point);
|
|
74
|
+
int i;
|
|
75
|
+
|
|
76
|
+
for( i = 0; i < (int)PDC_font_info.charsize; i++)
|
|
77
|
+
glyph[i] ^= add_in[i];
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
extern int PDC_orientation;
|
|
81
|
+
|
|
82
|
+
#define SIDE_LINE_ATTRIBS (A_UNDERLINE | A_TOP | A_LEFT | A_RIGHT)
|
|
83
|
+
#define LINE_ATTRIBS (SIDE_LINE_ATTRIBS | A_STRIKEOUT)
|
|
84
|
+
|
|
85
|
+
/* Usually, we can just return a pointer to the glyph data from
|
|
86
|
+
the PSF file (using _get_raw_glyph_bytes()). If the glyph has to
|
|
87
|
+
be modified for line drawings or a cursor, or it's a combined
|
|
88
|
+
character, or it's bold or italic, we build the glyph in the
|
|
89
|
+
scratch space and return 'scratch' instead. */
|
|
90
|
+
|
|
91
|
+
static int fullwidth_offset;
|
|
92
|
+
|
|
93
|
+
static const uint8_t *_get_glyph( const chtype ch, const int cursor_type,
|
|
94
|
+
uint8_t *scratch)
|
|
95
|
+
{
|
|
96
|
+
const uint8_t *rval;
|
|
97
|
+
int c = (int)( ch & A_CHARTEXT);
|
|
98
|
+
#ifdef USING_COMBINING_CHARACTER_SCHEME
|
|
99
|
+
cchar_t root, newchar;
|
|
100
|
+
|
|
101
|
+
if( c > (int)MAX_UNICODE) /* chars & fullwidth supported */
|
|
102
|
+
{
|
|
103
|
+
root = c;
|
|
104
|
+
while( (c = PDC_expand_combined_characters( c,
|
|
105
|
+
&newchar)) > (int)MAX_UNICODE)
|
|
106
|
+
;
|
|
107
|
+
}
|
|
108
|
+
else
|
|
109
|
+
root = 0;
|
|
110
|
+
#endif
|
|
111
|
+
|
|
112
|
+
if( _is_altcharset( ch))
|
|
113
|
+
c = (int)acs_map[c & 0x7f];
|
|
114
|
+
else if( c < (int)' ' || (c >= 0x80 && c <= 0x9f))
|
|
115
|
+
c = ' ';
|
|
116
|
+
rval = _get_raw_glyph_bytes( &PDC_font_info, c | fullwidth_offset);
|
|
117
|
+
#ifdef USING_COMBINING_CHARACTER_SCHEME
|
|
118
|
+
if( cursor_type || (ch & (LINE_ATTRIBS | A_BOLD | A_ITALIC)) || root)
|
|
119
|
+
#else
|
|
120
|
+
if( cursor_type || (ch & (LINE_ATTRIBS | A_BOLD | A_ITALIC)))
|
|
121
|
+
#endif
|
|
122
|
+
{
|
|
123
|
+
const int font_char_size_in_bytes = (PDC_font_info.width + 7) >> 3;
|
|
124
|
+
int i;
|
|
125
|
+
|
|
126
|
+
memcpy( scratch, rval, PDC_font_info.charsize);
|
|
127
|
+
rval = (const uint8_t *)scratch;
|
|
128
|
+
if( ch & A_BOLD)
|
|
129
|
+
for( i = PDC_font_info.charsize - 1; i >= 0; i--)
|
|
130
|
+
{
|
|
131
|
+
scratch[i] |= (scratch[i] >> 1);
|
|
132
|
+
if( (i % font_char_size_in_bytes) && (scratch[i - 1] & 1))
|
|
133
|
+
scratch[i] |= 0x80;
|
|
134
|
+
}
|
|
135
|
+
if( ch & A_ITALIC) /* shift half top of glyph by one pixel right */
|
|
136
|
+
for( i = (PDC_font_info.height / 2) * font_char_size_in_bytes; i >= 0; i--)
|
|
137
|
+
{
|
|
138
|
+
scratch[i] >>= 1;
|
|
139
|
+
if( (i % font_char_size_in_bytes) && (scratch[i - 1] & 1))
|
|
140
|
+
scratch[i] |= 0x80;
|
|
141
|
+
}
|
|
142
|
+
#ifdef USING_COMBINING_CHARACTER_SCHEME
|
|
143
|
+
if( root)
|
|
144
|
+
{
|
|
145
|
+
while( (root = PDC_expand_combined_characters( root,
|
|
146
|
+
&newchar)) > (cchar_t)MAX_UNICODE)
|
|
147
|
+
_add_combining_character_glyph( scratch, (int)newchar);
|
|
148
|
+
_add_combining_character_glyph( scratch, (int)newchar);
|
|
149
|
+
}
|
|
150
|
+
#endif
|
|
151
|
+
if( cursor_type == 1 || cursor_type >= 5)
|
|
152
|
+
{
|
|
153
|
+
const int cursors[8] = { 0, '_', FULL_BLOCK, 0, /*outlined block */
|
|
154
|
+
LEFT_HALF_BLOCK, LOWER_HALF_BLOCK, CENTERED_SQUARE, '+' };
|
|
155
|
+
|
|
156
|
+
_add_combining_character_glyph( scratch, cursors[cursor_type]);
|
|
157
|
+
}
|
|
158
|
+
if( ch & WA_STRIKEOUT)
|
|
159
|
+
{
|
|
160
|
+
if( PDC_orientation & 1) /* rotated left or right */
|
|
161
|
+
{
|
|
162
|
+
const int half_width = (int)PDC_font_info.width / 2;
|
|
163
|
+
|
|
164
|
+
for( i = 0; i < (int)PDC_font_info.height; i++)
|
|
165
|
+
scratch[i * font_char_size_in_bytes + (half_width >> 3)]
|
|
166
|
+
|= (0x80 >> (half_width & 7));
|
|
167
|
+
}
|
|
168
|
+
else /* unrotated or upside down */
|
|
169
|
+
memset( scratch + (PDC_font_info.height / 2) * font_char_size_in_bytes,
|
|
170
|
+
0xff, font_char_size_in_bytes);
|
|
171
|
+
}
|
|
172
|
+
if( ch & WA_TOP)
|
|
173
|
+
memset( scratch, 0xff, font_char_size_in_bytes);
|
|
174
|
+
if( ch & WA_UNDERLINE)
|
|
175
|
+
memset( scratch + (PDC_font_info.height - 1) * font_char_size_in_bytes,
|
|
176
|
+
0xff, font_char_size_in_bytes);
|
|
177
|
+
if( ch & WA_LEFT)
|
|
178
|
+
for( i = 0; i < (int)PDC_font_info.height; i++)
|
|
179
|
+
scratch[i * font_char_size_in_bytes] |= 0x80;
|
|
180
|
+
if( ch & WA_RIGHT)
|
|
181
|
+
{
|
|
182
|
+
scratch += font_char_size_in_bytes - 1;
|
|
183
|
+
for( i = 0; i < (int)PDC_font_info.height; i++)
|
|
184
|
+
scratch[i * font_char_size_in_bytes] |= (0x80 >> ((PDC_font_info.width - 1) & 7));
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
return( rval);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
static const uint8_t *_get_rotated_glyph( chtype ch, const int cursor_type,
|
|
191
|
+
uint8_t *scratch)
|
|
192
|
+
{
|
|
193
|
+
if( PDC_orientation && (ch & SIDE_LINE_ATTRIBS))
|
|
194
|
+
{
|
|
195
|
+
chtype new_ch = ch & ~SIDE_LINE_ATTRIBS;
|
|
196
|
+
size_t i;
|
|
197
|
+
const chtype masks[4] = { A_TOP, A_RIGHT, A_UNDERLINE, A_LEFT};
|
|
198
|
+
|
|
199
|
+
for( i = 0; i < 4; i++)
|
|
200
|
+
if( ch & masks[i])
|
|
201
|
+
new_ch |= masks[(i + PDC_orientation) & 3];
|
|
202
|
+
ch = new_ch;
|
|
203
|
+
}
|
|
204
|
+
return( _get_glyph( ch, cursor_type, scratch));
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
#ifdef HAVE_MOUSE
|
|
208
|
+
|
|
209
|
+
int PDC_mouse_x = 317, PDC_mouse_y = 131;
|
|
210
|
+
int32_t mouse_pixel = 0xff;
|
|
211
|
+
|
|
212
|
+
/* see 'cursor.c' for an explanation of this array */
|
|
213
|
+
const unsigned char cursor_data[117] = { 19, 1, 1,
|
|
214
|
+
0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x07, 0x00, 0x00,
|
|
215
|
+
0x07, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x1f, 0x00, 0x00,
|
|
216
|
+
0x1f, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x7f, 0x00, 0x00,
|
|
217
|
+
0x7f, 0x00, 0x00, 0xff, 0x00, 0x00, 0xff, 0x01, 0x00,
|
|
218
|
+
0xff, 0x01, 0x00, 0xff, 0x03, 0x00, 0xff, 0x03, 0x00,
|
|
219
|
+
0xf3, 0x00, 0x00, 0xe0, 0x01, 0x00, 0xe0, 0x01, 0x00,
|
|
220
|
+
0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
221
|
+
0x02, 0x00, 0x00, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00,
|
|
222
|
+
0x0e, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x1e, 0x00, 0x00,
|
|
223
|
+
0x3e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x7e, 0x00, 0x00,
|
|
224
|
+
0xfe, 0x00, 0x00, 0xde, 0x00, 0x00, 0xb6, 0x01, 0x00,
|
|
225
|
+
0x32, 0x00, 0x00, 0x60, 0x00, 0x00, 0xc0, 0x00, 0x00,
|
|
226
|
+
0xc0, 0x00, 0x00, 0x00, 0x00, 0x00};
|
|
227
|
+
|
|
228
|
+
static void _draw_pixel( int xpix, int ypix, const int black)
|
|
229
|
+
{
|
|
230
|
+
const int line_len = PDC_fb.line_length * 8 / PDC_fb.bits_per_pixel;
|
|
231
|
+
int tval;
|
|
232
|
+
long video_offset;
|
|
233
|
+
|
|
234
|
+
switch( PDC_orientation)
|
|
235
|
+
{
|
|
236
|
+
case 1:
|
|
237
|
+
tval = SP->lines * PDC_font_info.width - ypix - 1;
|
|
238
|
+
ypix = xpix;
|
|
239
|
+
xpix = tval;
|
|
240
|
+
break;
|
|
241
|
+
case 2:
|
|
242
|
+
xpix = COLS * PDC_font_info.width - xpix - 1;
|
|
243
|
+
ypix = SP->lines * PDC_font_info.height - ypix - 1;
|
|
244
|
+
break;
|
|
245
|
+
case 3:
|
|
246
|
+
tval = COLS * PDC_font_info.height - xpix - 1;
|
|
247
|
+
xpix = ypix;
|
|
248
|
+
ypix = tval;
|
|
249
|
+
break;
|
|
250
|
+
default: /* a.k.a. case 0... do nothing */
|
|
251
|
+
break;
|
|
252
|
+
}
|
|
253
|
+
video_offset = xpix + ypix * line_len;
|
|
254
|
+
if( PDC_fb.bits_per_pixel == 32)
|
|
255
|
+
{
|
|
256
|
+
uint32_t *tptr = (uint32_t *)PDC_fb.framebuf + video_offset;
|
|
257
|
+
|
|
258
|
+
*tptr = (black ? 0 : 0xffffff);
|
|
259
|
+
}
|
|
260
|
+
if( PDC_fb.bits_per_pixel == 8)
|
|
261
|
+
{
|
|
262
|
+
uint8_t *tptr = (uint8_t *)PDC_fb.framebuf + video_offset;
|
|
263
|
+
|
|
264
|
+
*tptr = (black ? 0x0 : 0x7);
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
static bool _mouse_cursor_shown = TRUE;
|
|
269
|
+
|
|
270
|
+
static int _orig_font_width( void)
|
|
271
|
+
{
|
|
272
|
+
return (PDC_orientation & 1) ? PDC_font_info.height : PDC_font_info.width;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
static int _orig_font_height( void)
|
|
276
|
+
{
|
|
277
|
+
return (PDC_orientation & 1) ? PDC_font_info.width : PDC_font_info.height;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
bool PDC_remove_mouse_cursor( void)
|
|
281
|
+
{
|
|
282
|
+
const int mx = PDC_mouse_x - cursor_data[1];
|
|
283
|
+
const int my = PDC_mouse_y - cursor_data[2];
|
|
284
|
+
int left = mx / _orig_font_width( );
|
|
285
|
+
int right = (mx + cursor_data[0] - 1) / _orig_font_width( );
|
|
286
|
+
int y = my / _orig_font_height( );
|
|
287
|
+
int bottom = (my + cursor_data[0] - 1) / _orig_font_height( );
|
|
288
|
+
|
|
289
|
+
if( left < 0)
|
|
290
|
+
left = 0;
|
|
291
|
+
if( right > SP->cols - 1)
|
|
292
|
+
right = SP->cols - 1;
|
|
293
|
+
if( y < 0)
|
|
294
|
+
y = 0;
|
|
295
|
+
_mouse_cursor_shown = FALSE;
|
|
296
|
+
assert( right >= left);
|
|
297
|
+
while( y <= bottom && y < SP->lines && right >= left)
|
|
298
|
+
{
|
|
299
|
+
PDC_transform_line_sliced( y, left, right - left + 1, curscr->_y[y] + left);
|
|
300
|
+
y++;
|
|
301
|
+
}
|
|
302
|
+
_mouse_cursor_shown = TRUE;
|
|
303
|
+
return( TRUE);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
bool PDC_update_mouse_cursor( int left, int right, int top, int bottom, const bool draw_it)
|
|
307
|
+
{
|
|
308
|
+
const int mouse_size = cursor_data[0], bytes_per_line = (mouse_size + 7) >> 3;
|
|
309
|
+
const int mx = PDC_mouse_x - cursor_data[1];
|
|
310
|
+
const int my = PDC_mouse_y - cursor_data[2];
|
|
311
|
+
|
|
312
|
+
mouse_pixel = rand( ) & 0xffffff;
|
|
313
|
+
if( left < mx)
|
|
314
|
+
left = mx;
|
|
315
|
+
if( right >= mx + mouse_size)
|
|
316
|
+
right = mx + mouse_size - 1;
|
|
317
|
+
if( right <= left) /* cursor is off the left or right edge */
|
|
318
|
+
return FALSE;
|
|
319
|
+
if( top < my)
|
|
320
|
+
top = my;
|
|
321
|
+
if( bottom >= my + mouse_size)
|
|
322
|
+
bottom = my + mouse_size - 1;
|
|
323
|
+
if( top >= bottom) /* cursor above or below desired rectangle */
|
|
324
|
+
return FALSE;
|
|
325
|
+
if( draw_it)
|
|
326
|
+
{
|
|
327
|
+
const unsigned char *mask1 = cursor_data + 3 + (top - my) * bytes_per_line;
|
|
328
|
+
const unsigned char *mask2 = mask1 + bytes_per_line * mouse_size;
|
|
329
|
+
int x, y, i;
|
|
330
|
+
|
|
331
|
+
for( y = top; y < bottom; y++)
|
|
332
|
+
{
|
|
333
|
+
for( x = left, i = left - mx; x < right; x++, i++)
|
|
334
|
+
if( (mask1[i >> 3] >> (i & 7)) & 1)
|
|
335
|
+
_draw_pixel( x, y, (mask2[i >> 3] >> (i & 7)) & 1);
|
|
336
|
+
mask1 += bytes_per_line;
|
|
337
|
+
mask2 += bytes_per_line;
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
return( TRUE);
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
#endif /* #ifdef HAVE_MOUSE */
|
|
344
|
+
|
|
345
|
+
/* The framebuffer appears to store red, green, and blue in the opposite
|
|
346
|
+
order from what the other platforms expect : */
|
|
347
|
+
|
|
348
|
+
#define SWAP_RED_AND_BLUE( rgb) (((rgb) & 0xff00) | ((rgb) >> 16) | (((rgb) & 0xff) << 16))
|
|
349
|
+
|
|
350
|
+
void PDC_transform_line(int lineno, int x, int len, const chtype *srcp)
|
|
351
|
+
{
|
|
352
|
+
const int font_char_size_in_bytes = (PDC_font_info.width + 7) >> 3;
|
|
353
|
+
const int line_len = PDC_fb.line_length * 8 / PDC_fb.bits_per_pixel;
|
|
354
|
+
uint8_t scratch[300];
|
|
355
|
+
bool is_fullwidth = FALSE;
|
|
356
|
+
chtype cursor_ch;
|
|
357
|
+
#ifdef HAVE_MOUSE
|
|
358
|
+
const int t_width = _orig_font_width( );
|
|
359
|
+
const int left = x * t_width, right = (x + len) * t_width;
|
|
360
|
+
#endif
|
|
361
|
+
|
|
362
|
+
assert( srcp);
|
|
363
|
+
assert( x >= 0);
|
|
364
|
+
assert( len <= SP->cols - x);
|
|
365
|
+
assert( lineno >= 0);
|
|
366
|
+
assert( lineno < SP->lines);
|
|
367
|
+
assert( len > 0);
|
|
368
|
+
fullwidth_offset = 0;
|
|
369
|
+
if( SP->drawing_cursor >= 2 && SP->drawing_cursor <= 4)
|
|
370
|
+
{ /* blink full cell, outlined box, or caret */
|
|
371
|
+
const chtype flags[3] = { A_REVERSE, SIDE_LINE_ATTRIBS, A_LEFT };
|
|
372
|
+
|
|
373
|
+
cursor_ch = *srcp ^ flags[SP->drawing_cursor - 2];
|
|
374
|
+
srcp = &cursor_ch;
|
|
375
|
+
}
|
|
376
|
+
if( x + len < SP->cols) /* check for fullwidth character at end */
|
|
377
|
+
if( _is_fullwidth_glyph( srcp[len - 1]))
|
|
378
|
+
{
|
|
379
|
+
if( len > 1)
|
|
380
|
+
PDC_transform_line( lineno, x, len - 1, srcp);
|
|
381
|
+
x += len - 1;
|
|
382
|
+
srcp += len - 1;
|
|
383
|
+
len = 2;
|
|
384
|
+
is_fullwidth = TRUE;
|
|
385
|
+
}
|
|
386
|
+
while( len)
|
|
387
|
+
{
|
|
388
|
+
int run_len = 0, x1, y1;
|
|
389
|
+
PACKED_RGB fg, bg;
|
|
390
|
+
long video_offset, next_glyph;
|
|
391
|
+
|
|
392
|
+
assert( PDC_orientation >= 0 && PDC_orientation < 4);
|
|
393
|
+
switch( PDC_orientation)
|
|
394
|
+
{
|
|
395
|
+
case 0: /* 'normal' */
|
|
396
|
+
x1 = x;
|
|
397
|
+
y1 = lineno;
|
|
398
|
+
next_glyph = PDC_font_info.width;
|
|
399
|
+
break;
|
|
400
|
+
case 1: /* rotated 90 degrees clockwise */
|
|
401
|
+
x1 = SP->lines - lineno - 1;
|
|
402
|
+
y1 = x;
|
|
403
|
+
next_glyph = PDC_font_info.height * line_len;
|
|
404
|
+
break;
|
|
405
|
+
case 2: /* 180-degree rotation */
|
|
406
|
+
x1 = (SP->cols - x) - 1;
|
|
407
|
+
y1 = (SP->lines - lineno) - 1;
|
|
408
|
+
next_glyph = -(long)PDC_font_info.width;
|
|
409
|
+
break;
|
|
410
|
+
case 3: /* rotated 90 degrees CCW */
|
|
411
|
+
x1 = lineno;
|
|
412
|
+
y1 = SP->cols - x - 1;
|
|
413
|
+
next_glyph = -(long)PDC_font_info.height * line_len;
|
|
414
|
+
break;
|
|
415
|
+
}
|
|
416
|
+
video_offset = x1 * PDC_font_info.width
|
|
417
|
+
+ y1 * PDC_font_info.height * line_len;
|
|
418
|
+
|
|
419
|
+
PDC_get_rgb_values( *srcp & ~A_REVERSE, &fg, &bg);
|
|
420
|
+
if( fg == (PACKED_RGB)-1) /* default foreground */
|
|
421
|
+
fg = 0xffffff;
|
|
422
|
+
fg = SWAP_RED_AND_BLUE( fg);
|
|
423
|
+
if( bg == (PACKED_RGB)-1) /* default background */
|
|
424
|
+
bg = 0;
|
|
425
|
+
bg = SWAP_RED_AND_BLUE( bg);
|
|
426
|
+
if( *srcp & A_REVERSE)
|
|
427
|
+
{
|
|
428
|
+
PACKED_RGB temp_rgb = fg;
|
|
429
|
+
|
|
430
|
+
fg = bg;
|
|
431
|
+
bg = temp_rgb;
|
|
432
|
+
}
|
|
433
|
+
while( run_len < len && !((*srcp ^ srcp[run_len]) & A_ATTRIBUTES))
|
|
434
|
+
run_len++;
|
|
435
|
+
if( PDC_fb.bits_per_pixel == 32)
|
|
436
|
+
{
|
|
437
|
+
uint32_t *tptr = (uint32_t *)PDC_fb.framebuf + video_offset;
|
|
438
|
+
|
|
439
|
+
len -= run_len;
|
|
440
|
+
x += run_len;
|
|
441
|
+
while( run_len--)
|
|
442
|
+
{
|
|
443
|
+
const uint8_t *fontptr = _get_rotated_glyph( *srcp, SP->drawing_cursor, scratch);
|
|
444
|
+
uint32_t *fb_ptr = tptr;
|
|
445
|
+
int i, j;
|
|
446
|
+
|
|
447
|
+
for( i = 0; i < (int)PDC_font_info.height; i++)
|
|
448
|
+
{
|
|
449
|
+
for( j = 0; j < (int)PDC_font_info.width; j++)
|
|
450
|
+
*fb_ptr++ = ((fontptr[j >> 3] << (j & 7)) & 0x80) ? fg : bg;
|
|
451
|
+
fb_ptr += line_len - PDC_font_info.width;
|
|
452
|
+
fontptr += font_char_size_in_bytes;
|
|
453
|
+
}
|
|
454
|
+
if( !is_fullwidth)
|
|
455
|
+
srcp++;
|
|
456
|
+
else
|
|
457
|
+
fullwidth_offset = 0x200000;
|
|
458
|
+
tptr += next_glyph;
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
if( PDC_fb.bits_per_pixel == 8)
|
|
462
|
+
{
|
|
463
|
+
int i, integer_fg_idx, integer_bg_idx;
|
|
464
|
+
uint8_t fg_idx, bg_idx;
|
|
465
|
+
uint8_t *tptr = (uint8_t *)PDC_fb.framebuf + video_offset;
|
|
466
|
+
bool reverse_colors = ((*srcp & A_REVERSE) ? TRUE : FALSE);
|
|
467
|
+
|
|
468
|
+
extended_pair_content( (*srcp & A_COLOR) >> PDC_COLOR_SHIFT,
|
|
469
|
+
&integer_fg_idx, &integer_bg_idx);
|
|
470
|
+
if( *srcp & A_BLINK)
|
|
471
|
+
{
|
|
472
|
+
#ifdef TO_FIGURE_OUT
|
|
473
|
+
if( !(SP->termattrs & A_BLINK)) /* convert 'blinking' to 'bold' */
|
|
474
|
+
intensify_backgnd = TRUE;
|
|
475
|
+
#endif
|
|
476
|
+
if( SP->blink_state)
|
|
477
|
+
reverse_colors ^= 1;
|
|
478
|
+
}
|
|
479
|
+
if( reverse_colors)
|
|
480
|
+
{
|
|
481
|
+
const int swapval = integer_fg_idx;
|
|
482
|
+
integer_fg_idx = integer_bg_idx;
|
|
483
|
+
integer_bg_idx = swapval;
|
|
484
|
+
}
|
|
485
|
+
if( integer_bg_idx == -1)
|
|
486
|
+
integer_bg_idx = 0;
|
|
487
|
+
fg_idx = (uint8_t)integer_fg_idx;
|
|
488
|
+
bg_idx = (uint8_t)integer_bg_idx;
|
|
489
|
+
for( i = 0; i < run_len; i++)
|
|
490
|
+
{
|
|
491
|
+
const uint8_t *fontptr = _get_rotated_glyph( *srcp, SP->drawing_cursor, scratch);
|
|
492
|
+
uint8_t *fb_ptr = tptr;
|
|
493
|
+
int k, j;
|
|
494
|
+
|
|
495
|
+
for( k = 0; k < (int)PDC_font_info.height; k++)
|
|
496
|
+
{
|
|
497
|
+
for( j = 0; j < (int)PDC_font_info.width; j++)
|
|
498
|
+
*fb_ptr++ = ((fontptr[j >> 3] << (j & 7)) & 0x80) ? fg_idx : bg_idx;
|
|
499
|
+
fb_ptr += PDC_fb.line_length - PDC_font_info.width;
|
|
500
|
+
fontptr += font_char_size_in_bytes;
|
|
501
|
+
}
|
|
502
|
+
if( !is_fullwidth)
|
|
503
|
+
srcp++;
|
|
504
|
+
else
|
|
505
|
+
fullwidth_offset = 0x200000;
|
|
506
|
+
len--;
|
|
507
|
+
tptr += next_glyph;
|
|
508
|
+
x++;
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
#ifdef HAVE_MOUSE
|
|
513
|
+
if( _mouse_cursor_shown)
|
|
514
|
+
PDC_update_mouse_cursor( left, right, lineno * _orig_font_height( ),
|
|
515
|
+
(lineno + 1) * _orig_font_height( ), TRUE);
|
|
516
|
+
#endif
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
void PDC_doupdate(void)
|
|
520
|
+
{
|
|
521
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#include "../vt/pdcgetsc.c"
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
#define LINUX_FRAMEBUFFER_PORT
|
|
2
|
+
|
|
3
|
+
void PDC_check_for_blinking( void);
|
|
4
|
+
int PDC_cycle_font( void);
|
|
5
|
+
void PDC_rotate_font( void);
|
|
6
|
+
|
|
7
|
+
#ifdef HAVE_MOUSE
|
|
8
|
+
static void _check_mouse( void);
|
|
9
|
+
static int _key_modifiers;
|
|
10
|
+
#endif
|
|
11
|
+
|
|
12
|
+
#ifdef USE_DRM
|
|
13
|
+
int PDC_cycle_display( void);
|
|
14
|
+
#endif
|
|
15
|
+
|
|
16
|
+
#include "../vt/pdckbd.c"
|
|
17
|
+
|
|
18
|
+
#ifdef HAVE_MOUSE
|
|
19
|
+
#include <assert.h>
|
|
20
|
+
#include <stdbool.h>
|
|
21
|
+
#include <stdint.h>
|
|
22
|
+
#include "../common/psf.h"
|
|
23
|
+
#include "pdcfb.h"
|
|
24
|
+
|
|
25
|
+
static int _key_to_mouse_modifiers( const int key_modifs)
|
|
26
|
+
{
|
|
27
|
+
#ifdef NOT_CURRENTLY_NEEDED
|
|
28
|
+
int mouse_modifs = 0;
|
|
29
|
+
|
|
30
|
+
if( key_modifs & PDC_KEY_MODIFIER_SHIFT) /* At least at present, */
|
|
31
|
+
mouse_modifs = PDC_BUTTON_SHIFT; /* we can use the simpler */
|
|
32
|
+
if( key_modifs & PDC_KEY_MODIFIER_ALT) /* bit-twiddling method */
|
|
33
|
+
mouse_modifs |= PDC_BUTTON_ALT; /* shown below. If */
|
|
34
|
+
if( key_modifs & PDC_KEY_MODIFIER_CONTROL) /* things change, they */
|
|
35
|
+
mouse_modifs |= PDC_BUTTON_CONTROL; /* will be different */
|
|
36
|
+
return mouse_modifs;
|
|
37
|
+
#endif
|
|
38
|
+
return( (key_modifs & 7) << 3);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
#define PDC_MOUSE_WHEEL_EVENTS (PDC_MOUSE_WHEEL_UP | PDC_MOUSE_WHEEL_DOWN \
|
|
42
|
+
| PDC_MOUSE_WHEEL_RIGHT | PDC_MOUSE_WHEEL_LEFT)
|
|
43
|
+
|
|
44
|
+
int PDC_update_mouse( int *button);
|
|
45
|
+
bool PDC_update_mouse_cursor( int left, int right, int top, int bottom, const bool draw_it);
|
|
46
|
+
bool PDC_remove_mouse_cursor( void);
|
|
47
|
+
int PDC_get_modifiers( void);
|
|
48
|
+
|
|
49
|
+
static void _check_mouse( void)
|
|
50
|
+
{
|
|
51
|
+
const int mx = PDC_mouse_x, my = PDC_mouse_y;
|
|
52
|
+
extern struct font_info PDC_font_info;
|
|
53
|
+
extern int PDC_orientation;
|
|
54
|
+
int button, event;
|
|
55
|
+
const int xper = ((PDC_orientation & 1) ? PDC_font_info.height : PDC_font_info.width);
|
|
56
|
+
const int yper = ((PDC_orientation & 1) ? PDC_font_info.width : PDC_font_info.height);
|
|
57
|
+
const int xmax = SP->cols * xper;
|
|
58
|
+
const int ymax = SP->lines * yper;
|
|
59
|
+
long prev_t = 0;
|
|
60
|
+
|
|
61
|
+
_key_modifiers = PDC_get_modifiers( );
|
|
62
|
+
if( _get_mouse_event( NULL)) /* already got events queued up */
|
|
63
|
+
return;
|
|
64
|
+
while( (event = PDC_update_mouse( &button)) >= 0 ||
|
|
65
|
+
(prev_t && PDC_millisecs() - prev_t < SP->mouse_wait))
|
|
66
|
+
{
|
|
67
|
+
int x, y;
|
|
68
|
+
|
|
69
|
+
if( PDC_mouse_x < 0)
|
|
70
|
+
PDC_mouse_x = 0;
|
|
71
|
+
if( PDC_mouse_x > xmax - 1)
|
|
72
|
+
PDC_mouse_x = xmax - 1;
|
|
73
|
+
if( PDC_mouse_y < 0)
|
|
74
|
+
PDC_mouse_y = 0;
|
|
75
|
+
if( PDC_mouse_y > ymax - 1)
|
|
76
|
+
PDC_mouse_y = ymax - 1;
|
|
77
|
+
x = PDC_mouse_x / xper;
|
|
78
|
+
y = PDC_mouse_y / yper;
|
|
79
|
+
if( event >= 0)
|
|
80
|
+
{
|
|
81
|
+
const int modifs = _key_to_mouse_modifiers( _key_modifiers);
|
|
82
|
+
|
|
83
|
+
if( x != mx / xper || y != my / yper)
|
|
84
|
+
_add_raw_mouse_event( 0, event, modifs, x, y);
|
|
85
|
+
else if( event & PDC_MOUSE_WHEEL_EVENTS)
|
|
86
|
+
{
|
|
87
|
+
_add_raw_mouse_event( 0, event, modifs, x, y);
|
|
88
|
+
break;
|
|
89
|
+
}
|
|
90
|
+
else if( event == BUTTON_PRESSED || event == BUTTON_RELEASED)
|
|
91
|
+
{
|
|
92
|
+
if( _add_raw_mouse_event( button - 1, event, modifs, x, y)
|
|
93
|
+
&& SP->mouse_wait)
|
|
94
|
+
prev_t = PDC_millisecs( );
|
|
95
|
+
else
|
|
96
|
+
break;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
else if( prev_t)
|
|
100
|
+
napms( 10);
|
|
101
|
+
}
|
|
102
|
+
if( mx != PDC_mouse_x || my != PDC_mouse_y)
|
|
103
|
+
{
|
|
104
|
+
const int tx = PDC_mouse_x, ty = PDC_mouse_y;
|
|
105
|
+
|
|
106
|
+
PDC_mouse_x = mx;
|
|
107
|
+
PDC_mouse_y = my;
|
|
108
|
+
PDC_remove_mouse_cursor( );
|
|
109
|
+
PDC_mouse_x = tx;
|
|
110
|
+
PDC_mouse_y = ty;
|
|
111
|
+
PDC_update_mouse_cursor( 0, xmax, 0, ymax, 1);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
#endif /* #ifdef HAVE_MOUSE */
|