home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / classes / XText.0.9.README < prev   
Encoding:
Text File  |  1995-08-22  |  10.5 KB  |  359 lines

  1. XText 0.9 8/21/95  beta 3
  2.  
  3. Source code for NEXTSTEP 3
  4.  
  5. XText is a subclass of the NEXTSTEP Text Class that lets users and 
  6. developers use keyboard shortcuts (or "hotkeys") to execute complex editing
  7. commands.  XText 0.9 has been designed to work for all versions
  8. of NEXTSTEP 3.0, 3.1, 3.2, and 3.3. 
  9.   
  10. Paul A. Griffin
  11. pgriffin@tiac.net (Mime/text/NextMail welcome)
  12.  
  13. If mail bounces, try pgriffin@venezia.rockefeller.edu (text mail only)
  14. or http://venezia.rockefeller.edu/pgriffin 
  15.  
  16. This is Freeware.  
  17.  
  18. Note:  XText will become obsolete when NEXTSTEP 4 becomes standard
  19. (late 1996 ?).
  20.  
  21. ======================================================================
  22.  
  23. Introduction    
  24.     
  25.     I was unhappy to discover after switching from my NeXTStation to an 
  26.     Intel P5 running NEXTSTEP that XText 0.8 broke.  This is because version
  27.     0.8 uses keyboard specific "key codes". 
  28.     
  29.     XText 0.9 is a hardware independent version of XText, with a few extra
  30.     goodies thrown in for fun.  It uses "character codes", which are
  31.     Adobe/NeXT's generalization of ASCII codes.  XText reads character
  32.     codes from keyboard events and allows the user considerable flexibility
  33.     in redefining keystrokes.  This is achieved by Mike Dixon's remarkable
  34.     "action parsing" code, where text strings are converted into XText method
  35.     calls.
  36.  
  37.     XText 0.8 was written by Mike Dixon:  
  38.     
  39.     Mike Dixon
  40.     Xerox PARC
  41.     3333 Coyote Hill Rd.
  42.     Palo Alto, CA 94304
  43.     mdixon@parc.xerox.com
  44.  
  45.     Much of the discussion below is based on the original XText0.8 
  46.     README file.   Major changes to XText are:
  47.  
  48.     a. An expanded version of XTDemo saves keybinding files,
  49.     and XText reads keybinding files.
  50.     
  51.     b. Hardware independent modifiers:
  52.     
  53.         l = NX_ALPHASHIFTMASK
  54.             Alpha Lock is set and Shift key is NOT* down
  55.         s = NX_SHIFTMASK
  56.             Shift key is down
  57.         c = NX_CONTROLMASK
  58.              Control key is down
  59.         a = NX_ALTERNATEMASK
  60.             Alternate key is down
  61.         m = NX_COMMANDMASK
  62.             Command key is down
  63.         n = NX_NUMERICPADMASK
  64.             Key is on numeric keypad
  65.         h = NX_HELPMASK
  66.             Help Key
  67.  
  68.     c.     Keycodes can be entered by Capitalized HEX
  69.         numbers.
  70.  
  71. COPYRIGHT:
  72.  
  73.     XText (version 0.9 beta3)
  74.     Paul A. Griffin, August 1995 
  75.     No copyright.  (An acknowledgement would be nice though.)
  76.     Use at your own discretion.     
  77.     Based on XText 0.8
  78.  
  79.     XText (version 0.8)
  80.     Mike Dixon, April 1992    
  81.     Copyright (c) 1992 Xerox Corporation.  All rights reserved.
  82.     Use and copying of this software and preparation of derivative works based
  83.     upon this software are permitted.  This software is made available AS IS,
  84.     and Xerox Corporation makes no warranty about the software or its
  85.     performance.
  86.  
  87. Documentation:  
  88.     a. This file 
  89.     b. COPYRIGHT.txt
  90.     c. English.lproj/Help/XText0.8.rtf
  91.     d. English.lproj/Help/XText0.9.rtf
  92.     e. English.lproj/Help/XTDemo.rtfd
  93.     g. XText.subproj/XTAction.h (how to associate keybindings with text)
  94.     h. XText.subproj/XText.h (methods for keybindings)
  95.     i. XText.subproj/README.0.8.rtf (original 0.8 readme file)
  96.  
  97. Basic Concepts
  98.     
  99.     XText lets users execute complex text editing and formating 
  100.     commands by redefining keystrokes.  It does this by letting the
  101.     user associate, for every key, text object methods.  For example, to
  102.      associate the "control a" key with the method
  103.     
  104.         [xtext replaceSel:"Hello World\n"]; 
  105.         
  106.     The user or application programmer constructs a keybinding format
  107.     
  108.         c'a = replaceSel: "Hello World\n"'
  109.  
  110.     XText can parse, in this way, methods with at most two arguments, which
  111.     must be either integers or strings.  XText has an expanded set of useful
  112.     methods, that give users  "emacs like" control over their keystrokes.
  113.     The expanded list is given below.  
  114.     
  115.     XText enables programmers to easily incorporate this keyboard 
  116.     functionality into their applications.   Keybindings can be loaded at
  117.     run time, using an XText method which parses strings of keybindings, or
  118.     (new to version 0.9) a method which reads a file of keybinding strings.
  119.     The file reader method was added to work with the concept of an
  120.     application wrapper.  (Programmers can save keybindings as a file
  121.     in their .app directory.)  
  122.          
  123.           
  124. XText 0.9 methods for keybindings
  125.     
  126.     The following methods were written for easy keybinding
  127.     construction.   All of the cursor-movement methods take a 
  128.     `mode' argument, which may be
  129.  
  130.         0        just move the point to new location
  131.         1        delete to new location
  132.         2        cut to new location
  133.         3        extend selection to new location
  134.  
  135.     The methods for cursor-movement are:
  136.  
  137.     goto:end:mode:        implements all movement; second argument 
  138.         specifies the other end of the selection when mode != 0
  139.  
  140.     moveWord:mode:        move n words forward from point (back if n<0)
  141.  
  142.     moveChar:mode:        move n chars forward from point (back if n<0)
  143.  
  144.     moveLine:mode:        move n lines down from point (up if n<0)
  145.  
  146.     lineBegin:            move to beginning of current line
  147.  
  148.     lineEnd:            move to end of current line
  149.  
  150.     docBegin:            move to beginning of document
  151.  
  152.     docEnd:                move to end of document
  153.  
  154.     collapseSel:        move to beginning of selection (dir<0), end of
  155.         selection (dir>0), or active end of sel (dir=0)
  156.  
  157.     transChars            transpose characters around point
  158.  
  159.     openLine            insert new line after point
  160.  
  161.     scroll::            scroll window n pages + m lines
  162.         
  163.     scrollIfRO::        scroll window n pages + m lines if doc is
  164.         read-only; returns nil if doc is editable
  165.         
  166.     insertChar:            inserts the character associated with a key event
  167.         
  168.     insertNextChar        sets nextAction so that the next key event will be
  169.         interpreted as a character
  170.     
  171. XText 0.9 Methods for c program formatting:
  172.     
  173.     autoIndent
  174.         creates a new line with space and tab indentation
  175.         equal to the current line
  176.         
  177.     match:"LR";
  178.         Finds previous correctly nested matched character L and
  179.         briefly displays it; then prints R.  Useful for "()" "{}"
  180.         and "[]".   
  181.             
  182.     
  183. Character Codes
  184.     
  185.     Keyboard independent character codes which XText 0.9 uses
  186.     are constructed using simple rules.  They can be found in the 
  187.     insertKeyCombination: method of XText (in the file 
  188.     XText.subproj/XText.m).
  189.         
  190.     a. Type the following characters to denote modifier keys:
  191.         c    control key down, 
  192.         s    shift key down, 
  193.         a    alt key down,  
  194.         m    command key down,
  195.         n    a numeric keypad character, on my `101' keyboard, the
  196.              arrow keys and the keypad,
  197.         l     caps-lock  key down,  and shift key NOT pressed,
  198.         h     help key down
  199.         
  200.           Note: Use "l" if you want a character code to 
  201.           be active only if the caps-lock key is down.  Other 
  202.           character codes work with the caps-lock key 
  203.           down or up.
  204.            
  205.     b.    Add the ' (right quote) key to denote the beginning of the 
  206.         actual key.
  207.     
  208.     c.  If the key will print, type it.  
  209.  
  210.     Note:  Alt characters are generally mapped to the 
  211.     upper 127 characters of the Adobe/NeXT extended character
  212.     set.  Being non-ASCII characters, they look unusual. 
  213.     
  214.     d.  If it is a non-printing character like space, tab, or return, type
  215.         its hexadecimal character code.  Character codes are found 
  216.         in Appendix C of the AppKit Documentation (Figure C1).
  217.         
  218.     e. Hexadecimal  codes are denoted by the characters 1-9, A-F.
  219.        (The uppercase in the hex numbering is important.)
  220.  
  221.     f.  If it is a control character, type the key of the character; i.e.
  222.         "control a" = c'a, "control shift A" = cs'A etc.
  223.         
  224. Binding Specifications (Putting it all together)    
  225.     
  226.     A binding spec is a comma separated list of key codes, 
  227.     followed by an equal sign, followed by an action (a method
  228.     above with input data). For example, 
  229.     
  230.     c'w, a'ยช = moveWord:-1 mode:1
  231.     (control w and alt h = delete last word)
  232.     
  233.     Note: If you are testing keys with Edit.app, turn off
  234.     Global Options/Emacs Keybindings to print this character. Otherwise,
  235.     you will delete the last word.
  236.     
  237.     Another example:
  238.     
  239.     c'b=moveChar:-1 mode:0; c'B=moveChar:-1 mode:3
  240.  
  241. Examples
  242.     
  243.     Comment lines in the example files below begin with `#'.  
  244.     The files are in the directory "KeybindingFiles". 
  245.  
  246.     arrow.keys
  247.     emacs.keys
  248.     keypad.keys
  249.     programmer.keys
  250.     readonly.keys
  251.     
  252.  
  253.  
  254. Program Implementation 
  255.     
  256.     1.  Copy the XText subproject into your application.  
  257.     Include the line:
  258.     
  259.     #import "XText.subproj/XText.h" ,
  260.     
  261.     In files that create XText and XTScroller objects. 
  262.     
  263.     2. Occurrences of [Text alloc] must be replaced with [XText alloc].  
  264.     
  265.     If you're using IB to construct your Text objects it currently
  266.     provides no clean way to make a ScrollView containing something
  267.     other than a Text, so there is a support class XTScroller that
  268.     provides just that -- simply replace your ScrollViews with
  269.     XTScroller custom views and the XTexts will be constructed automatically
  270.     These newly-created XText objects will behave just like Text objects; in
  271.     particular, they will have no key bindings.. 
  272.       
  273.         
  274.     3a. Initialize an "action", which stores and parses 
  275.     (interprets strings into method calls) keybindings:
  276.         
  277.     demoAction = [[XTDispatchAction alloc] init];
  278.         
  279.     3b. Or initialize using a default keybinding table:
  280.     
  281.         action = [[XTDispatchAction alloc]
  282.         initBase:NXGetDefaultValue("myApp",
  283.         "KeyBase") estream:nil];
  284.         
  285.         (NOTE: in XText0.9, the emacs table
  286.         has been removed.  The advent of 
  287.         ".app" wrappers in NS 3.0 makes 
  288.         storage of keybindings as files
  289.         in application directories a much
  290.         more elegant approach.  See 4b below.) 
  291.         
  292.     4a. Add any dwrite type user-defined bindings
  293.         
  294.         [action addBindings:
  295.         NXGetDefaultValue("myApp", "KeyString") 
  296.         estream:nil];
  297.  
  298.     4b. Or add any file of user-defined bindings.
  299.     
  300.         [action loadFromFile:
  301.         NXGetDefaultValue("myApp", "KeyFile")     estream:errs];
  302.     
  303.     loads bindings from a file.  Comments are lines in the     
  304.     file beginning with `#'.  This method enables developers 
  305.     to load keybinding files from their .app wrapper directories, via 
  306.  
  307.         [[NXBundle mainBundle] 
  308.             getPath:path 
  309.             forResource:"KeyBindingFiles"
  310.             ofType:""];
  311.  
  312.  
  313.     5.  Attach the action to the text object.
  314.     
  315.     [myXText setInitalAction:action];
  316.     
  317.     6. See XTDemo.app for more example code.
  318.  
  319. The Format of Binding Specifications
  320.         
  321.     The format used to specify bindings is:
  322.  
  323.     A binding spec is a sequence of zero or more bindings,  
  324.     separated by `;'s
  325.  
  326.     A binding is a key spec, followed by an `=', followed by an
  327.      action
  328.  
  329.     A key spec is a sequence of one or more key combinations,
  330.      separated by `,'s
  331.  
  332.     A key combination is a sequence of zero or more modifiers,
  333.      followed by a key
  334.     
  335.     A modifier is 
  336.     c    (control), 
  337.     s    (shift), 
  338.     a    (alt),  
  339.     m    (command),
  340.     n    (numeric keypad),
  341.     l     (caps-lock),
  342.     h     (help key)
  343.     
  344.     A key is a `'' followed by any character (designates the key
  345.      that generates that character), or a 2-digit hex key code, as
  346.      documented  in
  347.         
  348.     NextLibrary/Documentation/NextDev/GeneralRef/
  349.     _ApC_KeyboardEvents/KeyInfo.rtfd
  350.     
  351.     An action is a message, or a sequence of actions separated by
  352.      `;'s and enclosed in `{}'s
  353.     
  354.     A message is something like `moveWord:-1 mode:1'   or 
  355.     `replaceSel: "hi there\n"' (at most two arguments, which must
  356.      be either integers or strings)
  357.     
  358. Paul Griffin, 8/95
  359.