4

画像を含む NSTextView があります。これらの画像にトラッキング エリアを追加したいと考えています。トラッキング エリアを作成するには、画像を保持するセルのフレームが必要です。

私の質問: NSTextView の座標系で NSTextAttachments のフレームを取得するにはどうすればよいですか?

テキスト ビュー内の画像のサイズをプログラムで変更していますが、このときに新しいトラッキング エリアを作成する必要があります。次のようにして、テキストが添付された属性付き文字列を作成し、プログラムでこれをテキスト ビューの属性付き文字列に挿入します。しかし、これをすべて行うと、新しい添付ファイルの追跡領域を作成する方法がわかりません。

-(NSAttributedString*)attributedStringAttachmentForImageObject:(id)object {
    NSFileWrapper* fileWrapper = [[NSFileWrapper alloc] initRegularFileWithContents:[object TIFFRepresentationUsingCompression:NSTIFFCompressionLZW factor:1.0]];
    [fileWrapper setPreferredFilename:@"image.tiff"];
    NSTextAttachment* attachment = [[NSTextAttachment alloc] initWithFileWrapper:fileWrapper];
    NSAttributedString* aString = [NSAttributedString attributedStringWithAttachment:attachment];
    [fileWrapper release];
    [attachment release];
    return aString;
}
4

1 に答える 1

4

添付ファイルは単一の (非表示の) グリフ (0xFFFC) で構成されているため、グリフ メッセージを使用して境界ボックスを取得できます。マウスの位置に基づいて NSTextView で添付ファイルを強調表示するために使用するコードを次に示します (添付ファイルの境界を取得する必要があります)。

/**
 * Determines the index under the mouse. For highlighting we use the index only if the mouse is actually
 * within the tag bounds. For selection purposes we return the index as it was found even if the mouse pointer
 * is outside the tag bounds.
 */
- (NSUInteger)updateTargetDropIndexAtPoint: (NSPoint)point
{
    CGFloat fraction;
    NSUInteger index = [self.layoutManager glyphIndexForPoint: point
                                              inTextContainer: self.textContainer
                               fractionOfDistanceThroughGlyph: &fraction];
    NSUInteger caretIndex = index;
    if (fraction > 0.5) {
        caretIndex++;
    }

    // For highlighting a tag we need check if the mouse is actually within the tag.
    NSRect bounds = [self.layoutManager boundingRectForGlyphRange: NSMakeRange(index, 1)
                                                  inTextContainer: self.textContainer];
    NSUInteger newIndex;
    if (NSPointInRect(point, bounds)) {
        newIndex = index;
    } else {
        newIndex = NSNotFound;
    }
    if (hotTagIndex != newIndex) {
        NSRect oldBounds = [self.layoutManager boundingRectForGlyphRange: NSMakeRange(hotTagIndex, 1)
                                                         inTextContainer: self.textContainer];
        [self setNeedsDisplayInRect: oldBounds];
        hotTagIndex = newIndex;
        [self setNeedsDisplayInRect: bounds];
    }

    return caretIndex;
}

このコードは NSTextView の子孫で使用されるため、self.layoutManager アクセスです。

于 2013-04-07T09:56:33.837 に答える