blob: 3a6560cd10002d43b62dfc99fed2b449989c8473 [file] [log] [blame]
Alexandre Lision45f1f542016-08-25 15:16:17 -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#import <account.h>
23
24#import "LoadingWCDelegate.h"
25#import "AbstractLoadingWC.h"
26
27@protocol ExportPasswordDelegate <LoadingWCDelegate>
28
29@optional
30- (void)didCompleteWithPin:(NSString*) path Password:(NSString*) password;
31- (void)didStartWithPassword:(NSString*) password;
32
33@end
34
35@interface ExportPasswordWC : AbstractLoadingWC
36
37/**
38 * password string contained in passwordField.
39 * This is a KVO method to bind the text with the OK Button
40 * if password.length is > 0, button is enabled, otherwise disabled
41 */
42@property (retain) NSString* password;
43@property (assign) Account* account;
44
45@end