-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRAUPasswordWindow.h
More file actions
38 lines (29 loc) · 1.07 KB
/
Copy pathRAUPasswordWindow.h
File metadata and controls
38 lines (29 loc) · 1.07 KB
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
33
34
35
36
37
38
//
// RAUPasswordWindowController.h
// RAR-Archive Utility
//
// Created by BlackWolf on 11.04.10.
// Copyright 2010 Mario Schreiner. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class RAUPasswordWindow;
@protocol RAUPasswordWindowDelegate
@optional
-(void)passwordWindowOKButtonPressed:(RAUPasswordWindow *)passwordWindow;
-(void)passwordWindowCancelButtonPressed:(RAUPasswordWindow *)passwordWindow;
@end
@interface RAUPasswordWindow : NSWindow {
id<RAUPasswordWindowDelegate> delegate;
NSTextField *titleLabel;
NSTextField *passwordTextField;
NSButton *OKButton;
NSButton *cancelButton;
}
@property (readwrite, assign) id<RAUPasswordWindowDelegate> delegate;
@property (readwrite, assign) IBOutlet NSTextField *titleLabel;
@property (readwrite, assign) IBOutlet NSTextField *passwordTextField;
@property (readwrite, assign) IBOutlet NSButton *OKButton;
@property (readwrite, assign) IBOutlet NSButton *cancelButton;
-(IBAction)passwordWindowOKButtonPressed:(id)sender;
-(IBAction)passwordWindowCancelButtonPressed:(id)sender;
@end