Re: Text selection in NSTableView

2008-07-15 Thread Jens Alfke
On 15 Jul '08, at 10:57 PM, Satoshi Nakagawa wrote: But I cannot implement text selection on it. Is there a good way to implement it? You'd need to subclass NSTextFieldCell to inherit its behavior. Text layout is very, very complicated and you definitely don't want to try to implement it

Text selection in NSTableView

2008-07-15 Thread Satoshi Nakagawa
Hi, I have a custom table view cell. The cell made of an image and some text. The text includes URL link, it should be rendered like a html link. To implement it, I made a custom cell class. It renders an image and text in drawInteriorWithFrame:inView:. But I cannot implement text selection on i