-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathJabberApp.h
More file actions
32 lines (30 loc) · 972 Bytes
/
JabberApp.h
File metadata and controls
32 lines (30 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
// JabberApp.h
// Jabber
//
// Created by David Chisnall on Mon Apr 26 2004.
// Copyright (c) 2004 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <XMPPKit/XMPPAccount.h>
#import "PreferenceWindowController.h"
#import "RosterController.h"
#import "CustomPresenceWindowController.h"
#import "AccountWindowController.h"
@interface JabberApp : NSObject {
XMPPAccount * account;
RosterController * rosterWindow;
IBOutlet CustomPresenceWindowController * customPresenceWindow;
IBOutlet NSMenuItem * debugMenu;
IBOutlet NSTextView * xmlLogBox;
AccountWindowController * accountWindow;
}
- (void) reconnect;
- (void) redrawRosters;
- (void) setPresence:(unsigned char)_presence withMessage:(NSString*)_message;
- (void) setCustomPresence:(id) sender;
- (void) applicationDidFinishLaunching:(NSNotification *)aNotification;
- (XMPPAccount*) account;
- (IBAction) showRosterWindow:(id)_sender;
- (NSTextView*) xmlLogBox;
@end