Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
2k views

How does line spacing work in Core Text? (and why is it different from NSLayoutManager?)

I'm trying to draw text using Core Text functions, with a line spacing that's as close as possible to what it would be if I used NSTextView. Take this font as an example: NSFont *font = [NSFont ...
1
vote
1answer
23 views

How to get the range of characters that are visible from within -textStorageDidProcessEditing:?

For my syntax highlighting implementation, I observe changes to an NSTextView using -[<NSTextStorageDelegate> textStorageDidProcessEditing:]. - ...
1
vote
1answer
94 views

NSLayoutManager Text new line seems to start from bottom of rectangle and go up

m_LayoutManager = [[NSLayoutManager alloc] init]; m_TextContainer = [[NSTextContainer alloc] init]; m_TextStorage = [[NSTextStorage alloc] initWithString: @"Here's to the crazy ones, the misfits, the ...
1
vote
0answers
39 views

NSTextView lineHeightMultiple drawing issues

By setting the lineHeightMultiple of a NSParagraphStyle that is used in a text view I'm getting drawing artifacts when selecting text. This is reproducible in TextEdit. More specifically: Open ...
1
vote
1answer
110 views

Redrawing a single rect for a line fragment in NSTextView

We have an NSTextView that needs to have single line fragments redrawn on certain events. Essentially, it is an outline. So when a particular line gets the message "tab out", we want to move the ...
1
vote
1answer
75 views

NSLayoutManager setAllowsNonContiguousLayout misplaces caret

With setAllowsNonContiguousLayout set to YES, if I perform the following steps I get weird behaviour: Select all text in the NSTextView Hit backspace to remove all the text Type a few lines of text ...
1
vote
2answers
298 views

How to properly determine width of an attributed string

What I want to do: layout text using NSLayoutManager and set its NSTextContainer to the width of the widest string (glyph-wise) in an array of strings. What my problem is: The methods for determining ...
0
votes
1answer
186 views

Get Bounding Rectangle of String with NSLayoutManager

I have a large amount of unique strings for which I want to compute their bounding rectangle when they would be laid out in an infinitly large rectangle. Currently I use a single ...
0
votes
0answers
37 views

Fast OS X text drawing with control over text positioning and styling

My Cocoa application draws text with -[NSAttributedString drawInRect:options:]. It draws character-by-character because it needs precise control over the positions of characters (they must lie on a ...
0
votes
1answer
74 views

Changes to NSTextView not reaching screen

I have an NSTextView backed by a text system I put together myself, along the lines of the "Assembling the Text System by Hand" section in the Text System Overview in the Cocoa documentation. It ...
0
votes
1answer
85 views

Cocoa: NSTextStorageDelegate has out-of-date NSLayoutManager?

I'm working with a NSTextView and have a delegate set for its -textStorage property. Upon receipt of -textStorageDidProcessEditing: I need to apply attributes to portions of the text. My attributes ...
0
votes
1answer
160 views

Attempting to Apply NSMutableParagraphStyle to new NSRange Failing

All, I'm tweaking an NSTextView to basically support insertion of boiler plate text and indenting. I'm running into a problem where the indenting of boiler plate text is applied to non-boiler plate ...
0
votes
1answer
281 views

How to paint background of specific range of text in NSTextView

This is not a specific bug, its more about not knowing how to do something. I've an NSTextView and I need to paint the background of specific ranges of text when the user clicks on a specific part of ...
0
votes
1answer
125 views

How to create skype like message window?

I am just trying to design skype like message window , for this I have taken the NSDrawer element. It contains : a table view on left, menu items on top, text field on right bottom and text view at ...
0
votes
1answer
376 views

Stop text from wrapping with NSLayoutManager

Given any arbitrary, one-line string, my goal is to render it into a bitmap representation. However, I have no means of finding out its dimensions beforehand, so I am reduced to getting the glyph ...