Changeset 765


Ignore:
Timestamp:
Apr 7, 2004, 8:46:29 PM (21 years ago)
Author:
Gary Byers
Message:

Defaults changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/examples/cocoa-listener.lisp

    r749 r765  
    77  (require "PTY"))
    88
    9 (def-cocoa-default *listener-rows* :int 16)
    10 (def-cocoa-default *listener-columns* :int 80)
    11 
    12 (def-cocoa-default *listener-background-red-component* :float 0.90f0)
    13 (def-cocoa-default *listener-background-green-component* :float 0.90f0)
    14 (def-cocoa-default *listener-background-blue-component* :float 0.90f0)
    15 (def-cocoa-default *listener-background-alpha-component* :float 1.0f0)
     9(def-cocoa-default *listener-rows* :int 16 "Initial height of listener windows, in characters")
     10(def-cocoa-default *listener-columns* :int 80 "Initial height of listener windows, in characters")
     11
     12(def-cocoa-default *listener-background-red-component* :float 0.90f0 "Red component of editor background color.  Should be a float between 0.0 and 1.0, inclusive.")
     13(def-cocoa-default *listener-background-green-component* :float 0.90f0 "Green component of editor background color.  Should be a float between 0.0 and 1.0, inclusive.")
     14(def-cocoa-default *listener-background-blue-component* :float 0.90f0 "Blue component of editor background color.  Should be a float between 0.0 and 1.0, inclusive.")
     15(def-cocoa-default *listener-background-alpha-component* :float 1.0f0 "Red component of editor background color.  Should be a float between 0.0 and 1.0, inclusive.")
    1616
    1717;;; Setup the server end of a pty pair.
Note: See TracChangeset for help on using the changeset viewer.