home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / AdobeExamples / NX_StrAdj / StrokeView.h < prev    next >
Text File  |  1993-01-19  |  2KB  |  77 lines

  1.  
  2. /*
  3.  * (a)  (C) 1990 by Adobe Systems Incorporated. All rights reserved.
  4.  *
  5.  * (b)  If this Sample Code is distributed as part of the Display PostScript
  6.  *    System Software Development Kit from Adobe Systems Incorporated,
  7.  *    then this copy is designated as Development Software and its use is
  8.  *    subject to the terms of the License Agreement attached to such Kit.
  9.  *
  10.  * (c)  If this Sample Code is distributed independently, then the following
  11.  *    terms apply:
  12.  *
  13.  * (d)  This file may be freely copied and redistributed as long as:
  14.  *    1) Parts (a), (d), (e) and (f) continue to be included in the file,
  15.  *    2) If the file has been modified in any way, a notice of such
  16.  *      modification is conspicuously indicated.
  17.  *
  18.  * (e)  PostScript, Display PostScript, and Adobe are registered trademarks of
  19.  *    Adobe Systems Incorporated.
  20.  * 
  21.  * (f) THE INFORMATION BELOW IS FURNISHED AS IS, IS SUBJECT TO
  22.  *    CHANGE WITHOUT NOTICE, AND SHOULD NOT BE CONSTRUED
  23.  *    AS A COMMITMENT BY ADOBE SYSTEMS INCORPORATED.
  24.  *    ADOBE SYSTEMS INCORPORATED ASSUMES NO RESPONSIBILITY
  25.  *    OR LIABILITY FOR ANY ERRORS OR INACCURACIES, MAKES NO
  26.  *    WARRANTY OF ANY KIND (EXPRESS, IMPLIED OR STATUTORY)
  27.  *    WITH RESPECT TO THIS INFORMATION, AND EXPRESSLY
  28.  *    DISCLAIMS ANY AND ALL WARRANTIES OF MERCHANTABILITY, 
  29.  *    FITNESS FOR PARTICULAR PURPOSES AND NONINFRINGEMENT
  30.  *    OF THIRD PARTY RIGHTS.
  31.  */
  32.  
  33. /*
  34.  *    StrokeView.h
  35.  *
  36.  *    This class, a subclass of view, contains the methods to draw horizontal, verticle and
  37.  *    diagonal lines with stroke adjustment turned on and turned off.  
  38.  *
  39.  *    Version:    2.0
  40.  *    Author:    John-Henry Gross, Ken Fromm
  41.  *    History:
  42.  *            03-07-91        Added this comment.
  43.  */
  44.  
  45. #import <appkit/View.h>
  46. #define BACKGROUND        1.0
  47. #define BORDERWIDTH    2.0
  48. #define BORDERCOLOR    0.0
  49. #define LINECOLOR        0.0
  50.  
  51. #define NUMLINESHORIZ    22
  52. #define NUMLINESVERT    21
  53. #define NUMARCS        10
  54. #define DIAGDEGS        10
  55.  
  56. @interface StrokeView:View
  57. {    
  58.     id        timeDisplay, fieldWidth, matrixLineTypes;
  59.     
  60.     BOOL    strokeAdjustment;
  61. }
  62.  
  63. + newFrame:(NXRect *) frm;
  64. - free;
  65.  
  66. /* Used to obtain the ids of certain objects for messaging from StrokeView.m. */
  67. - setTimeDisplay:anObject;
  68. - setFieldWidth:anObject;
  69. - setMatrixLineTypes:anObject;
  70.  
  71. - setStrokeAdjustment:(BOOL) strokeAdjValue;
  72.  
  73. /* Draws the background, the border and the horizontal, verticle and diagonal lines. */
  74. - drawSelf:(NXRect *)r :(int) count;
  75.  
  76. @end
  77.