author | Jens Alfke <jens@mooseyard.com> |
Tue Jun 17 14:57:48 2008 -0700 (2008-06-17) | |
changeset 14 | 1af6415650bf |
parent 0 | d84d25d6cdbb |
child 17 | a1044ae95953 |
permissions | -rw-r--r-- |
1 //
2 // IChatUtils.h
3 // MYUtilities
4 //
5 // Created by Jens Alfke on 3/3/08.
6 // Copyright 2008 Jens Alfke. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 @class SBApplication, ABPerson;
13 @interface IChatUtils : NSObject
15 + (SBApplication*) app;
16 + (BOOL) isRunning;
17 + (void) activate;
18 + (NSString*) activeChatPartner;
19 + (BOOL) sendMessage: (NSString*)msg;
21 + (NSDictionary*) iChatInfoForOnlinePerson: (ABPerson*)abPerson;
22 + (BOOL) isPersonOnline: (ABPerson*)abPerson;
23 + (BOOL) sendMessage: (NSString*)msg toPerson: (ABPerson*)abPerson;
25 @end