Next: Introduction, Previous: (dir), Up: (dir) [Contents][Index]
This is the mcclim Reference Manual, version 0.9.7, generated automatically by Declt version 4.0 beta 2 "William Riker" on Wed Jun 15 05:17:59 2022 GMT+0.
Next: Systems, Previous: The mcclim Reference Manual, Up: The mcclim Reference Manual [Contents][Index]
McCLIM, an implementation of the "Common Lisp Interface Manager CLIM II Specification", is a portable and high-level user interface management system toolkit for Common Lisp. It has a powerful presentation model which allows us to directly link the visual representation of an object to its semantics. It has several high-level programming capabilities that enable us to develop a user interface conveniently; including formatted output, graphics, windowing and commands that are invoked by typing text, keyboard shortcuts or clicking a mouse button.
McCLIM works with Allegro CL, Clozure CL, CLISP, CMUCL, Embeddable CL, the Scieneer CL Common-lisp, SBCL and the LispWorks implementations. Right now the only backend supported by McCLIM is CLX, which ties it to the Xserver on the host system. Any platform capable of running Xserver may run McCLIM applications.
McCLIM is available on
Quicklisp
. Make sure you have
installed a supported Common Lisp implementation and Quicklisp
is
configured correctly. Then, McCLIM can be installed by entering the
following in your REPL:
(ql:quickload "mcclim")
To see if McCLIM works on your host you may load the system with examples and run the example browser application:
(ql:quickload "clim-examples") ; Load the system with examples.
(clim-demo:demodemo) ; Run the example browser application.
(ql:quickload "mcclim")
.example.lisp
.
(in-package :common-lisp-user)
(defpackage "APP"
(:use :clim :clim-lisp)
(:export "APP-MAIN"))
(in-package :app)
;;; Define a application-frame (a.k.a. application window in traditional GUI's).
(define-application-frame superapp ()
()
;; :panes section describes different parts of the
;; application-frame. This application has only one pane.
(:panes
(int :interactor :height 400 :width 600))
;; :layouts section describes how the panes are layed out.
;; This application has one layout named "default" which has a single pane.
(:layouts
(default int)))
;;; Following function launches an instance of "superapp" application-frame.
(defun app-main ()
(run-frame-top-level (make-application-frame 'superapp)))
(app:app-main)
You can access the McCLIM manual draft in HTML and PDF formats if you want, but it's still a work in progress. Several other CLIM 2 resources are listed on CLiki and McCLIM homepage.
Apps
- sample applications. This includes:
Apps/Debugger
- Peter Mechleborg's debugger (similar to Slime's).Apps/Functional-Geometry
- Frank Buss and Rainer Joswig's functional
geometry package for drawing "Escher" tiles.Apps/Clouseau
- A powerful inspector for Lisp objects.Apps/Listener
- Andy Hefner's Lisp Listener.Apps/Scigraph
- BBN's graphing package.Documentation
- Contains available documentation such as
Documentation for Libraries Drei
and ESA
, A Guided Tour of
CLIM, Specification in LATEX source and Manual in LATEX and texinfo
sources (For the time being, texinfo manual contains some
additional Documentation not found in LATEX version).Examples
- Sources for the examples in clim-demo
and some
additional examples. These are of varying quality and style; many
of them date from when McCLIM was quite incomplete.Extensions
- Contains several extensions to CLIM 2 spec, such
as fonts, additional layouts, bezier, images etc. Most
of them are loaded automatically with McCLIM.Libraries
- Contains Drei
and ESA
Libraries. See
Documentation for details.Next: Modules, Previous: Introduction, Up: The mcclim Reference Manual [Contents][Index]
The main system appears first, followed by any subsystem dependency.
Next: mcclim/looks, Previous: Systems, Up: Systems [Contents][Index]
McCLIM is an implementation of the CLIM 2.0 specification.
Alessandro Serra
Alexey Dejneka
Andreas Fuchs
Andy Hefner
Arnaud Rouanet
Brian Mastenbrook
Brian Spilsbury
Christophe Rhodes
Clemens Fruhwirth
Cyrus Harmon
Daniel Barlow
Daniel Kochmański
Duncan Rose
Edena Pixel
Elias MÃ¥rtenson
Frank Buss
Gilbert Baumann
Iban Hatchondo
Julien Boninfan
Lionel Salabartan
Max-Gerd Retzlaff
Mike McDonald
Nisar Ahmad
Peter Mechleborg
Rainer Joswig
Robert Goldman
Robert Strandh
Rudi Schlatte
Timothy Moore
LGPL-2.1+
McCLIM is an implementation of the CLIM 2.0 specification.
CLIM (Common Lisp Interface Manager) is an advanced graphical user interface management system.
0.9.7
default-icons.lisp (file).
Alessandro Serra
Alexey Dejneka
Andreas Fuchs
Andy Hefner
Arnaud Rouanet
Brian Mastenbrook
Brian Spilsbury
Christophe Rhodes
Clemens Fruhwirth
Cyrus Harmon
Daniel Barlow
Daniel Kochmański
Duncan Rose
Edena Pixel
Elias MÃ¥rtenson
Frank Buss
Gilbert Baumann
Iban Hatchondo
Julien Boninfan
Lionel Salabartan
Max-Gerd Retzlaff
Mike McDonald
Nisar Ahmad
Peter Mechleborg
Rainer Joswig
Robert Goldman
Robert Strandh
Rudi Schlatte
Timothy Moore
LGPL-2.1+
Next: clim-core, Previous: mcclim/looks, Up: Systems [Contents][Index]
Next: clim-basic, Previous: clim, Up: Systems [Contents][Index]
Next: drei-mcclim, Previous: clim-basic, Up: Systems [Contents][Index]
Next: esa-mcclim, Previous: clim-lisp, Up: Systems [Contents][Index]
Drei Replaces EINE’s Inheritor – McCLIM editor substrate
Next: automaton, Previous: drei-mcclim, Up: Systems [Contents][Index]
Next: persistent, Previous: esa-mcclim, Up: Systems [Contents][Index]
Next: mcclim-fonts, Previous: automaton, Up: Systems [Contents][Index]
Next: mcclim-clx, Previous: persistent, Up: Systems [Contents][Index]
clim-basic (system).
common.lisp (file).
Next: mcclim-fonts/truetype, Previous: mcclim-fonts, Up: Systems [Contents][Index]
Next: mcclim-backend-common, Previous: mcclim-clx, Up: Systems [Contents][Index]
Next: mcclim-clx/freetype, Previous: mcclim-fonts/truetype, Up: Systems [Contents][Index]
clim (system).
Next: mcclim-fonts/clx-freetype, Previous: mcclim-backend-common, Up: Systems [Contents][Index]
Next: mcclim-fontconfig, Previous: mcclim-clx/freetype, Up: Systems [Contents][Index]
freetype.lisp (file).
Next: mcclim-harfbuzz, Previous: mcclim-fonts/clx-freetype, Up: Systems [Contents][Index]
CFFI interface to Fontconfig
Apache
cffi-grovel (system).
src (module).
Next: mcclim-clx-fb, Previous: mcclim-fontconfig, Up: Systems [Contents][Index]
CFFI interface to Harfbuzz
Apache
cffi-grovel (system).
src (module).
Next: mcclim-render, Previous: mcclim-harfbuzz, Up: Systems [Contents][Index]
Next: mcclim-null, Previous: mcclim-clx-fb, Up: Systems [Contents][Index]
Support for raster images McCLIM.
Next: mcclim/extensions, Previous: mcclim-render, Up: Systems [Contents][Index]
clim (system).
Next: mcclim-bitmaps, Previous: mcclim-null, Up: Systems [Contents][Index]
Alessandro Serra
Alexey Dejneka
Andreas Fuchs
Andy Hefner
Arnaud Rouanet
Brian Mastenbrook
Brian Spilsbury
Christophe Rhodes
Clemens Fruhwirth
Cyrus Harmon
Daniel Barlow
Daniel Kochmański
Duncan Rose
Edena Pixel
Elias MÃ¥rtenson
Frank Buss
Gilbert Baumann
Iban Hatchondo
Julien Boninfan
Lionel Salabartan
Max-Gerd Retzlaff
Mike McDonald
Nisar Ahmad
Peter Mechleborg
Rainer Joswig
Robert Goldman
Robert Strandh
Rudi Schlatte
Timothy Moore
LGPL-2.1+
Next: conditional-commands, Previous: mcclim/extensions, Up: Systems [Contents][Index]
Support for various image formats in McCLIM.
Support for various image formats in McCLIM
bitmap reading functions.
Currently supported formats are the formats covered by opticl library and XPM format.
Next: mcclim-layouts/tab, Previous: mcclim-bitmaps, Up: Systems [Contents][Index]
clim-basic (system).
Next: mcclim-bezier, Previous: conditional-commands, Up: Systems [Contents][Index]
clim (system).
tab-layout.lisp (file).
Next: mcclim-bezier/core, Previous: mcclim-layouts/tab, Up: Systems [Contents][Index]
Support for various bezier curves in McCLIM.
Next: clim-postscript, Previous: mcclim-bezier, Up: Systems [Contents][Index]
core bezier routines
Next: clim-postscript-font, Previous: mcclim-bezier/core, Up: Systems [Contents][Index]
Next: clim-pdf, Previous: clim-postscript, Up: Systems [Contents][Index]
font (module).
Next: mcclim-bezier/clx, Previous: clim-postscript-font, Up: Systems [Contents][Index]
Next: mcclim-franz, Previous: clim-pdf, Up: Systems [Contents][Index]
CLX bezier drawing routines
bezier-clx.lisp (file).
Previous: mcclim-bezier/clx, Up: Systems [Contents][Index]
Implementation of CLIM 2.2 – Franz CLIM Manual
clim (system).
franz.lisp (file).
Next: Files, Previous: Systems, Up: The mcclim Reference Manual [Contents][Index]
Modules are listed depth-first from the system components tree.
Next: clim-core/presentations, Previous: Modules, Up: Modules [Contents][Index]
clim-core (system).
Next: clim-core/formatting, Previous: clim-core/incremental-redisplay, Up: Modules [Contents][Index]
clim-core (system).
Next: clim-core/commands, Previous: clim-core/presentations, Up: Modules [Contents][Index]
clim-core (system).
Next: clim-core/panes, Previous: clim-core/formatting, Up: Modules [Contents][Index]
clim-core (system).
Next: clim-core/frames, Previous: clim-core/commands, Up: Modules [Contents][Index]
clim-core (system).
Next: clim-core/gadgets, Previous: clim-core/panes, Up: Modules [Contents][Index]
clim-core (system).
Next: clim-core/dialogs, Previous: clim-core/frames, Up: Modules [Contents][Index]
clim-core (system).
Next: clim-basic/geometry, Previous: clim-core/gadgets, Up: Modules [Contents][Index]
clim-core (system).
Next: clim-basic/windowing, Previous: clim-core/dialogs, Up: Modules [Contents][Index]
clim-basic (system).
Next: clim-basic/drawing, Previous: clim-basic/geometry, Up: Modules [Contents][Index]
clim-basic (system).
Next: clim-basic/extended-streams, Previous: clim-basic/windowing, Up: Modules [Contents][Index]
clim-basic (system).
Next: clim-lisp/Lisp-Dep, Previous: clim-basic/drawing, Up: Modules [Contents][Index]
clim-basic (system).
Next: mcclim-clx/basic, Previous: clim-basic/extended-streams, Up: Modules [Contents][Index]
patch.lisp (file).
clim-lisp (system).
Next: mcclim-clx/output, Previous: clim-lisp/Lisp-Dep, Up: Modules [Contents][Index]
mcclim-clx (system).
Next: mcclim-fontconfig/src, Previous: mcclim-clx/basic, Up: Modules [Contents][Index]
basic (module).
mcclim-clx (system).
Next: mcclim-harfbuzz/src, Previous: mcclim-clx/output, Up: Modules [Contents][Index]
mcclim-fontconfig (system).
Next: mcclim-render/render, Previous: mcclim-fontconfig/src, Up: Modules [Contents][Index]
mcclim-harfbuzz (system).
Next: mcclim-render/cl-vectors, Previous: mcclim-harfbuzz/src, Up: Modules [Contents][Index]
image.lisp (file).
mcclim-render (system).
Next: mcclim-render/backend, Previous: mcclim-render/render, Up: Modules [Contents][Index]
render (module).
mcclim-render (system).
Next: clim-postscript-font/font, Previous: mcclim-render/cl-vectors, Up: Modules [Contents][Index]
cl-vectors (module).
mcclim-render (system).
Previous: mcclim-render/backend, Up: Modules [Contents][Index]
clim-postscript-font (system).
Next: Packages, Previous: Modules, Up: The mcclim Reference Manual [Contents][Index]
Files are sorted by type and then listed depth-first from the systems components trees.
Next: clim/clim.asd, Previous: Lisp, Up: Lisp [Contents][Index]
mcclim (system).
Next: clim-core/clim-core.asd, Previous: mcclim/mcclim.asd, Up: Lisp [Contents][Index]
Next: clim-basic/clim-basic.asd, Previous: clim/clim.asd, Up: Lisp [Contents][Index]
clim-core (system).
Next: clim-lisp/clim-lisp.asd, Previous: clim-core/clim-core.asd, Up: Lisp [Contents][Index]
clim-basic (system).
Next: drei-mcclim/drei-mcclim.asd, Previous: clim-basic/clim-basic.asd, Up: Lisp [Contents][Index]
clim-lisp (system).
Next: esa-mcclim/esa-mcclim.asd, Previous: clim-lisp/clim-lisp.asd, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: automaton/automaton.asd, Previous: drei-mcclim/drei-mcclim.asd, Up: Lisp [Contents][Index]
esa-mcclim (system).
Next: persistent/persistent.asd, Previous: esa-mcclim/esa-mcclim.asd, Up: Lisp [Contents][Index]
automaton (system).
Next: mcclim-fonts/mcclim-fonts.asd, Previous: automaton/automaton.asd, Up: Lisp [Contents][Index]
persistent (system).
Next: mcclim-clx/mcclim-clx.asd, Previous: persistent/persistent.asd, Up: Lisp [Contents][Index]
mcclim-fonts (system).
Next: mcclim-backend-common/mcclim-backend-common.asd, Previous: mcclim-fonts/mcclim-fonts.asd, Up: Lisp [Contents][Index]
mcclim-clx (system).
Next: mcclim-fontconfig/mcclim-fontconfig.asd, Previous: mcclim-clx/mcclim-clx.asd, Up: Lisp [Contents][Index]
mcclim-backend-common (system).
Next: mcclim-harfbuzz/mcclim-harfbuzz.asd, Previous: mcclim-backend-common/mcclim-backend-common.asd, Up: Lisp [Contents][Index]
mcclim-fontconfig (system).
Next: mcclim-clx-fb/mcclim-clx-fb.asd, Previous: mcclim-fontconfig/mcclim-fontconfig.asd, Up: Lisp [Contents][Index]
mcclim-harfbuzz (system).
Next: mcclim-render/mcclim-render.asd, Previous: mcclim-harfbuzz/mcclim-harfbuzz.asd, Up: Lisp [Contents][Index]
mcclim-clx-fb (system).
Next: mcclim-null/mcclim-null.asd, Previous: mcclim-clx-fb/mcclim-clx-fb.asd, Up: Lisp [Contents][Index]
mcclim-render (system).
Next: mcclim-bitmaps/mcclim-bitmaps.asd, Previous: mcclim-render/mcclim-render.asd, Up: Lisp [Contents][Index]
mcclim-null (system).
Next: conditional-commands/conditional-commands.asd, Previous: mcclim-null/mcclim-null.asd, Up: Lisp [Contents][Index]
mcclim-bitmaps (system).
Next: mcclim-layouts/tab/mcclim-layouts.asd, Previous: mcclim-bitmaps/mcclim-bitmaps.asd, Up: Lisp [Contents][Index]
conditional-commands (system).
Next: mcclim-bezier/mcclim-bezier.asd, Previous: conditional-commands/conditional-commands.asd, Up: Lisp [Contents][Index]
mcclim-layouts/tab (system).
Next: clim-postscript/clim-postscript.asd, Previous: mcclim-layouts/tab/mcclim-layouts.asd, Up: Lisp [Contents][Index]
mcclim-bezier (system).
Next: clim-postscript-font/clim-postscript-font.asd, Previous: mcclim-bezier/mcclim-bezier.asd, Up: Lisp [Contents][Index]
clim-postscript (system).
Next: clim-pdf/clim-pdf.asd, Previous: clim-postscript/clim-postscript.asd, Up: Lisp [Contents][Index]
clim-postscript-font (system).
Next: mcclim-franz/mcclim-franz.asd, Previous: clim-postscript-font/clim-postscript-font.asd, Up: Lisp [Contents][Index]
clim-pdf (system).
Next: mcclim/default-icons.lisp, Previous: clim-pdf/clim-pdf.asd, Up: Lisp [Contents][Index]
mcclim-franz (system).
Next: clim/input-editing-drei.lisp, Previous: mcclim-franz/mcclim-franz.asd, Up: Lisp [Contents][Index]
mcclim (system).
Next: clim/text-editor-gadget.lisp, Previous: mcclim/default-icons.lisp, Up: Lisp [Contents][Index]
clim (system).
Next: clim-core/defresource.lisp, Previous: clim/input-editing-drei.lisp, Up: Lisp [Contents][Index]
clim (system).
Next: clim-core/theming.lisp, Previous: clim/text-editor-gadget.lisp, Up: Lisp [Contents][Index]
clim-core (system).
Next: clim-core/incremental-redisplay/cache.lisp, Previous: clim-core/defresource.lisp, Up: Lisp [Contents][Index]
clim-core (system).
Next: clim-core/incremental-redisplay/updating-stream.lisp, Previous: clim-core/theming.lisp, Up: Lisp [Contents][Index]
incremental-redisplay (module).
shared-initialize (method).
Next: clim-core/incremental-redisplay/updating-record.lisp, Previous: clim-core/incremental-redisplay/cache.lisp, Up: Lisp [Contents][Index]
cache.lisp (file).
incremental-redisplay (module).
Next: clim-core/incremental-redisplay/redisplay.lisp, Previous: clim-core/incremental-redisplay/updating-stream.lisp, Up: Lisp [Contents][Index]
updating-stream.lisp (file).
incremental-redisplay (module).
Next: clim-core/incremental-redisplay/propagate.lisp, Previous: clim-core/incremental-redisplay/updating-record.lisp, Up: Lisp [Contents][Index]
updating-record.lisp (file).
incremental-redisplay (module).
Next: clim-core/presentations/presentation-types.lisp, Previous: clim-core/incremental-redisplay/redisplay.lisp, Up: Lisp [Contents][Index]
redisplay.lisp (file).
incremental-redisplay (module).
Next: clim-core/presentations/presentation-functions.lisp, Previous: clim-core/incremental-redisplay/propagate.lisp, Up: Lisp [Contents][Index]
presentations (module).
Next: clim-core/presentations/presentation-type-functions.lisp, Previous: clim-core/presentations/presentation-types.lisp, Up: Lisp [Contents][Index]
presentation-types.lisp (file).
presentations (module).
Next: clim-core/presentations/presentation-histories.lisp, Previous: clim-core/presentations/presentation-functions.lisp, Up: Lisp [Contents][Index]
presentation-functions.lisp (file).
presentations (module).
Next: clim-core/presentations/typed-output.lisp, Previous: clim-core/presentations/presentation-type-functions.lisp, Up: Lisp [Contents][Index]
presentation-type-functions.lisp (file).
presentations (module).
presentation-type-history (function).
Next: clim-core/presentations/typed-input.lisp, Previous: clim-core/presentations/presentation-histories.lisp, Up: Lisp [Contents][Index]
presentation-histories.lisp (file).
presentations (module).
Next: clim-core/presentations/translators.lisp, Previous: clim-core/presentations/typed-output.lisp, Up: Lisp [Contents][Index]
typed-output.lisp (file).
presentations (module).
Next: clim-core/presentations/drag-and-drop.lisp, Previous: clim-core/presentations/typed-input.lisp, Up: Lisp [Contents][Index]
typed-input.lisp (file).
presentations (module).
Next: clim-core/formatting/bordered-output.lisp, Previous: clim-core/presentations/translators.lisp, Up: Lisp [Contents][Index]
translators.lisp (file).
presentations (module).
Next: clim-core/formatting/table-formatting.lisp, Previous: clim-core/presentations/drag-and-drop.lisp, Up: Lisp [Contents][Index]
formatting (module).
Next: clim-core/formatting/graph-formatting.lisp, Previous: clim-core/formatting/bordered-output.lisp, Up: Lisp [Contents][Index]
formatting (module).
Next: clim-core/input-editing.lisp, Previous: clim-core/formatting/table-formatting.lisp, Up: Lisp [Contents][Index]
formatting (module).
Next: clim-core/standard-presentations.lisp, Previous: clim-core/formatting/graph-formatting.lisp, Up: Lisp [Contents][Index]
clim-core (system).
Next: clim-core/describe.lisp, Previous: clim-core/input-editing.lisp, Up: Lisp [Contents][Index]
clim-core (system).
Next: clim-core/commands/parsers.lisp, Previous: clim-core/standard-presentations.lisp, Up: Lisp [Contents][Index]
clim-core (system).
Next: clim-core/commands/commands.lisp, Previous: clim-core/describe.lisp, Up: Lisp [Contents][Index]
commands (module).
*unsupplied-argument-marker* (special variable).
Next: clim-core/commands/tables.lisp, Previous: clim-core/commands/parsers.lisp, Up: Lisp [Contents][Index]
parsers.lisp (file).
commands (module).
Next: clim-core/commands/processor.lisp, Previous: clim-core/commands/commands.lisp, Up: Lisp [Contents][Index]
commands.lisp (file).
commands (module).
Next: clim-core/panes/construction.lisp, Previous: clim-core/commands/tables.lisp, Up: Lisp [Contents][Index]
tables.lisp (file).
commands (module).
Next: clim-core/panes/layout-protocol.lisp, Previous: clim-core/commands/processor.lisp, Up: Lisp [Contents][Index]
panes (module).
Next: clim-core/panes/composition.lisp, Previous: clim-core/panes/construction.lisp, Up: Lisp [Contents][Index]
construction.lisp (file).
panes (module).
Next: clim-core/panes/stream-panes.lisp, Previous: clim-core/panes/layout-protocol.lisp, Up: Lisp [Contents][Index]
layout-protocol.lisp (file).
panes (module).
Next: clim-core/frames/frames.lisp, Previous: clim-core/panes/composition.lisp, Up: Lisp [Contents][Index]
composition.lisp (file).
panes (module).
Next: clim-core/frames/pointer-documentation.lisp, Previous: clim-core/panes/stream-panes.lisp, Up: Lisp [Contents][Index]
frames (module).
Next: clim-core/frames/menu-frame.lisp, Previous: clim-core/frames/frames.lisp, Up: Lisp [Contents][Index]
frames.lisp (file).
frames (module).
Next: clim-core/frames/define-application-frame.lisp, Previous: clim-core/frames/menu-frame.lisp, Up: Lisp [Contents][Index]
menu-frame.lisp (file).
frames (module).
Next: clim-core/frames/window-stream.lisp, Previous: clim-core/frames/frame-managers.lisp, Up: Lisp [Contents][Index]
frame-managers.lisp (file).
frames (module).
define-application-frame (macro).
Next: clim-core/frames/default-frame.lisp, Previous: clim-core/frames/define-application-frame.lisp, Up: Lisp [Contents][Index]
define-application-frame.lisp (file).
frames (module).
Next: clim-core/gadgets/base.lisp, Previous: clim-core/frames/window-stream.lisp, Up: Lisp [Contents][Index]
window-stream.lisp (file).
frames (module).
Next: clim-core/gadgets/abstract.lisp, Previous: clim-core/frames/default-frame.lisp, Up: Lisp [Contents][Index]
gadgets (module).
Next: clim-core/gadgets/mixins.lisp, Previous: clim-core/gadgets/base.lisp, Up: Lisp [Contents][Index]
base.lisp (file).
gadgets (module).
Next: clim-core/gadgets/drawing-utilities.lisp, Previous: clim-core/gadgets/abstract.lisp, Up: Lisp [Contents][Index]
abstract.lisp (file).
gadgets (module).
Next: clim-core/gadgets/concrete.lisp, Previous: clim-core/gadgets/mixins.lisp, Up: Lisp [Contents][Index]
mixins.lisp (file).
gadgets (module).
Next: clim-core/gadgets/menu.lisp, Previous: clim-core/gadgets/drawing-utilities.lisp, Up: Lisp [Contents][Index]
drawing-utilities.lisp (file).
gadgets (module).
Next: clim-core/dialogs/dialog-views.lisp, Previous: clim-core/gadgets/menu.lisp, Up: Lisp [Contents][Index]
dialogs (module).
Next: clim-core/dialogs/notify-user.lisp, Previous: clim-core/dialogs/dialog.lisp, Up: Lisp [Contents][Index]
dialog.lisp (file).
dialogs (module).
Next: clim-core/dialogs/menu-choose.lisp, Previous: clim-core/dialogs/dialog-views.lisp, Up: Lisp [Contents][Index]
dialogs (module).
Next: clim-basic/setf-star.lisp, Previous: clim-core/dialogs/menu-choose.lisp, Up: Lisp [Contents][Index]
clim-core (system).
Next: clim-basic/decls.lisp, Previous: clim-core/builtin-commands.lisp, Up: Lisp [Contents][Index]
clim-basic (system).
Next: clim-basic/protocol-classes.lisp, Previous: clim-basic/setf-star.lisp, Up: Lisp [Contents][Index]
setf-star.lisp (file).
clim-basic (system).
Next: clim-basic/multiprocessing.lisp, Previous: clim-basic/decls.lisp, Up: Lisp [Contents][Index]
decls.lisp (file).
clim-basic (system).
Next: clim-basic/utils.lisp, Previous: clim-basic/protocol-classes.lisp, Up: Lisp [Contents][Index]
decls.lisp (file).
clim-basic (system).
Next: clim-basic/geometry/coordinates.lisp, Previous: clim-basic/multiprocessing.lisp, Up: Lisp [Contents][Index]
clim-basic (system).
Next: clim-basic/geometry/transforms.lisp, Previous: clim-basic/utils.lisp, Up: Lisp [Contents][Index]
geometry (module).
Next: clim-basic/geometry/bounding-rectangle.lisp, Previous: clim-basic/geometry/coordinates.lisp, Up: Lisp [Contents][Index]
coordinates.lisp (file).
geometry (module).
Next: clim-basic/geometry/regions.lisp, Previous: clim-basic/geometry/transforms.lisp, Up: Lisp [Contents][Index]
transforms.lisp (file).
geometry (module).
Next: clim-basic/geometry/3.2.1-points.lisp, Previous: clim-basic/geometry/bounding-rectangle.lisp, Up: Lisp [Contents][Index]
bounding-rectangle.lisp (file).
geometry (module).
Next: clim-basic/geometry/3.2.2-polygons-and-polylines.lisp, Previous: clim-basic/geometry/regions.lisp, Up: Lisp [Contents][Index]
regions.lisp (file).
geometry (module).
slots-for-pprint-object (method).
Next: clim-basic/geometry/3.2.3-lines.lisp, Previous: clim-basic/geometry/3.2.1-points.lisp, Up: Lisp [Contents][Index]
3.2.1-points.lisp (file).
geometry (module).
Next: clim-basic/geometry/3.2.4-rectangles.lisp, Previous: clim-basic/geometry/3.2.2-polygons-and-polylines.lisp, Up: Lisp [Contents][Index]
geometry (module).
slots-for-pprint-object (method).
Next: clim-basic/geometry/3.2.5-ellipses-and-elliptical-arcs.lisp, Previous: clim-basic/geometry/3.2.3-lines.lisp, Up: Lisp [Contents][Index]
3.2.3-lines.lisp (file).
geometry (module).
Next: clim-basic/geometry/3.2.6-bezigons-and-bezier-curves.lisp, Previous: clim-basic/geometry/3.2.4-rectangles.lisp, Up: Lisp [Contents][Index]
3.2.4-rectangles.lisp (file).
geometry (module).
Next: clim-basic/geometry/region-utilities.lisp, Previous: clim-basic/geometry/3.2.5-ellipses-and-elliptical-arcs.lisp, Up: Lisp [Contents][Index]
geometry (module).
Next: clim-basic/geometry/region-predicates.lisp, Previous: clim-basic/geometry/3.2.6-bezigons-and-bezier-curves.lisp, Up: Lisp [Contents][Index]
geometry (module).
Next: clim-basic/geometry/region-composition.lisp, Previous: clim-basic/geometry/region-utilities.lisp, Up: Lisp [Contents][Index]
region-utilities.lisp (file).
geometry (module).
Next: clim-basic/geometry/region-set-composition.lisp, Previous: clim-basic/geometry/region-predicates.lisp, Up: Lisp [Contents][Index]
region-predicates.lisp (file).
geometry (module).
Next: clim-basic/windowing/events.lisp, Previous: clim-basic/geometry/region-composition.lisp, Up: Lisp [Contents][Index]
region-composition.lisp (file).
geometry (module).
Next: clim-basic/windowing/output.lisp, Previous: clim-basic/geometry/region-set-composition.lisp, Up: Lisp [Contents][Index]
windowing (module).
Next: clim-basic/windowing/sheets.lisp, Previous: clim-basic/windowing/events.lisp, Up: Lisp [Contents][Index]
windowing (module).
Next: clim-basic/windowing/pixmaps.lisp, Previous: clim-basic/windowing/output.lisp, Up: Lisp [Contents][Index]
windowing (module).
Next: clim-basic/windowing/mirrors.lisp, Previous: clim-basic/windowing/sheets.lisp, Up: Lisp [Contents][Index]
output.lisp (file).
windowing (module).
Next: clim-basic/windowing/ports.lisp, Previous: clim-basic/windowing/pixmaps.lisp, Up: Lisp [Contents][Index]
sheets.lisp (file).
windowing (module).
Next: clim-basic/windowing/input.lisp, Previous: clim-basic/windowing/mirrors.lisp, Up: Lisp [Contents][Index]
windowing (module).
Next: clim-basic/windowing/grafts.lisp, Previous: clim-basic/windowing/ports.lisp, Up: Lisp [Contents][Index]
windowing (module).
Next: clim-basic/windowing/repaint.lisp, Previous: clim-basic/windowing/input.lisp, Up: Lisp [Contents][Index]
windowing (module).
Next: clim-basic/drawing/design.lisp, Previous: clim-basic/windowing/grafts.lisp, Up: Lisp [Contents][Index]
windowing (module).
Next: clim-basic/drawing/text-style.lisp, Previous: clim-basic/windowing/repaint.lisp, Up: Lisp [Contents][Index]
drawing (module).
Next: clim-basic/drawing/colors.lisp, Previous: clim-basic/drawing/design.lisp, Up: Lisp [Contents][Index]
drawing (module).
Next: clim-basic/drawing/pattern.lisp, Previous: clim-basic/drawing/text-style.lisp, Up: Lisp [Contents][Index]
design.lisp (file).
drawing (module).
Next: clim-basic/drawing/medium.lisp, Previous: clim-basic/drawing/colors.lisp, Up: Lisp [Contents][Index]
design.lisp (file).
drawing (module).
Next: clim-basic/drawing/graphics.lisp, Previous: clim-basic/drawing/pattern.lisp, Up: Lisp [Contents][Index]
drawing (module).
Next: clim-basic/drawing/with-output-to-drawing-stream.lisp, Previous: clim-basic/drawing/medium.lisp, Up: Lisp [Contents][Index]
drawing (module).
Next: clim-basic/extended-streams/text-formatting.lisp, Previous: clim-basic/drawing/graphics.lisp, Up: Lisp [Contents][Index]
drawing (module).
Next: clim-basic/extended-streams/views.lisp, Previous: clim-basic/drawing/with-output-to-drawing-stream.lisp, Up: Lisp [Contents][Index]
extended-streams (module).
Next: clim-basic/extended-streams/dead-keys.lisp, Previous: clim-basic/extended-streams/text-formatting.lisp, Up: Lisp [Contents][Index]
extended-streams (module).
Next: clim-basic/extended-streams/stream-output.lisp, Previous: clim-basic/extended-streams/views.lisp, Up: Lisp [Contents][Index]
extended-streams (module).
merging-dead-keys (macro).
Next: clim-basic/extended-streams/recording.lisp, Previous: clim-basic/extended-streams/dead-keys.lisp, Up: Lisp [Contents][Index]
extended-streams (module).
Next: clim-basic/extended-streams/text-selection.lisp, Previous: clim-basic/extended-streams/stream-output.lisp, Up: Lisp [Contents][Index]
stream-output.lisp (file).
extended-streams (module).
Next: clim-basic/extended-streams/encapsulate.lisp, Previous: clim-basic/extended-streams/recording.lisp, Up: Lisp [Contents][Index]
recording.lisp (file).
extended-streams (module).
Next: clim-basic/extended-streams/stream-input.lisp, Previous: clim-basic/extended-streams/text-selection.lisp, Up: Lisp [Contents][Index]
extended-streams (module).
Next: clim-basic/extended-streams/gestures.lisp, Previous: clim-basic/extended-streams/encapsulate.lisp, Up: Lisp [Contents][Index]
extended-streams (module).
Next: clim-basic/extended-streams/standard-gestures.lisp, Previous: clim-basic/extended-streams/stream-input.lisp, Up: Lisp [Contents][Index]
extended-streams (module).
Next: clim-basic/extended-streams/pointer-tracking.lisp, Previous: clim-basic/extended-streams/gestures.lisp, Up: Lisp [Contents][Index]
gestures.lisp (file).
extended-streams (module).
Next: clim-lisp/patch.lisp, Previous: clim-basic/extended-streams/standard-gestures.lisp, Up: Lisp [Contents][Index]
extended-streams (module).
Next: clim-lisp/Lisp-Dep/fix-acl.lisp, Previous: clim-basic/extended-streams/pointer-tracking.lisp, Up: Lisp [Contents][Index]
clim-lisp (system).
Next: clim-lisp/Lisp-Dep/fix-clisp.lisp, Previous: clim-lisp/patch.lisp, Up: Lisp [Contents][Index]
:excl
lisp-dep (module).
Next: clim-lisp/package.lisp, Previous: clim-lisp/Lisp-Dep/fix-acl.lisp, Up: Lisp [Contents][Index]
:clisp
lisp-dep (module).
Next: drei-mcclim/packages.lisp, Previous: clim-lisp/Lisp-Dep/fix-clisp.lisp, Up: Lisp [Contents][Index]
Next: drei-mcclim/protocol.lisp, Previous: clim-lisp/package.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/buffer.lisp, Previous: drei-mcclim/packages.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/delegating-buffer.lisp, Previous: drei-mcclim/protocol.lisp, Up: Lisp [Contents][Index]
packages.lisp (file).
drei-mcclim (system).
Next: drei-mcclim/motion.lisp, Previous: drei-mcclim/buffer.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
delegating-mark (class).
Next: drei-mcclim/editing.lisp, Previous: drei-mcclim/delegating-buffer.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/base.lisp, Previous: drei-mcclim/motion.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/syntax.lisp, Previous: drei-mcclim/editing.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/modes.lisp, Previous: drei-mcclim/base.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/views.lisp, Previous: drei-mcclim/syntax.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
*global-modes* (special variable).
Next: drei-mcclim/drei.lisp, Previous: drei-mcclim/modes.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/drei-clim.lisp, Previous: drei-mcclim/views.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/drei-redisplay.lisp, Previous: drei-mcclim/drei.lisp, Up: Lisp [Contents][Index]
drei.lisp (file).
drei-mcclim (system).
Next: drei-mcclim/drawing-options.lisp, Previous: drei-mcclim/drei-clim.lisp, Up: Lisp [Contents][Index]
drei-clim.lisp (file).
drei-mcclim (system).
Next: drei-mcclim/input-editor.lisp, Previous: drei-mcclim/drei-redisplay.lisp, Up: Lisp [Contents][Index]
drei-redisplay.lisp (file).
drei-mcclim (system).
+bold-italic-face-drawing-options+ (special variable).
Next: drei-mcclim/abbrev.lisp, Previous: drei-mcclim/drawing-options.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/kill-ring.lisp, Previous: drei-mcclim/input-editor.lisp, Up: Lisp [Contents][Index]
packages.lisp (file).
drei-mcclim (system).
string-upper-case-p (function).
Next: drei-mcclim/undo.lisp, Previous: drei-mcclim/abbrev.lisp, Up: Lisp [Contents][Index]
packages.lisp (file).
drei-mcclim (system).
push-start-and-copy (function).
Next: drei-mcclim/basic-commands.lisp, Previous: drei-mcclim/kill-ring.lisp, Up: Lisp [Contents][Index]
packages.lisp (file).
drei-mcclim (system).
Next: drei-mcclim/core.lisp, Previous: drei-mcclim/undo.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/fundamental-syntax.lisp, Previous: drei-mcclim/basic-commands.lisp, Up: Lisp [Contents][Index]
drei.lisp (file).
drei-mcclim (system).
Next: drei-mcclim/buffer-streams.lisp, Previous: drei-mcclim/core.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
fundamental-table (class).
Next: drei-mcclim/rectangle.lisp, Previous: drei-mcclim/fundamental-syntax.lisp, Up: Lisp [Contents][Index]
core.lisp (file).
drei-mcclim (system).
buffer-stream (class).
Next: drei-mcclim/targets.lisp, Previous: drei-mcclim/buffer-streams.lisp, Up: Lisp [Contents][Index]
core.lisp (file).
drei-mcclim (system).
Next: drei-mcclim/core-commands.lisp, Previous: drei-mcclim/rectangle.lisp, Up: Lisp [Contents][Index]
core.lisp (file).
drei-mcclim (system).
Next: drei-mcclim/Persistent/persistent-buffer.lisp, Previous: drei-mcclim/targets.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/Persistent/persistent-undo.lisp, Previous: drei-mcclim/core-commands.lisp, Up: Lisp [Contents][Index]
packages.lisp (file).
drei-mcclim (system).
Next: drei-mcclim/misc-commands.lisp, Previous: drei-mcclim/Persistent/persistent-buffer.lisp, Up: Lisp [Contents][Index]
drei-mcclim (system).
Next: drei-mcclim/search-commands.lisp, Previous: drei-mcclim/Persistent/persistent-undo.lisp, Up: Lisp [Contents][Index]
basic-commands.lisp (file).
drei-mcclim (system).
Next: drei-mcclim/lr-syntax.lisp, Previous: