home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / TextSizingExample / FieldAspect.m < prev    next >
Text File  |  1996-04-17  |  12KB  |  260 lines

  1. /*
  2.         FieldAspect.m
  3.         TextSizingExample
  4.  
  5.         Author: Mike Ferris
  6.  
  7.     You may freely copy, distribute and reuse the code in this example.
  8.     NeXT disclaims any warranty of any kind, expressed or implied,
  9.     as to its fitness for any particular use.
  10. */
  11.  
  12. #import "FieldAspect.h"
  13.  
  14. #define DEFAULT_TEXT NSLocalizedString(@"Yellow Curls", @"Default text to initialize the fields in FieldApsect with.")
  15.  
  16. @implementation FieldAspect
  17.  
  18. - (void)dealloc {
  19.     [[NSNotificationCenter defaultCenter] removeObserver:self];
  20.     [leftAlignedTextView setDelegate:nil];
  21.     [centerAlignedTextView setDelegate:nil];
  22.     [rightAlignedTextView setDelegate:nil];
  23.     [scrollingLeftAlignedTextView setDelegate:nil];
  24.     [scrollingCenterAlignedTextView setDelegate:nil];
  25.     [scrollingRightAlignedTextView setDelegate:nil];
  26.     [super dealloc];
  27. }
  28.  
  29. - (NSString *)aspectName {
  30.     return NSLocalizedString(@"Field-like Text", @"Display name for FieldAspect.");
  31. }
  32.  
  33. - (NSString *)aspectNibName {
  34.     return @"FieldAspect";
  35. }
  36.  
  37. - (NSTextView *)makeFieldTextWithAlignment:(NSTextAlignment)alignment inBox:(NSBox *)box knownFrameRect:(NSRect *)knownFrame {
  38.     // Creates and returns a field editor-ish text view which has been added as a subview of the given box and is retained only by the box.
  39.     
  40.     NSRect frame;
  41.     NSTextView *textView;
  42.     NSTextContainer *textContainer;
  43.     NSFont *fieldFont = [NSFont messageFontOfSize:12.0];
  44.  
  45.     // Create the view
  46.     frame = [[box contentView] bounds];
  47.     textView = [[NSTextView allocWithZone:[self zone]] initWithFrame:frame];
  48.     textContainer = [textView textContainer];
  49.  
  50.     // Set up container
  51.     [textContainer setContainerSize:NSMakeSize(LargeNumberForText, NSHeight([textView frame]))];
  52.     [textContainer setWidthTracksTextView:NO];
  53.     [textContainer setHeightTracksTextView:NO];
  54.  
  55.     // Set up text view
  56.     [textView setHorizontallyResizable:YES];
  57.     [textView setVerticallyResizable:NO];
  58.     [textView setMinSize:NSMakeSize((2.0 * [textContainer lineFragmentPadding]), NSHeight(frame))];
  59.     [textView setMaxSize:frame.size];
  60.     if (alignment == NSCenterTextAlignment) {
  61.         [textView setAutoresizingMask:(NSViewMinXMargin | NSViewMaxXMargin)];
  62.     } else if (alignment == NSRightTextAlignment) {
  63.         [textView setAutoresizingMask:NSViewMinXMargin];
  64.     } else {
  65.         // NSLeftTextAlignment
  66.         [textView setAutoresizingMask:NSViewMaxXMargin];
  67.     }
  68.  
  69.     [textView setSelectable:YES];
  70.     [textView setEditable:YES];
  71.     [textView setRichText:NO];
  72.     [textView setImportsGraphics:NO];
  73.     [textView setUsesFontPanel:NO];
  74.     [textView setUsesRuler:NO];
  75.     [textView setDrawsBackground:YES];
  76.     [textView setBackgroundColor:[NSColor textBackgroundColor]];
  77.     [textView setFont:fieldFont];
  78.     [textView setAlignment:alignment];
  79.     [textView setTextColor:[NSColor controlTextColor]];
  80.     [textView setSelectedTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSColor selectedControlTextColor], NSForegroundColorAttributeName, [NSColor selectedTextBackgroundColor], NSBackgroundColorAttributeName, nil]];
  81.     [textView setFieldEditor:YES];
  82.  
  83.     // Add it to the box.
  84.     [box addSubview:textView];
  85.     [[box contentView] setAutoresizesSubviews:YES];
  86.     [textView release];
  87.  
  88.     // Give the field a default value and force layout.
  89.     [textView setString:DEFAULT_TEXT];
  90.     [textView sizeToFit];
  91.  
  92.     // Set up initial state for the unfortunate book keeping we have to do for our resizing text views in order to cause proper display invalidation for their superviews when they shrink.
  93.     *knownFrame = [textView frame];
  94.  
  95.     // Reposition the view if alignment requires it.
  96.     if (alignment == NSCenterTextAlignment) {
  97.         [textView setFrameOrigin:NSMakePoint((NSMidX(frame) - (NSWidth(*knownFrame) / 2.0)), NSMinY(frame))];
  98.     } else if (alignment == NSRightTextAlignment) {
  99.         [textView setFrameOrigin:NSMakePoint((NSMaxX(frame) - NSWidth(*knownFrame)), NSMinY(frame))];
  100.     }
  101.  
  102.     // Register for frame changes.
  103.     [textView setDelegate:self];
  104.     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textViewFrameChanged:) name:NSViewFrameDidChangeNotification object:textView];
  105.  
  106.     return textView;
  107. }
  108.  
  109. - (NSTextView *)makeScrollingFieldTextWithAlignment:(NSTextAlignment)alignment inBox:(NSBox *)box {
  110.     // Creates and returns a field editor-ish text view which has been added as a subview of the given box and is retained only by the box.
  111.  
  112.     NSRect frame;
  113.     NSClipView *clipView;
  114.     NSTextView *textView;
  115.     NSFont *fieldFont = [NSFont messageFontOfSize:12.0];
  116.     NSTextContainer *textContainer;
  117.  
  118.     // Create the clip view and add it to the box
  119.     frame = [[box contentView] bounds];
  120.     clipView = [[NSClipView allocWithZone:[self zone]] initWithFrame:frame];
  121.     [clipView setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
  122.     [clipView setBackgroundColor:[NSColor textBackgroundColor]];
  123.     [box addSubview:clipView];
  124.     [[box contentView] setAutoresizesSubviews:YES];
  125.     [clipView release];
  126.  
  127.     // Create the text view
  128.     textView = [[NSTextView allocWithZone:[self zone]] initWithFrame:frame];
  129.     textContainer = [textView textContainer];
  130.  
  131.     // Set up container
  132.     [textContainer setContainerSize:NSMakeSize(LargeNumberForText, NSHeight([textView frame]))];
  133.     [textContainer setWidthTracksTextView:NO];
  134.     [textContainer setHeightTracksTextView:NO];
  135.  
  136.     // Set up text view
  137.     [textView setHorizontallyResizable:YES];
  138.     [textView setVerticallyResizable:NO];
  139.     [textView setMinSize:frame.size];
  140.     [textView setMaxSize:NSMakeSize(LargeNumberForText, NSHeight(frame))];
  141.     [textView setAutoresizingMask:NSViewNotSizable];
  142.  
  143.     [textView setSelectable:YES];
  144.     [textView setEditable:YES];
  145.     [textView setRichText:NO];
  146.     [textView setImportsGraphics:NO];
  147.     [textView setUsesFontPanel:NO];
  148.     [textView setUsesRuler:NO];
  149.     [textView setDrawsBackground:YES];
  150.     [textView setBackgroundColor:[NSColor textBackgroundColor]];
  151.     [textView setFont:fieldFont];
  152.     [textView setAlignment:alignment];
  153.     [textView setTextColor:[NSColor controlTextColor]];
  154.     [textView setSelectedTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[NSColor selectedControlTextColor], NSForegroundColorAttributeName, [NSColor selectedTextBackgroundColor], NSBackgroundColorAttributeName, nil]];
  155.     [textView setFieldEditor:YES];
  156.  
  157.     // Add text view to the clipView.
  158.     [clipView setDocumentView:textView];
  159.     [clipView setAutoresizesSubviews:NO];
  160.     [textView release];
  161.  
  162.     // Give the field a default value and force layout.
  163.     [textView setString:DEFAULT_TEXT];
  164.     [textView sizeToFit];
  165.  
  166.     // We need to be the delegate.
  167.     [textView setDelegate:self];
  168.  
  169.     return textView;
  170. }
  171.  
  172. - (void)didLoadNib {
  173.     // Make all the fields.
  174.     leftAlignedTextView = [self makeFieldTextWithAlignment:NSLeftTextAlignment inBox:leftAlignedBox knownFrameRect:&leftTVKnownFrame];
  175.     centerAlignedTextView = [self makeFieldTextWithAlignment:NSCenterTextAlignment inBox:centerAlignedBox knownFrameRect:¢erTVKnownFrame];
  176.     rightAlignedTextView = [self makeFieldTextWithAlignment:NSRightTextAlignment inBox:rightAlignedBox knownFrameRect:&rightTVKnownFrame];
  177.     scrollingLeftAlignedTextView = [self makeScrollingFieldTextWithAlignment:NSLeftTextAlignment inBox:scrollingLeftAlignedBox];
  178.     scrollingCenterAlignedTextView = [self makeScrollingFieldTextWithAlignment:NSCenterTextAlignment inBox:scrollingCenterAlignedBox];
  179.     scrollingRightAlignedTextView = [self makeScrollingFieldTextWithAlignment:NSRightTextAlignment inBox:scrollingRightAlignedBox];
  180.  
  181.     // Set up a tab order (which we will have to handle ourselves in the textDidEndEditing: notification).
  182.     [leftAlignedTextView setNextKeyView:centerAlignedTextView];
  183.     [centerAlignedTextView setNextKeyView:rightAlignedTextView];
  184.     [rightAlignedTextView setNextKeyView:scrollingLeftAlignedTextView];
  185.     [scrollingLeftAlignedTextView setNextKeyView:scrollingCenterAlignedTextView];
  186.     [scrollingCenterAlignedTextView setNextKeyView:scrollingRightAlignedTextView];
  187.     [scrollingRightAlignedTextView setNextKeyView:leftAlignedTextView];
  188. }
  189.  
  190. - (void)textViewFrameChanged:(NSNotification *)notification {
  191.     NSTextView *textView = [notification object];
  192.     NSRect *knownFrame = NULL;
  193.     NSRect newFrame = [textView frame];
  194.     
  195.     if (textView == leftAlignedTextView) {
  196.         knownFrame = &leftTVKnownFrame;
  197.     } else if (textView == centerAlignedTextView) {
  198.         NSRect contentBounds = [[centerAlignedBox contentView] bounds];
  199.         NSRect textViewFrame = [textView frame];
  200.  
  201.         [textView setFrameOrigin:NSMakePoint((NSMidX(contentBounds) - (NSWidth(textViewFrame) / 2.0)), NSMinY(textViewFrame))];
  202.         knownFrame = ¢erTVKnownFrame;
  203.     } else if (textView == rightAlignedTextView) {
  204.         NSRect contentBounds = [[rightAlignedBox contentView] bounds];
  205.         NSRect textViewFrame = [textView frame];
  206.  
  207.         [textView setFrameOrigin:NSMakePoint((NSMaxX(contentBounds) - NSWidth(textViewFrame)), NSMinY(textViewFrame))];
  208.         knownFrame = &rightTVKnownFrame;
  209.     }
  210.  
  211.     // Check to see if we shrunk.  If we did, our superview will need some redrawing.  NSView should do this itself, but it doesn't in 4.0.
  212.     if (knownFrame) {
  213.         if (NSWidth(*knownFrame) > NSWidth(newFrame)) {
  214.             // This isn't exactly general code for invalidating the areas we've exposed, but since we know something about the way it happens, we can make a few assumptions.  We know that only the width is changing.  We also know, based on the alignment exactly how the origin is moving based on the size differences.  In other applications these assumptions might not hold.
  215.             float widthChange = NSWidth(*knownFrame) - NSWidth(newFrame);
  216.             switch ([textView alignment]) {
  217.                 case NSCenterTextAlignment:
  218.                     [[textView superview] setNeedsDisplayInRect:NSMakeRect(NSMinX(newFrame) - (widthChange / 2.0), NSMinY(newFrame), widthChange / 2.0, NSHeight(newFrame))];
  219.                     [[textView superview] setNeedsDisplayInRect:NSMakeRect(NSMaxX(newFrame), NSMinY(newFrame), widthChange / 2.0, NSHeight(newFrame))];
  220.                     break;
  221.                 case NSRightTextAlignment:
  222.                     [[textView superview] setNeedsDisplayInRect:NSMakeRect(NSMinX(newFrame) - widthChange, NSMinY(newFrame), widthChange, NSHeight(newFrame))];
  223.                     break;
  224.                 case NSLeftTextAlignment:
  225.                 default:
  226.                     [[textView superview] setNeedsDisplayInRect:NSMakeRect(NSMaxX(newFrame), NSMinY(newFrame), widthChange, NSHeight(newFrame))];
  227.                     break;
  228.             }
  229.         }
  230.         // Remember the frame for next time.
  231.         *knownFrame = newFrame;
  232.     }
  233. }
  234.  
  235. - (void)textDidEndEditing:(NSNotification *)notification {
  236.     NSTextView *text = [notification object];
  237.     unsigned whyEnd = [[[notification userInfo] objectForKey:@"NSTextMovement"] unsignedIntValue];
  238.     NSTextView *newKeyView = text;
  239.  
  240.     // Unscroll the previous text.
  241.     [text scrollRangeToVisible:NSMakeRange(0, 0)];
  242.     
  243.     if (whyEnd == NSTabTextMovement) {
  244.         newKeyView = (NSTextView *)[text nextKeyView];
  245.     } else if (whyEnd == NSBacktabTextMovement) {
  246.         newKeyView = (NSTextView *)[text previousKeyView];
  247.     }
  248.  
  249.     // Set the new key view and select its whole contents. 
  250.     [[text window] makeFirstResponder:newKeyView];
  251.     [newKeyView setSelectedRange:NSMakeRange(0, [[newKeyView textStorage] length])];
  252. }
  253.  
  254. - (void)didSwapIn {
  255.     [[leftAlignedTextView window] makeFirstResponder:leftAlignedTextView];
  256.     [leftAlignedTextView setSelectedRange:NSMakeRange(0, [[leftAlignedTextView textStorage] length])];
  257. }
  258.  
  259. @end
  260.