Upstream tarball 9278
[amule.git] / cocoa-mule / AppController.h
blob7f13f07829fea2e6f98a79ae0e8a2b0be0a57863
1 #import <Cocoa/Cocoa.h>
3 #import "EC.h"
4 #import "amuleData.h"
6 @interface AppController : NSObject {
7 IBOutlet id m_main_tabview;
9 ECRemoteConnection *m_connection;
10 amuleData *m_data;
12 int m_daemon_pid;
14 - (IBAction)show_Networks:(id)sender;
15 - (IBAction)show_Search:(id)sender;
16 - (IBAction)show_Sharing:(id)sender;
17 - (IBAction)show_Stats:(id)sender;
18 - (IBAction)show_Xfers:(id)sender;
19 - (IBAction)show_Preferences:(id)sender;
20 - (IBAction)show_About:(id)sender;
22 - (int)startDaemon;
24 @end