Browse CVS Repository
Contents of /undmail/guiproto/AddressBookController.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.5 -
( show annotations)
( download)
( as text)
Sun Feb 16 09:05:53 2003 UTC
(21 years, 1 month ago)
by footashida
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +2 -2 lines
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
#import <AppKit/AppKit.h> |
| 2 |
@class ABGroup; |
| 3 |
@class ComposeController; |
| 4 |
|
| 5 |
@interface AddressBookController : NSWindowController{ |
| 6 |
IBOutlet id nameTable; |
| 7 |
IBOutlet NSView *addressBookView; |
| 8 |
NSMutableArray *group; |
| 9 |
ABGroup *currentGroup; |
| 10 |
id windowController; |
| 11 |
IBOutlet NSDrawer *drawer; |
| 12 |
} |
| 13 |
-(NSView *)addressBookView; |
| 14 |
- (NSMutableArray *)listGroup; |
| 15 |
- (void) updateGroup; |
| 16 |
- (void) updateUI; |
| 17 |
|
| 18 |
- (void) setGroup:(NSMutableArray *)aGroup; |
| 19 |
- (NSMutableArray *)group; |
| 20 |
- (void) setCurrentGroup:(ABGroup *)cGroup; |
| 21 |
- (ABGroup *)currentGroup; |
| 22 |
- (void) setWindowController:(id)controller; |
| 23 |
- (void)showAddressBookWindow; |
| 24 |
- (NSMenu *)createAddressMenu:(id)sender action:(SEL)anAction title:(NSString *)title; |
| 25 |
- (NSMenu *)addressMenu; |
| 26 |
@end |
|