Abizern / bonsoir

A Cocoa / Objective-C application that uses the Bonjour service to share contact details between macs on the same network.

This URL has Read+Write access

bonsoir / MainWindowController.h
100644 18 lines (12 sloc) 0.473 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import <Cocoa/Cocoa.h>
 
extern NSString * const kBroadcastPersonId;
 
 
@interface MainWindowController : NSWindowController {
    NSImageView *broadcastImageView;
    NSTextField *broadcastNameField;
    NSTableView *availableVCardTable;
}
@property (readonly) IBOutlet NSImageView *broadcastImageView;
@property (readonly) IBOutlet NSTextField *broadcastNameField;
@property (readonly) IBOutlet NSTableView *availableVCardTable;
 
- (IBAction)changeVCard:(id)sender;
 
@end