PageRenderTime 64ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 1ms

/gcl-2.6.8/xgcl-2/gcl_dwimportsb.lsp

#
Lisp | 76 lines | 45 code | 9 blank | 22 comment | 0 complexity | b3a15bba3aabe064802e61f95b1cc4b5 MD5 | raw file
Possible License(s): LGPL-2.0, GPL-3.0, LGPL-3.0, AGPL-1.0
  1. ; dwimportsb.lsp Gordon S. Novak Jr. 11 Sep 06
  2. ; Copyright (c) 2006 Gordon S. Novak Jr. and The University of Texas at Austin.
  3. ; This file imports symbols of the XGCL package; these symbols may be
  4. ; needed by a hard-core user of the Xlib functions.
  5. ; See the file gnu.license .
  6. ; This program is free software; you can redistribute it and/or modify
  7. ; it under the terms of the GNU General Public License as published by
  8. ; the Free Software Foundation; either version 1, or (at your option)
  9. ; any later version.
  10. ; This program is distributed in the hope that it will be useful,
  11. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ; GNU General Public License for more details.
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ; This file imports symbols from the dwindow.lsp file (in XLIB: package)
  18. ; to the current package (such as the :USER package).
  19. ; This will allow the dwindow.lsp functions to be called by just their
  20. ; names and without any package qualifier.
  21. ; This file should be loaded immediately after starting Lisp:
  22. ; If Lisp has seen any of these symbols, loading this file will cause an error.
  23. (dolist (x '(xlib::XRecolorCursor
  24. xlib::XFlush xlib::XUnMapWindow xlib::XClearWindow xlib::XMapWindow
  25. xlib::XTextWidth xlib::XOpenDisplay xlib::XdefaultScreen xlib::XRootWindow
  26. xlib::XBlackPixel xlib::XWhitePixel xlib::XDefaultGC xlib::XDefaultColormap
  27. xlib::make-XsetWindowAttributes xlib::set-XsetWindowAttributes-backing_store
  28. xlib::set-XsetWindowAttributes-save_under xlib::make-XWindowAttributes
  29. xlib::make-XsizeHints xlib::make-XEvent xlib::make-XGCValues
  30. xlib::XQueryPointer xlib::XCreateSimpleWindow xlib::XsetStandardProperties
  31. xlib::XCreateGC xlib::CWSaveUnder xlib::CWBackingStore
  32. xlib::XloadQueryFont xlib::XsetFont xlib::XGetGCValues
  33. xlib::XGCValues-foreground xlib::XsetForeground xlib::XGCValues-Background
  34. xlib::XsetBackground xlib::XGCValues-function xlib::XCreateFontCursor
  35. xlib::XDefineCursor xlib::XGetGeometry
  36. xlib::Xsync xlib::XsetFunction xlib::GXxor xlib::GXcopy
  37. xlib::XsetLineAttributes xlib::LineSolid xlib::CapButt xlib::JoinMiter
  38. xlib::XDrawLine xlib::XdrawArc xlib::XClearArea xlib::XCopyArea
  39. xlib::XFillRectangle xlib::XdrawImageString xlib::XTextExtents
  40. xlib::XDestroyWindow xlib::XFreeGC xlib::XMoveWindow xlib::Xsync
  41. xlib::Xselectinput xlib::ButtonPressMask xlib::PointerMotionMask
  42. xlib::XNextEvent xlib::XAnyEvent-type xlib::XAnyEvent-window
  43. xlib::MotionNotify xlib::ButtonPress
  44. xlib::XMotionEvent-x xlib::XMotionEvent-y xlib::XButtonEvent-button
  45. xlib::XAnyEvent-window
  46. xlib::XButtonEvent-button xlib::XWindowAttributes-map_state
  47. xlib::ISUnmapped xlib::XPending
  48. xlib::Expose xlib::XAllocColor xlib::XColor-Pixel xlib::XFreeColors
  49. xlib::KeyPressMask xlib::KeyReleaseMask xlib::KeyRelease
  50. xlib::KeyPress xlib::ButtonPress xlib::XDisplayKeycodes
  51. xlib::XGetKeyboardMapping
  52. xlib::XFree xlib::XK_Shift_R xlib::XK_Shift_L xlib::XK_Control_L
  53. xlib::XK_Control_R xlib::XK_Alt_R xlib::XK_Alt_L xlib::XK_Return
  54. xlib::XK_Tab xlib::XK_BackSpace xlib::get-c-string xlib::int-pos
  55. xlib::fixnum-array xlib::int-array xlib::fixnum-pos
  56. xlib::set-xsizehints-x xlib::set-xsizehints-y xlib::set-xsizehints-width
  57. xlib::set-xsizehints-height xlib::set-xsizehints-flags xlib::set-foreground
  58. xlib::set-background xlib::set-font
  59. xlib::set-cursor xlib::set-line-width xlib::set-line-attr
  60. xlib::set-Xcolor-red xlib::set-Xcolor-green xlib::set-Xcolor-blue
  61. xlib::WhenMapped xlib::Psize xlib::Pposition xlib::CWSaveUnder
  62. xlib::CWBackingStore xlib::NoSymbol
  63. xlib::leavewindowmask xlib::buttonreleasemask xlib::exposuremask
  64. xlib::GCForeground xlib::GCBackground xlib::GCFunction
  65. xlib::None xlib::Xfontstruct-fid xlib::XChangeWindowAttributes
  66. xlib::XGetWindowAttributes lisp::null xlib::Make-Xcolor
  67. )) (import x) )