NSToint / NSRect来自NSTextView中的字符

时间:2011-03-01 20:41:40

标签: cocoa nstextview

所以我试图获得与NSTextView中特定字符的位置相对应的NSPoint或NSRect。这就是我到目前为止所做的(效果不佳,结果似乎有些不可预测。

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

2 个答案:

答案 0 :(得分:7)

boundingRectForGlyphRange:inTextContainer:返回的rect位于容器坐标中。如果要相对于文本视图获取rect,则需要对此进行调整:

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;

答案 1 :(得分:0)

你可以使用NSPoint& amp;的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