File: GSImageTabViewItem.h

package info (click to toggle)
gnustep-examples 1%3A1.1.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,748 kB
  • ctags: 251
  • sloc: objc: 13,477; makefile: 65
file content (13 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <AppKit/AppKit.h>
#include <AppKit/NSTabViewItem.h>

@interface GSImageTabViewItem : NSTabViewItem
{
  NSImage *item_image;
}
- (void)setImage:(NSImage *)image;
- (NSImage *)image;
- (NSSize)sizeOfLabel:(BOOL)shouldTruncateLabel;
- (void)drawLabel:(BOOL)shouldTruncateLabel
           inRect:(NSRect)tabRect;
@end