blob: 667e481873e5f8e7b787e00b3804b44d327c7b91 [file] [log] [blame]
Alexandre Lisionc1f96662016-03-23 17:24:19 -04001/*
2 * Copyright (C) 2016 Savoir-faire Linux Inc.
3 * Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#import <Cocoa/Cocoa.h>
21
22@protocol PathPasswordDelegate <NSObject>
23
24@optional
25
26-(void) didCompleteWithPath:(NSURL*) path Password:(NSString*) password;
27-(void) didCompleteWithPath:(NSURL*) path Password:(NSString*) password ActionCode:(NSInteger) requestCode;
28
29@end
30
31@interface PathPasswordWC : NSWindowController
32
33/*
34 * Delegate to inform about completion of the linking process between
35 * a ContactMethod and a Person.
36 */
37@property (nonatomic) id <PathPasswordDelegate> delegate;
38
39/*
40 * caller specific code to identify ongoing action
41 */
42@property (nonatomic) NSInteger actionCode;
43
44/*
45 * Custom init
46 */
47- (id)initWithDelegate:(id <PathPasswordDelegate>) del actionCode:(NSInteger) code;
48
49/**
50 * password string contained in passwordField.
51 * This is a KVO method to bind the text with the OK Button
52 * if password.length is > 0, button is enabled, otherwise disabled
53 */
54@property (retain) NSString* password;
55
56/**
57 * Allow the NSPathControl of this window to select files or not
58 */
59@property (nonatomic) BOOL allowFileSelection;
60
61/*
62 * Show progress during action completion
63 */
64- (void)showLoading;
65
66
67/*
68 * Display error message to the user
69 */
70- (void)showError:(NSString*) error;
71
72
73@end