diff options
author | James LewisMoss <dres@debian.org> | 2000-03-12 09:04:17 -0500 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:26 -0800 |
commit | 8cfce36c6a4fc2e0a0ab6ef2db66a23cbe462693 (patch) | |
tree | 17427e4f777ca85990a449fe939fbae29770b346 /x.h | |
parent | a47af30d2f0e96afcd1f14b1984575c359faa3d6 (diff) | |
parent | 3278b75942bdbe706f7a0fba87729bb1e935b68b (diff) | |
download | scm-8cfce36c6a4fc2e0a0ab6ef2db66a23cbe462693.tar.gz scm-8cfce36c6a4fc2e0a0ab6ef2db66a23cbe462693.zip |
Import Debian changes 5d2-3debian/5d2-3
scm (5d2-3) unstable frozen; urgency=low
* Fix libncurses4-dev -> libncurses5-dev build depend (Closes: #58435)
* Fix libreadline2-dev -> libreadline4-dev build depend.
* Fix license location in copyright file (lintian warning)
* Add tetex-bin as a build depend (needs makeinfo) (Closes: #53197)
* Add -isp option to dpkg-gencontrol (lintian error)
* Move scm to section interpreters.
scm (5d2-2) unstable; urgency=low
* Apply patch from upstream for bug in eval.c. (Picked up from
comp.lang.scheme)
* Add Build-Depends on slib, librx1g-dev, libncurses4-dev, libreadlineg2-dev.
* Up standards version.
* Correct description: this is an R5RS implementation now
* Make sure no optimizations are done on m68k. (Closes: #52434)
scm (5d2-1) unstable; urgency=low
* New upstream.
scm (5d1-2) unstable; urgency=low
* Remove TAGS on clean (cut the diff back down to reasonable size).
scm (5d1-1) unstable; urgency=low
* New upstream.
* move stuff to /usr/share.
scm (5d0-3) unstable; urgency=low
* Change scmlit call to ./scmlit call (missed one) (Fixes bugs #37455
and #35545)
* Change man file permissions to 644 (fixes lintian warning)
scm (5d0-2) unstable; urgency=low
* Removed call to add_final in init_crs. lendwin doesn't do anything
and scm was crashing when quit everytime in final_scm.
* Changed copyright to reflect new source.
scm (5d0-1) unstable; urgency=low
* New upstream.
* Changed (terms) to access "/usr/doc/copyright/GPL".
* Changed regex to use -lrx
scm (5c3-6) unstable; urgency=low
* New maintainer.
Diffstat (limited to 'x.h')
-rw-r--r-- | x.h | 86 |
1 files changed, 86 insertions, 0 deletions
@@ -0,0 +1,86 @@ +/* x.c */ +SCM make_xwindow(SCM display, int screen_number, Drawable win, int pxmp, int rootp); +SCM make_xcolormap(SCM sdpy, Colormap cmp); +SCM make_xdisplay(Display *d); +SCM make_xgcontext(SCM d, int screen_number, GC gc, int rootp); +SCM make_xcursor(SCM display, Cursor cursor); +SCM make_xfont(SCM display, Font font, SCM name); +SCM make_xvisual(Visual *vsl); +SCM make_xevent(XEvent *e); +size_t x_free_xevent(CELLPTR ptr); +void scm2XPoint(int signp, SCM dat, XPoint *ipr, char *pos, char *s_caller); +int scm2XColor(SCM s_dat, XColor *xclr); +int scm2xpointslen(SCM sara, char *s_caller); +void scm2display_screen(SCM dat, SCM optidx, struct display_screen *dspscn, char *s_caller); +SCM thevalue(SCM obj); +Pixmap thepxmap(SCM obj, char *s_caller); +Font thefont(SCM obj, char *s_caller); +Colormap thecmap(SCM obj, char *s_caller); +Cursor thecsr(SCM obj, char *s_caller); +int thebool(SCM obj, char *s_caller); +int theint(SCM obj, char *s_caller); +int theuint(SCM obj, char *s_caller); +SCM x_open_display(SCM dpy_name); +SCM x_display_debug(SCM sd, SCM si); +SCM x_default_screen(SCM sdpy); +SCM x_create_window(SCM swin, SCM spos, SCM sargs); +SCM x_create_pixmap(SCM obj, SCM s_size, SCM s_depth); +SCM x_window_set(SCM args); +SCM x_window_geometry(SCM swin); +SCM x_close(SCM obj); +SCM x_flush(SCM sd, SCM si); +SCM x_create_colormap(SCM swin, SCM s_vis, SCM s_alloc); +SCM x_recreate_colormap(SCM s_cm); +SCM x_install_colormap(SCM s_cm, SCM s_flg); +SCM x_alloc_color_cells(SCM scmap, SCM spxls, SCM sargs); +SCM x_free_color_cells(SCM scmap, SCM spxls, SCM sargs); +SCM x_find_color(SCM scmap, SCM dat); +SCM x_color_set(SCM scmap, SCM s_pix, SCM dat); +SCM x_color_ref(SCM scmap, SCM sidx); +SCM x_map_window(SCM swin); +SCM x_map_raised(SCM swin); +SCM x_map_subwindows(SCM swin); +SCM x_unmap_window(SCM swin); +SCM x_unmap_subwindows(SCM swin); +SCM x_create_gc(SCM args); +SCM x_gc_set(SCM args); +SCM x_copy_gc(SCM dst, SCM src, SCM args); +SCM x_gc_ref(SCM oargs); +SCM x_create_cursor(SCM sdpy, SCM scsr, SCM sargs); +SCM x_load_font(SCM sdpy, SCM fntnam); +SCM x_protocol_version(SCM sd, SCM si); +SCM x_server_vendor(SCM sd, SCM si); +SCM x_vendor_release(SCM sd, SCM si); +int x_scm_error_handler(Display *display, XErrorEvent *xee); +SCM x_q_length(SCM sd, SCM si); +SCM x_pending(SCM sd, SCM si); +SCM x_events_queued(SCM sd, SCM si); +SCM x_next_event(SCM sd, SCM si); +SCM x_peek_event(SCM sd, SCM si); +SCM x_screen_count(SCM sd, SCM si); +SCM x_screen_cells(SCM sd, SCM si); +SCM x_screen_depth(SCM sd, SCM si); +SCM x_screen_depths(SCM sd, SCM si); +SCM x_screen_size(SCM sd, SCM si); +SCM x_screen_dimm(SCM sd, SCM si); +SCM x_screen_black(SCM sd, SCM si); +SCM x_screen_white(SCM sd, SCM si); +SCM x_make_visual(SCM sd, SCM sdepth, SCM sclass); +SCM x_root_window(SCM sdpy, SCM sscr); +SCM x_default_colormap(SCM sdpy, SCM sscr); +SCM x_default_gcontext(SCM sdpy, SCM sscr); +SCM x_default_visual(SCM sdpy, SCM sscr); +SCM x_clear_area(SCM swin, SCM spos, SCM sargs); +SCM x_fill_rectangle(SCM swin, SCM sgc, SCM sargs); +void xldraw_string(SCM sdbl, SCM sgc, SCM sargs, int (*proc)(), char *s_caller); +SCM x_draw_string(SCM sdbl, SCM sgc, SCM sargs); +SCM x_image_string(SCM sdbl, SCM sgc, SCM sargs); +SCM x_draw_points(SCM sdbl, SCM sgc, SCM sargs); +SCM xldraw_lines(SCM sdbl, SCM sgc, SCM sargs, int funcod, char *s_caller); +SCM x_draw_segments(SCM sdbl, SCM sgc, SCM sargs); +SCM x_draw_lines(SCM sdbl, SCM sgc, SCM sargs); +SCM x_fill_poly(SCM sdbl, SCM sgc, SCM sargs); +SCM x_make_bool(int f); +SCM x_event_ref(SCM sevent, SCM sfield); +void x_scm_final(void); +void init_x(void); |