File: GSImageTabViewItem.h

package info (click to toggle)
gnustep-examples 1%3A1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,116 kB
  • sloc: objc: 14,993; makefile: 61; sh: 19
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