Skip navigation.
 
mlRe: Icons on the NSTabview
FROM : Jens Alfke
DATE : Wed Apr 30 17:10:59 2008

On 30 Apr '08, at 7:54 AM, yogesh kumar wrote:

> If is it possible to add the icons pictures on the NSTabviews? Any 
> direction
> is appriciated. Thanks.


There's no built-in support for icons. You'd have to subclass 
NSTabViewItem and then override a few methods:
- (void)drawLabel:(BOOL)shouldTruncateLabel inRect:(NSRect)labelRect;
- (NSSize)sizeOfLabel:(BOOL)computeMin;

And of course you have to instantiate your own tab view items and 
insert them into the tabview.

—Jens

Related mailsAuthorDate
mlIcons on the NSTabview yogesh kumar Apr 30, 16:54
mlRe: Icons on the NSTabview Jens Alfke Apr 30, 17:10
mlRe: Icons on the NSTabview Development Apr 30, 23:23
mlRe: Icons on the NSTabview Jens Alfke Apr 30, 23:40