Update 'gfw' on Cmd--/Cmd-+
[MacVim.git] / src / MacVim / MMAtsuiTextView.m
blob269e773d5fe265e42fbe45234a7f894ade58d557
1 /* vi:set ts=8 sts=4 sw=4 ft=objc:
2  *
3  * VIM - Vi IMproved            by Bram Moolenaar
4  *                              MacVim GUI port by Bjorn Winckler
5  *
6  * Do ":help uganda"  in Vim to read copying and usage conditions.
7  * Do ":help credits" in Vim to see a list of people who contributed.
8  * See README.txt for an overview of the Vim source code.
9  */
11  * MMAtsuiTextView
12  *
13  * Dispatches keyboard and mouse input to the backend.  Handles drag-n-drop of
14  * files onto window.  The rendering is done using ATSUI.
15  *
16  * The text view area consists of two parts:
17  *   1. The text area - this is where text is rendered; the size is governed by
18  *      the current number of rows and columns.
19  *   2. The inset area - this is a border around the text area; the size is
20  *      governed by the user defaults MMTextInset[Left|Right|Top|Bottom].
21  *
22  * The current size of the text view frame does not always match the desired
23  * area, i.e. the area determined by the number of rows, columns plus text
24  * inset.  This distinction is particularly important when the view is being
25  * resized.
26  */
28 #import "MMAppController.h"
29 #import "MMAtsuiTextView.h"
30 #import "MMTextViewHelper.h"
31 #import "MMVimController.h"
32 #import "MMWindowController.h"
33 #import "Miscellaneous.h"
36 // TODO: What does DRAW_TRANSP flag do?  If the background isn't drawn when
37 // this flag is set, then sometimes the character after the cursor becomes
38 // blank.  Everything seems to work fine by just ignoring this flag.
39 #define DRAW_TRANSP               0x01    /* draw with transparant bg */
40 #define DRAW_BOLD                 0x02    /* draw bold text */
41 #define DRAW_UNDERL               0x04    /* draw underline text */
42 #define DRAW_UNDERC               0x08    /* draw undercurl text */
43 #define DRAW_ITALIC               0x10    /* draw italic text */
44 #define DRAW_CURSOR               0x20
46 #define kUnderlineOffset            (-2)
47 #define kUnderlineHeight            1
48 #define kUndercurlHeight            2
49 #define kUndercurlOffset            (-2)
50 #define kUndercurlDotWidth          2
51 #define kUndercurlDotDistance       2
54 @interface NSFont (AppKitPrivate)
55 - (ATSUFontID) _atsFontID;
56 @end
59 @interface MMAtsuiTextView (Private)
60 - (void)initAtsuStyles;
61 - (void)disposeAtsuStyles;
62 - (void)updateAtsuStyles;
63 - (MMWindowController *)windowController;
64 - (MMVimController *)vimController;
65 @end
68 @interface MMAtsuiTextView (Drawing)
69 - (NSPoint)originForRow:(int)row column:(int)column;
70 - (NSRect)rectFromRow:(int)row1 column:(int)col1
71                 toRow:(int)row2 column:(int)col2;
72 - (NSSize)textAreaSize;
73 - (void)resizeContentImage;
74 - (void)beginDrawing;
75 - (void)endDrawing;
76 - (void)drawString:(UniChar *)string length:(UniCharCount)length
77              atRow:(int)row column:(int)col cells:(int)cells
78          withFlags:(int)flags foregroundColor:(NSColor *)fg
79    backgroundColor:(NSColor *)bg specialColor:(NSColor *)sp;
80 - (void)deleteLinesFromRow:(int)row lineCount:(int)count
81               scrollBottom:(int)bottom left:(int)left right:(int)right
82                      color:(NSColor *)color;
83 - (void)insertLinesAtRow:(int)row lineCount:(int)count
84             scrollBottom:(int)bottom left:(int)left right:(int)right
85                    color:(NSColor *)color;
86 - (void)clearBlockFromRow:(int)row1 column:(int)col1 toRow:(int)row2
87                    column:(int)col2 color:(NSColor *)color;
88 - (void)clearAll;
89 - (void)drawInsertionPointAtRow:(int)row column:(int)col shape:(int)shape
90                        fraction:(int)percent;
91 - (void)drawInvertedRectAtRow:(int)row column:(int)col numRows:(int)nrows
92                    numColumns:(int)ncols;
93 @end
97     static float
98 defaultLineHeightForFont(NSFont *font)
100     // HACK: -[NSFont defaultLineHeightForFont] is deprecated but since the
101     // ATSUI renderer does not use NSLayoutManager we create one temporarily.
102     NSLayoutManager *lm = [[NSLayoutManager alloc] init];
103     float height = [lm defaultLineHeightForFont:font];
104     [lm release];
106     return height;
109 @implementation MMAtsuiTextView
111 - (id)initWithFrame:(NSRect)frame
113     if (!(self = [super initWithFrame:frame]))
114         return nil;
116     // NOTE!  It does not matter which font is set here, Vim will set its
117     // own font on startup anyway.  Just set some bogus values.
118     font = [[NSFont userFixedPitchFontOfSize:0] retain];
119     ascender = 0;
120     cellSize.width = cellSize.height = 1;
121     contentImage = nil;
122     imageSize = NSZeroSize;
123     insetSize = NSZeroSize;
125     // NOTE: If the default changes to 'NO' then the intialization of
126     // p_antialias in option.c must change as well.
127     antialias = YES;
129     helper = [[MMTextViewHelper alloc] init];
130     [helper setTextView:self];
132     [self initAtsuStyles];
134     [self registerForDraggedTypes:[NSArray arrayWithObjects:
135             NSFilenamesPboardType, NSStringPboardType, nil]];
137     return self;
140 - (void)dealloc
142     LOG_DEALLOC
144     [self disposeAtsuStyles];
145     [font release];  font = nil;
146     [defaultBackgroundColor release];  defaultBackgroundColor = nil;
147     [defaultForegroundColor release];  defaultForegroundColor = nil;
149     [helper setTextView:nil];
150     [helper dealloc];  helper = nil;
152     [super dealloc];
155 - (int)maxRows
157     return maxRows;
160 - (int)maxColumns
162     return maxColumns;
165 - (void)getMaxRows:(int*)rows columns:(int*)cols
167     if (rows) *rows = maxRows;
168     if (cols) *cols = maxColumns;
171 - (void)setMaxRows:(int)rows columns:(int)cols
173     // NOTE: Just remember the new values, the actual resizing is done lazily.
174     maxRows = rows;
175     maxColumns = cols;
178 - (void)setDefaultColorsBackground:(NSColor *)bgColor
179                         foreground:(NSColor *)fgColor
181     if (defaultBackgroundColor != bgColor) {
182         [defaultBackgroundColor release];
183         defaultBackgroundColor = bgColor ? [bgColor retain] : nil;
184     }
186     if (defaultForegroundColor != fgColor) {
187         [defaultForegroundColor release];
188         defaultForegroundColor = fgColor ? [fgColor retain] : nil;
189     }
192 - (NSColor *)defaultBackgroundColor
194     return defaultBackgroundColor;
197 - (NSColor *)defaultForegroundColor
199     return defaultForegroundColor;
202 - (void)setTextContainerInset:(NSSize)size
204     insetSize = size;
207 - (NSRect)rectForRowsInRange:(NSRange)range
209     NSRect rect = { 0, 0, 0, 0 };
210     unsigned start = range.location > maxRows ? maxRows : range.location;
211     unsigned length = range.length;
213     if (start + length > maxRows)
214         length = maxRows - start;
216     rect.origin.y = cellSize.height * start + insetSize.height;
217     rect.size.height = cellSize.height * length;
219     return rect;
222 - (NSRect)rectForColumnsInRange:(NSRange)range
224     NSRect rect = { 0, 0, 0, 0 };
225     unsigned start = range.location > maxColumns ? maxColumns : range.location;
226     unsigned length = range.length;
228     if (start+length > maxColumns)
229         length = maxColumns - start;
231     rect.origin.x = cellSize.width * start + insetSize.width;
232     rect.size.width = cellSize.width * length;
234     return rect;
238 - (void)setFont:(NSFont *)newFont
240     if (newFont && font != newFont) {
241         [font release];
242         font = [newFont retain];
243         ascender = roundf([font ascender]);
245         float em = [@"m" sizeWithAttributes:
246                 [NSDictionary dictionaryWithObject:newFont
247                                             forKey:NSFontAttributeName]].width;
248         float cellWidthMultiplier = [[NSUserDefaults standardUserDefaults]
249                 floatForKey:MMCellWidthMultiplierKey];
251         // NOTE! Even though NSFontFixedAdvanceAttribute is a float, it will
252         // only render at integer sizes.  Hence, we restrict the cell width to
253         // an integer here, otherwise the window width and the actual text
254         // width will not match.
255         cellSize.width = ceilf(em * cellWidthMultiplier);
256         cellSize.height = linespace + defaultLineHeightForFont(newFont);
258         [self updateAtsuStyles];
259     }
262 - (void)setWideFont:(NSFont *)newFont
264     if (!newFont) {
265         if (font) [self setWideFont:font];
266     } else if (newFont != fontWide) {
267         float pointSize = [newFont pointSize];
268         NSFontDescriptor *desc = [newFont fontDescriptor];
269         NSDictionary *dictWide = [NSDictionary
270             dictionaryWithObject:[NSNumber numberWithFloat:2*cellSize.width]
271                           forKey:NSFontFixedAdvanceAttribute];
272         desc = [desc fontDescriptorByAddingAttributes:dictWide];
273         fontWide = [NSFont fontWithDescriptor:desc size:pointSize];
274         [fontWide retain];
275     }
278 - (NSFont *)font
280     return font;
283 - (NSFont *)fontWide
285     return fontWide;
288 - (NSSize)cellSize
290     return cellSize;
293 - (void)setLinespace:(float)newLinespace
295     linespace = newLinespace;
297     // NOTE: The linespace is added to the cell height in order for a multiline
298     // selection not to have white (background color) gaps between lines.  Also
299     // this simplifies the code a lot because there is no need to check the
300     // linespace when calculating the size of the text view etc.  When the
301     // linespace is non-zero the baseline will be adjusted as well; check
302     // MMTypesetter.
303     cellSize.height = linespace + defaultLineHeightForFont(font);
308 - (void)setShouldDrawInsertionPoint:(BOOL)on
312 - (void)setPreEditRow:(int)row column:(int)col
314     [helper setPreEditRow:row column:col];
317 - (void)setMouseShape:(int)shape
319     [helper setMouseShape:shape];
322 - (void)setAntialias:(BOOL)state
324     antialias = state;
327 - (void)setImControl:(BOOL)enable
329     [helper setImControl:enable];
332 - (void)keyDown:(NSEvent *)event
334     [helper keyDown:event];
337 - (void)insertText:(id)string
339     [helper insertText:string];
342 - (void)doCommandBySelector:(SEL)selector
344     [helper doCommandBySelector:selector];
347 - (BOOL)performKeyEquivalent:(NSEvent *)event
349     return [helper performKeyEquivalent:event];
352 - (BOOL)hasMarkedText
354     return [helper hasMarkedText];
357 - (NSRange)markedRange
359     return [helper markedRange];
362 - (NSDictionary *)markedTextAttributes
364     return [helper markedTextAttributes];
367 - (void)setMarkedTextAttributes:(NSDictionary *)attr
369     [helper setMarkedTextAttributes:attr];
372 - (void)setMarkedText:(id)text selectedRange:(NSRange)range
374     [helper setMarkedText:text selectedRange:range];
377 - (void)unmarkText
379     [helper unmarkText];
382 - (void)scrollWheel:(NSEvent *)event
384     [helper scrollWheel:event];
387 - (void)mouseDown:(NSEvent *)event
389     [helper mouseDown:event];
392 - (void)rightMouseDown:(NSEvent *)event
394     [helper mouseDown:event];
397 - (void)otherMouseDown:(NSEvent *)event
399     [helper mouseDown:event];
402 - (void)mouseUp:(NSEvent *)event
404     [helper mouseUp:event];
407 - (void)rightMouseUp:(NSEvent *)event
409     [helper mouseUp:event];
412 - (void)otherMouseUp:(NSEvent *)event
414     [helper mouseUp:event];
417 - (void)mouseDragged:(NSEvent *)event
419     [helper mouseDragged:event];
422 - (void)rightMouseDragged:(NSEvent *)event
424     [helper mouseDragged:event];
427 - (void)otherMouseDragged:(NSEvent *)event
429     [helper mouseDragged:event];
432 - (void)mouseMoved:(NSEvent *)event
434     [helper mouseMoved:event];
437 - (void)mouseEntered:(NSEvent *)event
439     [helper mouseEntered:event];
442 - (void)mouseExited:(NSEvent *)event
444     [helper mouseExited:event];
447 - (void)setFrame:(NSRect)frame
449     [super setFrame:frame];
450     [helper setFrame:frame];
453 - (void)viewDidMoveToWindow
455     [helper viewDidMoveToWindow];
458 - (void)viewWillMoveToWindow:(NSWindow *)newWindow
460     [helper viewWillMoveToWindow:newWindow];
463 - (NSMenu*)menuForEvent:(NSEvent *)event
465     // HACK! Return nil to disable default popup menus (Vim provides its own).
466     // Called when user Ctrl-clicks in the view (this is already handled in
467     // rightMouseDown:).
468     return nil;
471 - (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
473     return [helper performDragOperation:sender];
476 - (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
478     return [helper draggingEntered:sender];
481 - (NSDragOperation)draggingUpdated:(id <NSDraggingInfo>)sender
483     return [helper draggingUpdated:sender];
488 - (BOOL)mouseDownCanMoveWindow
490     return NO;
493 - (BOOL)isOpaque
495     return YES;
498 - (BOOL)acceptsFirstResponder
500     return YES;
503 - (BOOL)isFlipped
505     return NO;
508 - (void)drawRect:(NSRect)rect
510     [defaultBackgroundColor set];
511     NSRectFill(rect);
513     NSPoint pt = { insetSize.width, insetSize.height };
514     [contentImage compositeToPoint:pt operation:NSCompositeCopy];
516     if ([self hasMarkedText]) {
517         int len = [[helper markedText] length];
518         int rows = 0;
519         int cols = maxColumns - [helper preEditColumn];
520         NSFont *theFont = [[self markedTextAttributes]
521             valueForKey:NSFontAttributeName];
522         if (theFont == [self fontWide])
523             cols = cols / 2;
524         int done = 0;
525         int lend = cols > len ? len : cols;
526         NSAttributedString *aString = [[helper markedText]
527                 attributedSubstringFromRange:NSMakeRange(done, lend)];
528         NSPoint pt = [self pointForRow:[helper preEditRow]
529                                 column:[helper preEditColumn]];
530         [aString drawAtPoint:pt];
531         done = lend;
532         if (done != len) {
533             int r;
534             rows = (len - done) / (maxColumns / 2) + 1;
535             for (r = 1; r <= rows; r++) {
536             lend = len - done > maxColumns / 2
537                 ? maxColumns / 2 : len - done;
538                 aString = [[helper markedText] attributedSubstringFromRange:
539                         NSMakeRange(done, lend)];
540                 NSPoint pt = [self pointForRow:[helper preEditRow]+r
541                                         column:0];
542                 [aString drawAtPoint:pt];
543                 done += lend;
544             }
545         }
547         rows = maxRows - 1 - [helper preEditRow];
548         cols = [helper preEditColumn];
549         if (theFont == fontWide) {
550             cols += ([helper imRange].location+[helper imRange].length) * 2;
551             if (cols >= maxColumns - 1) {
552                 rows -= cols / maxColumns;
553                 cols = cols % 2 ? cols % maxColumns + 1 :
554                                   cols % maxColumns;
555             }
556         } else {
557             cols += ([helper imRange].location+[helper imRange].length);
558             if (cols >= maxColumns) {
559                 rows -= cols / maxColumns;
560                 cols = cols % 2 ? cols % maxColumns + 1 :
561                                   cols % maxColumns;
562             }
563         }
565         // TODO: Could IM be in "right-left" mode?  If so the insertion point
566         // will be on the wrong side.
567         [self drawInsertionPointAtRow:rows
568                                column:cols
569                                 shape:MMInsertionPointVertical
570                              fraction:25];
571     }
574 - (BOOL) wantsDefaultClipping
576     return NO;
580 #define MM_DEBUG_DRAWING 0
582 - (void)performBatchDrawWithData:(NSData *)data
584     const void *bytes = [data bytes];
585     const void *end = bytes + [data length];
587     if (! NSEqualSizes(imageSize, [self textAreaSize]))
588         [self resizeContentImage];
590 #if MM_DEBUG_DRAWING
591     NSLog(@"====> BEGIN %s", _cmd);
592 #endif
593     [self beginDrawing];
595     // TODO: Sanity check input
597     while (bytes < end) {
598         int type = *((int*)bytes);  bytes += sizeof(int);
600         if (ClearAllDrawType == type) {
601 #if MM_DEBUG_DRAWING
602             NSLog(@"   Clear all");
603 #endif
604             [self clearAll];
605         } else if (ClearBlockDrawType == type) {
606             unsigned color = *((unsigned*)bytes);  bytes += sizeof(unsigned);
607             int row1 = *((int*)bytes);  bytes += sizeof(int);
608             int col1 = *((int*)bytes);  bytes += sizeof(int);
609             int row2 = *((int*)bytes);  bytes += sizeof(int);
610             int col2 = *((int*)bytes);  bytes += sizeof(int);
612 #if MM_DEBUG_DRAWING
613             NSLog(@"   Clear block (%d,%d) -> (%d,%d)", row1, col1,
614                     row2,col2);
615 #endif
616             [self clearBlockFromRow:row1 column:col1
617                     toRow:row2 column:col2
618                     color:[NSColor colorWithArgbInt:color]];
619         } else if (DeleteLinesDrawType == type) {
620             unsigned color = *((unsigned*)bytes);  bytes += sizeof(unsigned);
621             int row = *((int*)bytes);  bytes += sizeof(int);
622             int count = *((int*)bytes);  bytes += sizeof(int);
623             int bot = *((int*)bytes);  bytes += sizeof(int);
624             int left = *((int*)bytes);  bytes += sizeof(int);
625             int right = *((int*)bytes);  bytes += sizeof(int);
627 #if MM_DEBUG_DRAWING
628             NSLog(@"   Delete %d line(s) from %d", count, row);
629 #endif
630             [self deleteLinesFromRow:row lineCount:count
631                     scrollBottom:bot left:left right:right
632                            color:[NSColor colorWithArgbInt:color]];
633         } else if (DrawStringDrawType == type) {
634             int bg = *((int*)bytes);  bytes += sizeof(int);
635             int fg = *((int*)bytes);  bytes += sizeof(int);
636             int sp = *((int*)bytes);  bytes += sizeof(int);
637             int row = *((int*)bytes);  bytes += sizeof(int);
638             int col = *((int*)bytes);  bytes += sizeof(int);
639             int cells = *((int*)bytes);  bytes += sizeof(int);
640             int flags = *((int*)bytes);  bytes += sizeof(int);
641             int len = *((int*)bytes);  bytes += sizeof(int);
642             // UniChar *string = (UniChar*)bytes;  bytes += len;
643             NSString *string = [[NSString alloc]
644                     initWithBytesNoCopy:(void*)bytes
645                                  length:len
646                                encoding:NSUTF8StringEncoding
647                            freeWhenDone:NO];
648             bytes += len;
649 #if MM_DEBUG_DRAWING
650             NSLog(@"   Draw string at (%d,%d) length=%d flags=%d fg=0x%x "
651                     "bg=0x%x sp=0x%x", row, col, len, flags, fg, bg, sp);
652 #endif
653             unichar *characters = malloc(sizeof(unichar) * [string length]);
654             [string getCharacters:characters];
656             [self drawString:characters
657                              length:[string length]
658                               atRow:row
659                              column:col
660                               cells:cells withFlags:flags
661                     foregroundColor:[NSColor colorWithRgbInt:fg]
662                     backgroundColor:[NSColor colorWithArgbInt:bg]
663                        specialColor:[NSColor colorWithRgbInt:sp]];
664             free(characters);
665             [string release];
666         } else if (InsertLinesDrawType == type) {
667             unsigned color = *((unsigned*)bytes);  bytes += sizeof(unsigned);
668             int row = *((int*)bytes);  bytes += sizeof(int);
669             int count = *((int*)bytes);  bytes += sizeof(int);
670             int bot = *((int*)bytes);  bytes += sizeof(int);
671             int left = *((int*)bytes);  bytes += sizeof(int);
672             int right = *((int*)bytes);  bytes += sizeof(int);
674 #if MM_DEBUG_DRAWING
675             NSLog(@"   Insert %d line(s) at row %d", count, row);
676 #endif
677             [self insertLinesAtRow:row lineCount:count
678                              scrollBottom:bot left:left right:right
679                                     color:[NSColor colorWithArgbInt:color]];
680         } else if (DrawCursorDrawType == type) {
681             unsigned color = *((unsigned*)bytes);  bytes += sizeof(unsigned);
682             int row = *((int*)bytes);  bytes += sizeof(int);
683             int col = *((int*)bytes);  bytes += sizeof(int);
684             int shape = *((int*)bytes);  bytes += sizeof(int);
685             int percent = *((int*)bytes);  bytes += sizeof(int);
687 #if MM_DEBUG_DRAWING
688             NSLog(@"   Draw cursor at (%d,%d)", row, col);
689 #endif
690             [helper setInsertionPointColor:[NSColor colorWithRgbInt:color]];
691             [self drawInsertionPointAtRow:row column:col shape:shape
692                                  fraction:percent];
693         } else if (DrawInvertedRectDrawType == type) {
694             int row = *((int*)bytes);  bytes += sizeof(int);
695             int col = *((int*)bytes);  bytes += sizeof(int);
696             int nr = *((int*)bytes);  bytes += sizeof(int);
697             int nc = *((int*)bytes);  bytes += sizeof(int);
698             /*int invert = *((int*)bytes);*/  bytes += sizeof(int);
700 #if MM_DEBUG_DRAWING
701             NSLog(@"   Draw inverted rect: row=%d col=%d nrows=%d ncols=%d",
702                     row, col, nr, nc);
703 #endif
704             [self drawInvertedRectAtRow:row column:col numRows:nr
705                              numColumns:nc];
706         } else if (SetCursorPosDrawType == type) {
707             // TODO: This is used for Voice Over support in MMTextView,
708             // MMAtsuiTextView currently does not support Voice Over.
709             /*cursorRow = *((int*)bytes);*/  bytes += sizeof(int);
710             /*cursorCol = *((int*)bytes);*/  bytes += sizeof(int);
711         } else {
712             NSLog(@"WARNING: Unknown draw type (type=%d)", type);
713         }
714     }
716     [self endDrawing];
718     [self setNeedsDisplay:YES];
720     // NOTE: During resizing, Cocoa only sends draw messages before Vim's rows
721     // and columns are changed (due to ipc delays). Force a redraw here.
722     if ([self inLiveResize])
723         [self display];
725 #if MM_DEBUG_DRAWING
726     NSLog(@"<==== END   %s", _cmd);
727 #endif
730 - (NSSize)constrainRows:(int *)rows columns:(int *)cols toSize:(NSSize)size
732     // TODO:
733     // - Rounding errors may cause size change when there should be none
734     // - Desired rows/columns shold not be 'too small'
736     // Constrain the desired size to the given size.  Values for the minimum
737     // rows and columns is taken from Vim.
738     NSSize desiredSize = [self desiredSize];
739     int desiredRows = maxRows;
740     int desiredCols = maxColumns;
742     if (size.height != desiredSize.height) {
743         float fh = cellSize.height;
744         float ih = 2 * insetSize.height;
745         if (fh < 1.0f) fh = 1.0f;
747         desiredRows = floor((size.height - ih)/fh);
748         desiredSize.height = fh*desiredRows + ih;
749     }
751     if (size.width != desiredSize.width) {
752         float fw = cellSize.width;
753         float iw = 2 * insetSize.width;
754         if (fw < 1.0f) fw = 1.0f;
756         desiredCols = floor((size.width - iw)/fw);
757         desiredSize.width = fw*desiredCols + iw;
758     }
760     if (rows) *rows = desiredRows;
761     if (cols) *cols = desiredCols;
763     return desiredSize;
766 - (NSSize)desiredSize
768     // Compute the size the text view should be for the entire text area and
769     // inset area to be visible with the present number of rows and columns.
770     return NSMakeSize(maxColumns * cellSize.width + 2 * insetSize.width,
771                       maxRows * cellSize.height + 2 * insetSize.height);
774 - (NSSize)minSize
776     // Compute the smallest size the text view is allowed to be.
777     return NSMakeSize(MMMinColumns * cellSize.width + 2 * insetSize.width,
778                       MMMinRows * cellSize.height + 2 * insetSize.height);
781 - (void)changeFont:(id)sender
783     [helper changeFont:sender];
788 // NOTE: The menu items cut/copy/paste/undo/redo/select all/... must be bound
789 // to the same actions as in IB otherwise they will not work with dialogs.  All
790 // we do here is forward these actions to the Vim process.
792 - (IBAction)cut:(id)sender
794     [[self windowController] vimMenuItemAction:sender];
797 - (IBAction)copy:(id)sender
799     [[self windowController] vimMenuItemAction:sender];
802 - (IBAction)paste:(id)sender
804     [[self windowController] vimMenuItemAction:sender];
807 - (IBAction)undo:(id)sender
809     [[self windowController] vimMenuItemAction:sender];
812 - (IBAction)redo:(id)sender
814     [[self windowController] vimMenuItemAction:sender];
817 - (IBAction)selectAll:(id)sender
819     [[self windowController] vimMenuItemAction:sender];
822 - (BOOL)convertPoint:(NSPoint)point toRow:(int *)row column:(int *)column
824     // View is not flipped, instead the atsui code draws to a flipped image;
825     // thus we need to 'flip' the coordinate here since the column number
826     // increases in an up-to-down order.
827     point.y = [self frame].size.height - point.y;
829     NSPoint origin = { insetSize.width, insetSize.height };
831     if (!(cellSize.width > 0 && cellSize.height > 0))
832         return NO;
834     if (row) *row = floor((point.y-origin.y-1) / cellSize.height);
835     if (column) *column = floor((point.x-origin.x-1) / cellSize.width);
837     return YES;
840 - (NSPoint)pointForRow:(int)row column:(int)col
842     // Return the lower left coordinate of the cell at (row,column).
843     NSPoint pt;
845     pt.x = insetSize.width + col*cellSize.width;
846     pt.y = [self frame].size.height -
847            (insetSize.height + (1+row)*cellSize.height);
849     return pt;
852 - (NSRect)rectForRow:(int)row column:(int)col numRows:(int)nr
853           numColumns:(int)nc
855     // Return the rect for the block which covers the specified rows and
856     // columns.  The lower-left corner is the origin of this rect.
857     NSRect rect;
859     rect.origin.x = insetSize.width + col*cellSize.width;
860     rect.origin.y = [self frame].size.height -
861                     (insetSize.height + (nr+row)*cellSize.height);
862     rect.size.width = nc*cellSize.width;
863     rect.size.height = nr*cellSize.height;
865     return rect;
868 - (NSArray *)validAttributesForMarkedText
870     return nil;
873 - (NSAttributedString *)attributedSubstringFromRange:(NSRange)range
875     return nil;
878 - (NSUInteger)characterIndexForPoint:(NSPoint)point
880     return NSNotFound;
883 // The return type of this message changed with OS X 10.5 so we need this
884 // kludge in order to avoid compiler warnings on OS X 10.4.
885 #if (MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_4)
886 - (NSInteger)conversationIdentifier
888     return (NSInteger)self;
890 #else
891 - (long)conversationIdentifier
893     return (long)self;
895 #endif
897 - (NSRange)selectedRange
899     return [helper imRange];
902 - (NSRect)firstRectForCharacterRange:(NSRange)range
904     return [helper firstRectForCharacterRange:range];
907 @end // MMAtsuiTextView
912 @implementation MMAtsuiTextView (Private)
914 - (void)initAtsuStyles
916     int i;
917     for (i = 0; i < MMMaxCellsPerChar; i++)
918         ATSUCreateStyle(&atsuStyles[i]);
921 - (void)disposeAtsuStyles
923     int i;
925     for (i = 0; i < MMMaxCellsPerChar; i++)
926         if (atsuStyles[i] != NULL)
927         {
928             if (ATSUDisposeStyle(atsuStyles[i]) != noErr)
929                 atsuStyles[i] = NULL;
930         }
933 - (void)updateAtsuStyles
935     ATSUFontID        fontID;
936     Fixed             fontSize;
937     Fixed             fontWidth;
938     int               i;
939     CGAffineTransform transform = CGAffineTransformMakeScale(1, -1);
940     ATSStyleRenderingOptions options;
942     fontID    = [font _atsFontID];
943     fontSize  = Long2Fix([font pointSize]);
944     options   = kATSStyleApplyAntiAliasing;
946     ATSUAttributeTag attribTags[] =
947     {
948         kATSUFontTag, kATSUSizeTag, kATSUImposeWidthTag,
949         kATSUFontMatrixTag, kATSUStyleRenderingOptionsTag,
950         kATSUMaxATSUITagValue + 1
951     };
953     ByteCount attribSizes[] =
954     {
955         sizeof(ATSUFontID), sizeof(Fixed), sizeof(fontWidth),
956         sizeof(CGAffineTransform), sizeof(ATSStyleRenderingOptions),
957         sizeof(font)
958     };
960     ATSUAttributeValuePtr attribValues[] =
961     {
962         &fontID, &fontSize, &fontWidth, &transform, &options, &font
963     };
965     ATSUFontFeatureType featureTypes[] = {
966         kLigaturesType, kLigaturesType
967     };
969     ATSUFontFeatureSelector featureSelectors[] = {
970         kCommonLigaturesOffSelector, kRareLigaturesOffSelector
971     };
973     for (i = 0; i < MMMaxCellsPerChar; i++)
974     {
975         fontWidth = Long2Fix(cellSize.width * (i + 1));
977         if (ATSUSetAttributes(atsuStyles[i],
978                               (sizeof attribTags) / sizeof(ATSUAttributeTag),
979                               attribTags, attribSizes, attribValues) != noErr)
980         {
981             ATSUDisposeStyle(atsuStyles[i]);
982             atsuStyles[i] = NULL;
983         }
985         // Turn off ligatures by default
986         ATSUSetFontFeatures(atsuStyles[i],
987                             sizeof(featureTypes) / sizeof(featureTypes[0]),
988                             featureTypes, featureSelectors);
989     }
992 - (MMWindowController *)windowController
994     id windowController = [[self window] windowController];
995     if ([windowController isKindOfClass:[MMWindowController class]])
996         return (MMWindowController*)windowController;
997     return nil;
1000 - (MMVimController *)vimController
1002     return [[self windowController] vimController];
1005 @end // MMAtsuiTextView (Private)
1010 @implementation MMAtsuiTextView (Drawing)
1012 - (NSPoint)originForRow:(int)row column:(int)col
1014     return NSMakePoint(col * cellSize.width, row * cellSize.height);
1017 - (NSRect)rectFromRow:(int)row1 column:(int)col1
1018                 toRow:(int)row2 column:(int)col2
1020     NSPoint origin = [self originForRow:row1 column:col1];
1021     return NSMakeRect(origin.x, origin.y,
1022                       (col2 + 1 - col1) * cellSize.width,
1023                       (row2 + 1 - row1) * cellSize.height);
1026 - (NSSize)textAreaSize
1028     // Calculate the (desired) size of the text area, i.e. the text view area
1029     // minus the inset area.
1030     return NSMakeSize(maxColumns * cellSize.width, maxRows * cellSize.height);
1033 - (void)resizeContentImage
1035     //NSLog(@"resizeContentImage");
1036     [contentImage release];
1037     contentImage = [[NSImage alloc] initWithSize:[self textAreaSize]];
1038     [contentImage setFlipped:YES];
1039     imageSize = [self textAreaSize];
1042 - (void)beginDrawing
1044     [contentImage lockFocus];
1047 - (void)endDrawing
1049     [contentImage unlockFocus];
1052 #define atsu_style_set_bool(s, t, b) \
1053     ATSUSetAttributes(s, 1, &t, &(sizeof(Boolean)), &&b);
1054 #define FILL_Y(y)    (y * cellSize.height)
1056 - (void)drawString:(UniChar *)string length:(UniCharCount)length
1057              atRow:(int)row column:(int)col cells:(int)cells
1058          withFlags:(int)flags foregroundColor:(NSColor *)fg
1059    backgroundColor:(NSColor *)bg specialColor:(NSColor *)sp
1061     // 'string' consists of 'length' utf-16 code pairs and should cover 'cells'
1062     // display cells (a normal character takes up one display cell, a wide
1063     // character takes up two)
1064     ATSUStyle       style = (flags & DRAW_WIDE) ? atsuStyles[1] : atsuStyles[0];
1065     ATSUTextLayout  layout;
1067     // Font selection and rendering options for ATSUI
1068     ATSUAttributeTag      attribTags[3] = { kATSUQDBoldfaceTag,
1069                                             kATSUFontMatrixTag,
1070                                             kATSUStyleRenderingOptionsTag };
1072     ByteCount             attribSizes[] = { sizeof(Boolean),
1073                                             sizeof(CGAffineTransform),
1074                                             sizeof(UInt32) };
1075     Boolean               useBold;
1076     CGAffineTransform     theTransform = CGAffineTransformMakeScale(1.0, -1.0);
1077     UInt32                useAntialias;
1079     ATSUAttributeValuePtr attribValues[3] = { &useBold, &theTransform,
1080                                               &useAntialias };
1082     useBold      = (flags & DRAW_BOLD) ? true : false;
1084     if (flags & DRAW_ITALIC)
1085         theTransform.c = Fix2X(kATSItalicQDSkew);
1087     useAntialias = antialias ? kATSStyleApplyAntiAliasing
1088                              : kATSStyleNoAntiAliasing;
1090     ATSUSetAttributes(style, sizeof(attribValues) / sizeof(attribValues[0]),
1091                       attribTags, attribSizes, attribValues);
1093     // NSLog(@"drawString: %d", length);
1095     ATSUCreateTextLayout(&layout);
1096     ATSUSetTextPointerLocation(layout, string,
1097                                kATSUFromTextBeginning, kATSUToTextEnd,
1098                                length);
1099     ATSUSetRunStyle(layout, style, kATSUFromTextBeginning, kATSUToTextEnd);
1101     NSRect rect = NSMakeRect(col * cellSize.width, row * cellSize.height,
1102                              length * cellSize.width, cellSize.height);
1103     if (flags & DRAW_WIDE)
1104         rect.size.width = rect.size.width * 2;
1105     CGContextRef context = [[NSGraphicsContext currentContext] graphicsPort];
1107     ATSUAttributeTag tags[] = { kATSUCGContextTag };
1108     ByteCount sizes[] = { sizeof(CGContextRef) };
1109     ATSUAttributeValuePtr values[] = { &context };
1110     ATSUSetLayoutControls(layout, 1, tags, sizes, values);
1112     if (! (flags & DRAW_TRANSP))
1113     {
1114         [bg set];
1115         NSRectFill(rect);
1116     }
1118     [fg set];
1120     ATSUSetTransientFontMatching(layout, TRUE);
1121     ATSUDrawText(layout,
1122                  kATSUFromTextBeginning,
1123                  kATSUToTextEnd,
1124                  X2Fix(rect.origin.x),
1125                  X2Fix(rect.origin.y + ascender));
1126     ATSUDisposeTextLayout(layout);
1128     if (flags & DRAW_UNDERL)
1129     {
1130         [sp set];
1131         NSRectFill(NSMakeRect(rect.origin.x,
1132                               (row + 1) * cellSize.height + kUnderlineOffset,
1133                               rect.size.width, kUnderlineHeight));
1134     }
1136     if (flags & DRAW_UNDERC)
1137     {
1138         [sp set];
1140         float line_end_x = rect.origin.x + rect.size.width;
1141         int i = 0;
1142         NSRect line_rect = NSMakeRect(
1143                 rect.origin.x,
1144                 (row + 1) * cellSize.height + kUndercurlOffset,
1145                 kUndercurlDotWidth, kUndercurlHeight);
1147         while (line_rect.origin.x < line_end_x)
1148         {
1149             if (i % 2)
1150                 NSRectFill(line_rect);
1152             line_rect.origin.x += kUndercurlDotDistance;
1153             i++;
1154         }
1155     }
1158 - (void)scrollRect:(NSRect)rect lineCount:(int)count
1160     NSPoint destPoint = rect.origin;
1161     destPoint.y += count * cellSize.height;
1163     NSCopyBits(0, rect, destPoint);
1166 - (void)deleteLinesFromRow:(int)row lineCount:(int)count
1167               scrollBottom:(int)bottom left:(int)left right:(int)right
1168                      color:(NSColor *)color
1170     NSRect rect = [self rectFromRow:row + count
1171                              column:left
1172                               toRow:bottom
1173                              column:right];
1174     [color set];
1175     // move rect up for count lines
1176     [self scrollRect:rect lineCount:-count];
1177     [self clearBlockFromRow:bottom - count + 1
1178                      column:left
1179                       toRow:bottom
1180                      column:right
1181                       color:color];
1184 - (void)insertLinesAtRow:(int)row lineCount:(int)count
1185             scrollBottom:(int)bottom left:(int)left right:(int)right
1186                    color:(NSColor *)color
1188     NSRect rect = [self rectFromRow:row
1189                              column:left
1190                               toRow:bottom - count
1191                              column:right];
1192     [color set];
1193     // move rect down for count lines
1194     [self scrollRect:rect lineCount:count];
1195     [self clearBlockFromRow:row
1196                      column:left
1197                       toRow:row + count - 1
1198                      column:right
1199                       color:color];
1202 - (void)clearBlockFromRow:(int)row1 column:(int)col1 toRow:(int)row2
1203                    column:(int)col2 color:(NSColor *)color
1205     [color set];
1206     NSRectFill([self rectFromRow:row1 column:col1 toRow:row2 column:col2]);
1209 - (void)clearAll
1211     [defaultBackgroundColor set];
1212     NSRectFill(NSMakeRect(0, 0, imageSize.width, imageSize.height));
1215 - (void)drawInsertionPointAtRow:(int)row column:(int)col shape:(int)shape
1216                        fraction:(int)percent
1218     NSPoint origin = [self originForRow:row column:col];
1219     NSRect rect = NSMakeRect(origin.x, origin.y,
1220                              cellSize.width, cellSize.height);
1222     // NSLog(@"shape = %d, fraction: %d", shape, percent);
1224     if (MMInsertionPointHorizontal == shape) {
1225         int frac = (cellSize.height * percent + 99)/100;
1226         rect.origin.y += rect.size.height - frac;
1227         rect.size.height = frac;
1228     } else if (MMInsertionPointVertical == shape) {
1229         int frac = (cellSize.width * percent + 99)/100;
1230         rect.size.width = frac;
1231     } else if (MMInsertionPointVerticalRight == shape) {
1232         int frac = (cellSize.width * percent + 99)/100;
1233         rect.origin.x += rect.size.width - frac;
1234         rect.size.width = frac;
1235     }
1237     [[helper insertionPointColor] set];
1238     if (MMInsertionPointHollow == shape) {
1239         NSFrameRect(rect);
1240     } else {
1241         NSRectFill(rect);
1242     }
1245 - (void)drawInvertedRectAtRow:(int)row column:(int)col numRows:(int)nrows
1246                    numColumns:(int)ncols
1248     // TODO: THIS CODE HAS NOT BEEN TESTED!
1249     CGContextRef cgctx = [[NSGraphicsContext currentContext] graphicsPort];
1250     CGContextSaveGState(cgctx);
1251     CGContextSetBlendMode(cgctx, kCGBlendModeDifference);
1252     CGContextSetRGBFillColor(cgctx, 1.0, 1.0, 1.0, 1.0);
1254     CGRect rect = { col * cellSize.width, row * cellSize.height,
1255                     ncols * cellSize.width, nrows * cellSize.height };
1256     CGContextFillRect(cgctx, rect);
1258     CGContextRestoreGState(cgctx);
1261 @end // MMAtsuiTextView (Drawing)