#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 04 Nov 2016 16:33:55 +0100
changeset 7669 88df7c0efebf
parent 7668 7d36ebfb49c9
child 7670 1192fb865378
#DOCUMENTATION by cg class: Cursor comment/format in: #documentation
Cursor.st
--- a/Cursor.st	Fri Nov 04 16:29:44 2016 +0100
+++ b/Cursor.st	Fri Nov 04 16:33:55 2016 +0100
@@ -50,37 +50,37 @@
     I represents cursors in a device independent manner.
     Normally, cursors are defined at view creation time,
     via 
-	'aView cursor:aCursor'.
+        'aView cursor:aCursor'.
 
     [Instance variables:]
 
-	shape           <Symbol>        a shape (i.e. #arrow, #hand, ...) or nil
-	sourceForm      <Form>          if shape is nil, the source bits
-	maskForm        <Form>          if shape is nil, the mask bits
-	hotX            <SmallInteger>  if shape is nil, the hotSpot x of the cursor
-	hotY            <SmallInteger>  if shape is nil, the hotSpot y of the cursor
-	device          <aDevice>       the device, if associated to one
-	cursorId        <anObject>      the device-specific id if device is nonNil
+        shape           <Symbol>        a shape (i.e. #arrow, #hand, ...) or nil
+        sourceForm      <Form>          if shape is nil, the source bits
+        maskForm        <Form>          if shape is nil, the mask bits
+        hotX            <SmallInteger>  if shape is nil, the hotSpot x of the cursor
+        hotY            <SmallInteger>  if shape is nil, the hotSpot y of the cursor
+        device          <aDevice>       the device, if associated to one
+        cursorId        <anObject>      the device-specific id if device is nonNil
 
     [class variables:]
 
-	Lobby           <Registry>      keeps track of known device cursors
-					(dont use it: this will be moved to the device)
-
-	DefaultFgColor  <Color>         default foreground color for cursors (usually black)
-	DefaultBgColor  <Color>         default background color for cursors (usually white)
-
-	NormalCursor    <Cursor>        cached instance of normal (arrow) cursor
-	 ...
+        Lobby           <Registry>      keeps track of known device cursors
+                                        (don't use it: this will be moved to the device)
+
+        DefaultFgColor  <Color>         default foreground color for cursors (usually black)
+        DefaultBgColor  <Color>         default background color for cursors (usually white)
+
+        NormalCursor    <Cursor>        cached instance of normal (arrow) cursor
+         ...
 
     [see also:]
-	DeviceWorkstation 
-	DisplaySurface
-	Font Color Image Form
-	( introduction to view programming :html: programming/viewintro.html#CURSOR )
+        DeviceWorkstation 
+        DisplaySurface
+        Font Color Image Form
+        ( introduction to view programming :html: programming/viewintro.html#CURSOR )
 
     [author:]
-	Claus Gittinger
+        Claus Gittinger
 "
 !