Browse CVS Repository
Contents of /undmail/guiproto/AddressBookController.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.3 -
( show annotations)
( download)
( as text)
Fri Feb 14 16:47:45 2003 UTC
(21 years, 2 months ago)
by footashida
Branch: MAIN
Changes since 1.2: +5 -1 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 |
ComposeController *composeController; |
| 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) setComposeController:(ComposeController *)controller; |
| 23 |
- (void)showAddressBookWindow; |
| 24 |
@end |
|