Skip to content
Snippets Groups Projects
Forked from mcclim / clim-tos
Source project has a limited visibility.
  • colin's avatar
    f944ffd4
    Makefile · f944ffd4
    colin authored
    misc/dump.lisp
    - added DUMP-CLIM and sys::*clim-dump-name* - support for dumping a
      clim image somewhere other than /tmp
    
    clim/output-protocol.lisp
    - engraft-medium :after changes text-style only if not already set
    
    demo/demo-driver.lisp
    - added :force argument to start-demo
    
    silica/classes.lisp
    - wrapped a print-unreadable-object around print-object method for
      window-event
    
    silica/medium.lisp
    - initform for text-style in foreground-background-and-text-style-mixin
      changed from *default-text-style* to nil (#+allegro)
    
    test/test-suite.lisp
    - changed "Colored patterns" test to draw a different polygon so that
      pattern used as ink is visible (and not clipped out of existance as
      before)
    
    tk/foreign.lisp
    - added functions display-database and get-application-name-and-class
    
    tk/xt-defs.lisp
    tk/make-classes.lisp
    - changed class x-resource to xt-resource and all references
    
    tk/resources.lisp
    - added a convert-resource-in for 'alignment
    
    tk/widget.lisp
    - app-create-shell sets up application name and class as "clim", "Clim"
    - initialize-toolkit passes on initargs to app-create-shell
    - added functions xt-name and  xt-class
    - added function widget-resource-name-and-class
    
    tk/xlib.lisp
    - added class resource-database
    - added functions get-resource and convert-string
    - added parse-color
    
    tk/xt-defs.lisp
    - removed xrm-resource and xrm-resource-array
    - changed x-resource to xt-resource
    
    tk/xt-funs.lisp
    - added xt_database, xt_get_application_name_and_class,
      xt_convert_and_store, xt_name and xt_class
    
    xtk.lisp removed (no longer used)
    
    tk-silica/xm-frames.lisp
    - realize-mirror :around method on menu-bar queries textStyle resource
    
    tk-silica/xm-gadgets.lisp
    - removed make-pane-class method on scroller-pane and put it in
      main make-pane-class method on motif-frame-manager
    - find-widget-class-and-initargs-for-sheet on xm-viewport sets up
      :name resource
    
    tk-silica/xt-gadgets.lisp
    - find-widget-class-and-initargs-for-sheet :around method on
      foreground-background-and-text-style-mixin queries textStyle
      resource
    
    tk-silica/xt-graphics.lisp
    - find-named-color uses parse-color rather than lookup-color (so that
      #rgb works - in R5 should be able to use lookup-color again)
    - changed refs to tk::x-colormap-error to tk::x-colormap-full
    - changed text-style-{width,height,ascent,descent} to specialize on
      (text-style t) rather than standard-text-style. This makes them work
      for device-fonts.
    - added decode-contrasting-ink (avoids some code duplication)
    - on monochrome made luminosity == 0.5 decode to white rather than
      black (makes contrasting ink work better)
    
    tk-silica/xt-silica.lisp
    - added a bunch of define-xt-keysyms and fixed some wrong ones
    - removed default-from-mirror-resources
    - added default-from-resources - queries the resource database to get
      background, foreground and text-style
    f944ffd4
    History
    Makefile
    colin authored
    misc/dump.lisp
    - added DUMP-CLIM and sys::*clim-dump-name* - support for dumping a
      clim image somewhere other than /tmp
    
    clim/output-protocol.lisp
    - engraft-medium :after changes text-style only if not already set
    
    demo/demo-driver.lisp
    - added :force argument to start-demo
    
    silica/classes.lisp
    - wrapped a print-unreadable-object around print-object method for
      window-event
    
    silica/medium.lisp
    - initform for text-style in foreground-background-and-text-style-mixin
      changed from *default-text-style* to nil (#+allegro)
    
    test/test-suite.lisp
    - changed "Colored patterns" test to draw a different polygon so that
      pattern used as ink is visible (and not clipped out of existance as
      before)
    
    tk/foreign.lisp
    - added functions display-database and get-application-name-and-class
    
    tk/xt-defs.lisp
    tk/make-classes.lisp
    - changed class x-resource to xt-resource and all references
    
    tk/resources.lisp
    - added a convert-resource-in for 'alignment
    
    tk/widget.lisp
    - app-create-shell sets up application name and class as "clim", "Clim"
    - initialize-toolkit passes on initargs to app-create-shell
    - added functions xt-name and  xt-class
    - added function widget-resource-name-and-class
    
    tk/xlib.lisp
    - added class resource-database
    - added functions get-resource and convert-string
    - added parse-color
    
    tk/xt-defs.lisp
    - removed xrm-resource and xrm-resource-array
    - changed x-resource to xt-resource
    
    tk/xt-funs.lisp
    - added xt_database, xt_get_application_name_and_class,
      xt_convert_and_store, xt_name and xt_class
    
    xtk.lisp removed (no longer used)
    
    tk-silica/xm-frames.lisp
    - realize-mirror :around method on menu-bar queries textStyle resource
    
    tk-silica/xm-gadgets.lisp
    - removed make-pane-class method on scroller-pane and put it in
      main make-pane-class method on motif-frame-manager
    - find-widget-class-and-initargs-for-sheet on xm-viewport sets up
      :name resource
    
    tk-silica/xt-gadgets.lisp
    - find-widget-class-and-initargs-for-sheet :around method on
      foreground-background-and-text-style-mixin queries textStyle
      resource
    
    tk-silica/xt-graphics.lisp
    - find-named-color uses parse-color rather than lookup-color (so that
      #rgb works - in R5 should be able to use lookup-color again)
    - changed refs to tk::x-colormap-error to tk::x-colormap-full
    - changed text-style-{width,height,ascent,descent} to specialize on
      (text-style t) rather than standard-text-style. This makes them work
      for device-fonts.
    - added decode-contrasting-ink (avoids some code duplication)
    - on monochrome made luminosity == 0.5 decode to white rather than
      black (makes contrasting ink work better)
    
    tk-silica/xt-silica.lisp
    - added a bunch of define-xt-keysyms and fixed some wrong ones
    - removed default-from-mirror-resources
    - added default-from-resources - queries the resource database to get
      background, foreground and text-style