File: MGWPopUpButton.h

package info (click to toggle)
gtamsanalyzer.app 0.42-6
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 6,112 kB
  • ctags: 866
  • sloc: objc: 34,338; ansic: 8,762; cpp: 384; makefile: 59; sh: 47
file content (20 lines) | stat: -rwxr-xr-x 433 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  MGWPopUpButton.h
//  TEST2
//
//  Created by matthew on Wed Oct 22 2003.
//  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
//

#import <AppKit/AppKit.h>


@interface NSPopUpButton(MGWPopUpButton)

-(NSString *) titleOfItemWithTag: (int) t;
-(NSMenuItem *) itemWithTag: (int) t;
-(int) tagOfSelectedItem;
-(void) selectItemWithTag: (int) t;
-(void) selectItemWithTagNumber: (NSNumber *) n;
-(unsigned) count;
@end