1 #import <Cocoa/Cocoa.h>
3 @interface LoginDialogController
: NSObject
{
7 IBOutlet NSTextField
*m_host_field
;
8 IBOutlet NSTextField
*m_port_field
;
9 IBOutlet NSTextField
*m_pass_field
;
12 NSString
*m_host
, *m_pass
;
16 - (bool)showDlg
:(NSWindow
*)window
;
18 - (IBAction
)closeCancel
:(id
)sender
;
19 - (IBAction
)closeOK
:(id
)sender
;
21 @
property (readonly
) NSString
*host
;
22 @
property (readonly
) int port
;
23 @
property (readonly
) NSString
*pass
;