home *** CD-ROM | disk | FTP | other *** search
/ Merciful 1 / Merciful - Disc 1.iso / software / a / asm_one / asm-onev1.25a.dms / in.adf / Release3.1 / AutoDocs3.1.lha / doc / text_dtc.doc < prev    next >
Encoding:
Text File  |  1993-08-12  |  2.3 KB  |  95 lines

  1. TABLE OF CONTENTS
  2.  
  3. text.datatype/text.datatype
  4. text.datatype/text.datatype                       text.datatype/text.datatype
  5.  
  6.     NAME
  7.     text.datatype -- Root data type for text.
  8.  
  9.     FUNCTION
  10.     The text.datatype is the super-class for any text related classes.
  11.  
  12.     METHODS
  13.     OM_NEW -- Create a new text object.
  14.  
  15.     OM_GET -- Obtain the value of an attribute.
  16.  
  17.     OM_SET -- Set the values of multiple attributes.
  18.  
  19.     OM_UPDATE -- Update the values of multiple attributes.
  20.  
  21.     OM_DISPOSE -- Dispose of a text object.
  22.  
  23.     GM_LAYOUT -- Layout the object and notify the application of the
  24.         title and size.
  25.  
  26.     GM_HITTEST -- Determine if the object has been hit with the
  27.         mouse.
  28.  
  29.     GM_GOACTIVE -- Tell the object to go active.
  30.  
  31.     GM_HANDLEINPUT -- Handle input.
  32.  
  33.     GM_RENDER -- Cause the text to render.
  34.  
  35.     DTM_PROCLAYOUT -- Layout (remap) the text on the application's
  36.         process.
  37.  
  38.     DTM_FRAMEBOX -- Obtain the display environment that the text
  39.         requires.
  40.  
  41.     DTM_SELECT -- Select an area in the text.
  42.  
  43.     DTM_CLEARSELECTED -- Deselect the selected area of the text.
  44.  
  45.     DTM_COPY -- Copy the selected area of the text to the clipboard
  46.         as FTXT.  If no area is selected, then the entire text
  47.         is copied.
  48.  
  49.     DTM_PRINT -- Print the selected area of the text.  If no area
  50.         is selected, then the entire text is printed.
  51.  
  52.     DTM_WRITE -- Write the selected area of the text to a file.
  53.         If no area is selected, then the entire text is saved.
  54.  
  55.     TAGS
  56.     DTA_TextAttr (struct TextAttr *) -- Text attribute to use for
  57.         the text.
  58.  
  59.         Applicability is (ISG).
  60.  
  61.     DTA_TextFont (struct TextFont *) -- Text font to use for
  62.         the text.
  63.  
  64.         Applicability is (G).
  65.  
  66.     TDTA_Buffer (STRPTR) -- Pointer to the text data.
  67.  
  68.         Applicability is (ISG).
  69.  
  70.     TDTA_BufferLen (ULONG) -- Length of text data.
  71.  
  72.         Applicability is (ISG).
  73.  
  74.     TDTA_LineList (struct List *) -- List of lines.  The elements
  75.         of the list are Line structures (see <datatype/textclass.h>
  76.  
  77.         Applicability is (G).
  78.  
  79.     TDTA_WordSelect (STRPTR) -- Word that has been double-clicked on.
  80.  
  81.         Applicability is (NU).
  82.  
  83.     TDTA_WordDelim (STRPTR) -- Characters used deliminate words.
  84.  
  85.         Applicability is (IS).
  86.  
  87.     TDTA_WordWrap (BOOL) -- Used to turn word wrap on and off.
  88.         Defaults to off.
  89.  
  90.         Applicability is (ISG).
  91.  
  92.     SEE ALSO
  93.     ascii.datatype
  94.  
  95.