I am writing a text editor for Mac OS X. I need to display hidden characters in an NSTextView (such as spaces, tabs, and special characters). I have spent a lot of time searching for how to do this but so far I have not found an answer. If anyone could point me in the right direction I would be grateful.
|
feedback
|
|
Have a look at the NSLayoutManager class. Your NSTextView will have a layout manager associated with it, and the layout manager is responsible for associating a character (space, tab, etc.) with a glyph (the image of that character drawn on the screen). In your case, you would probably be most interested in the | |||
|
feedback
|
|
I wrote a text editor a few years back - here's some meaningless code that should get you looking in (hopefully) the right direction (this is an NSLayoutManager subclass btw - and yes I know it's leaking like the proverbial kitchen sink):
| ||||
|
feedback
|
|
I solved the problem of converting between NSGlyphs and the corresponding unichar in the NSTextView. The code below works beautifully and replaces spaces with bullets for visible text:
| ||||
|
feedback
|
|
Perhaps -[NSLayoutManager setShowsControlCharacters:] and/or -[NSLayoutManager setShowsInvisibleCharacters:] will do what you want. | |||
|
feedback
|
|
What I have done is override the method below in an NSLayoutManager subclass.
I loop through the index of each character. The problem I now have is how to determine what character is found at each location. Should I use an NSLayoutManager method or ask the NSTextView itself? Are indices into the former the same as in the latter? I can get an individual glyph with -glyphAtIndex: but I cannot figure out how to determine what character it corresponds to. | |||
|
feedback
|