├── .gitignore ├── COPYING_POLICY ├── Makefile ├── README ├── doc ├── MAC_srgp.ps ├── MAC_srgp.txt ├── Makefile ├── X_srgp.ps ├── X_srgp.txt ├── geom.3 ├── important_gcc_information ├── notes_on_versions ├── srgp.3 ├── srgp.tex └── tex_macros ├── examples ├── README ├── X_demo_anim.c ├── show_patterns.c ├── test_keyboard.c ├── test_locator.c ├── testcolor_and_resize.c ├── testeditkeyboard.c ├── testmodifiers.c ├── testpaint.c ├── testpixmap.c ├── testrubber.c └── testtimestamp.c ├── rewrite ├── Makefile ├── README.md └── src │ ├── main.c │ ├── srgp.c │ └── srgp.h └── src ├── ChooseWhichQuickDraw.h ├── HEADERS.h ├── Makefile ├── default_patterns.h ├── geom.c ├── geom.h ├── macros.h ├── srgp.h ├── srgp_attrib.c ├── srgp_canvas.c ├── srgp_color_X.c ├── srgp_cursor.c ├── srgp_echo_X.c ├── srgp_error.c ├── srgp_errtypes.h ├── srgp_font.c ├── srgp_input.c ├── srgp_input_X.c ├── srgp_inquire.c ├── srgp_marker.c ├── srgp_output.c ├── srgp_pattern.c ├── srgp_raster.c ├── srgp_sphigs.h ├── srgp_state.c ├── srgp_state_X.c ├── srgplocal.h └── srgppublic.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING_POLICY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/COPYING_POLICY -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/README -------------------------------------------------------------------------------- /doc/MAC_srgp.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/MAC_srgp.ps -------------------------------------------------------------------------------- /doc/MAC_srgp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/MAC_srgp.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/X_srgp.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/X_srgp.ps -------------------------------------------------------------------------------- /doc/X_srgp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/X_srgp.txt -------------------------------------------------------------------------------- /doc/geom.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/geom.3 -------------------------------------------------------------------------------- /doc/important_gcc_information: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/important_gcc_information -------------------------------------------------------------------------------- /doc/notes_on_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/notes_on_versions -------------------------------------------------------------------------------- /doc/srgp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/srgp.3 -------------------------------------------------------------------------------- /doc/srgp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/srgp.tex -------------------------------------------------------------------------------- /doc/tex_macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/doc/tex_macros -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/README -------------------------------------------------------------------------------- /examples/X_demo_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/X_demo_anim.c -------------------------------------------------------------------------------- /examples/show_patterns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/show_patterns.c -------------------------------------------------------------------------------- /examples/test_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/test_keyboard.c -------------------------------------------------------------------------------- /examples/test_locator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/test_locator.c -------------------------------------------------------------------------------- /examples/testcolor_and_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/testcolor_and_resize.c -------------------------------------------------------------------------------- /examples/testeditkeyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/testeditkeyboard.c -------------------------------------------------------------------------------- /examples/testmodifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/testmodifiers.c -------------------------------------------------------------------------------- /examples/testpaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/testpaint.c -------------------------------------------------------------------------------- /examples/testpixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/testpixmap.c -------------------------------------------------------------------------------- /examples/testrubber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/testrubber.c -------------------------------------------------------------------------------- /examples/testtimestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/examples/testtimestamp.c -------------------------------------------------------------------------------- /rewrite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/rewrite/Makefile -------------------------------------------------------------------------------- /rewrite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/rewrite/README.md -------------------------------------------------------------------------------- /rewrite/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/rewrite/src/main.c -------------------------------------------------------------------------------- /rewrite/src/srgp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/rewrite/src/srgp.c -------------------------------------------------------------------------------- /rewrite/src/srgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/rewrite/src/srgp.h -------------------------------------------------------------------------------- /src/ChooseWhichQuickDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/ChooseWhichQuickDraw.h -------------------------------------------------------------------------------- /src/HEADERS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/HEADERS.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/default_patterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/default_patterns.h -------------------------------------------------------------------------------- /src/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/geom.c -------------------------------------------------------------------------------- /src/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/geom.h -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/srgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp.h -------------------------------------------------------------------------------- /src/srgp_attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_attrib.c -------------------------------------------------------------------------------- /src/srgp_canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_canvas.c -------------------------------------------------------------------------------- /src/srgp_color_X.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_color_X.c -------------------------------------------------------------------------------- /src/srgp_cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_cursor.c -------------------------------------------------------------------------------- /src/srgp_echo_X.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_echo_X.c -------------------------------------------------------------------------------- /src/srgp_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_error.c -------------------------------------------------------------------------------- /src/srgp_errtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_errtypes.h -------------------------------------------------------------------------------- /src/srgp_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_font.c -------------------------------------------------------------------------------- /src/srgp_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_input.c -------------------------------------------------------------------------------- /src/srgp_input_X.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_input_X.c -------------------------------------------------------------------------------- /src/srgp_inquire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_inquire.c -------------------------------------------------------------------------------- /src/srgp_marker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_marker.c -------------------------------------------------------------------------------- /src/srgp_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_output.c -------------------------------------------------------------------------------- /src/srgp_pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_pattern.c -------------------------------------------------------------------------------- /src/srgp_raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_raster.c -------------------------------------------------------------------------------- /src/srgp_sphigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_sphigs.h -------------------------------------------------------------------------------- /src/srgp_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_state.c -------------------------------------------------------------------------------- /src/srgp_state_X.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgp_state_X.c -------------------------------------------------------------------------------- /src/srgplocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgplocal.h -------------------------------------------------------------------------------- /src/srgppublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theandrew168/srgp/HEAD/src/srgppublic.h --------------------------------------------------------------------------------