NSPoint / NSRect от символа в NSTextView - PullRequest
3 голосов
/ 01 марта 2011

Итак, я пытаюсь получить NSPoint или NSRect, соответствующее расположению определенного символа в NSTextView.Это то, что я имею до сих пор (это не очень хорошо работает, результаты кажутся непредсказуемыми.

NSRange theTextRange = [[theTextView layoutManager] glyphRangeForCharacterRange:[theTextStorage editedRange] actualCharacterRange:NULL];
NSRect theTextRect = [[theTextView layoutManager] boundingRectForGlyphRange:theTextRange inTextContainer:[theTextView textContainer]];

Ответы [ 2 ]

7 голосов
/ 19 января 2012

Прямоугольник, возвращаемый boundingRectForGlyphRange:inTextContainer:, находится в координатах контейнера.Вам нужно настроить это, если вы хотите получить прямоугольник относительно текстового представления:

NSRange theTextRange = [[textView layoutManager] glyphRangeForCharacterRange:textRange actualCharacterRange:NULL];
NSRect layoutRect = [[textView layoutManager] boundingRectForGlyphRange:theTextRange inTextContainer:[textView textContainer]];
NSPoint containerOrigin = [textView textContainerOrigin];
layoutRect.origin.x += containerOrigin.x;
layoutRect.origin.y += containerOrigin.y;
0 голосов
/ 18 сентября 2015

Вы можете использовать событие нажатия мыши с помощью NSPoint & NSRect

#import <Cocoa/Cocoa.h>

@interface ClickTextView : NSView {
    NSMutableArray *texts;
    NSPoint currentLocation;
    NSCell *cell;
}

@end

#import "ClickTextView.h"
@interface TextClip : NSObject
{

@public
    NSString *text;
    NSPoint location;
}

@end

@implementation TextClip @end


@implementation ClickTextView
- (void)awakeFromNib
{
    texts = [NSMutableArray new];
    cell = [[NSTextFieldCell alloc] initTextCell: @""];
    [cell setEditable: YES];
}

- (void)drawRect:(NSRect)rect 
{
    NSRect frame = rect;
    [[NSColor whiteColor] set];
    [NSBezierPath fillRect: rect];
    for (TextClip *clip in texts)
    {
        [cell setStringValue: clip->text];
        frame.origin = clip->location;
        [cell drawWithFrame: frame inView: self];
    }
}

- (void)mouseDown: (NSEvent*)theEvent
{
    currentLocation = [self convertPoint: [theEvent locationInWindow]
                                fromView: nil];
    NSText *fieldEditor = [[self window] fieldEditor: YES
                                           forObject: self];
    [cell endEditing: fieldEditor];
    [fieldEditor setString: @""];
    [cell setStringValue: @""];
    NSRect frame = {currentLocation, {400, 400}};
    [cell editWithFrame: frame
                 inView: self
                 editor: fieldEditor
               delegate: self
                  event: theEvent];
}
- (BOOL)isFlipped
{
    return YES;
}
- (void)textDidEndEditing: (NSNotification*)aNotification
{
    NSText *text = [aNotification object];
    TextClip *clip = [[TextClip alloc] init];
    clip->text = [[text string] copy];
    clip->location = currentLocation;
    [texts addObject: clip];
    [cell endEditing: text];
    [self setNeedsDisplay: YES];
}
@end
...