blob: f26c5adbbc13270b9dc023bbb5c5437dbfcaede1 [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
Loïc Siret31d5cc02016-09-08 14:38:24 -040022
23#import <QtCore/qdir.h>
24
25#import "LoadingWCDelegate.h"
26#import "AbstractLoadingWC.h"
27
28typedef NS_ENUM(NSUInteger, Action) {
29 ACTION_EXPORT = 0,
30 ACTION_IMPORT = 1,
31};
32
Alexandre Lision886cde12016-10-25 17:39:49 -040033@protocol RestoreAccountDelegate <LoadingWCDelegate>
Alexandre Lisionc1f96662016-03-23 17:24:19 -040034
35@optional
36
Loïc Siret31d5cc02016-09-08 14:38:24 -040037-(void) didCompleteImport;
Alexandre Lisionc1f96662016-03-23 17:24:19 -040038
39@end
40
Alexandre Lision886cde12016-10-25 17:39:49 -040041@interface RestoreAccountWC : AbstractLoadingWC
Alexandre Lisionc1f96662016-03-23 17:24:19 -040042
Alexandre Lision886cde12016-10-25 17:39:49 -040043- (id)initWithDelegate:(id <LoadingWCDelegate>) del;
Alexandre Lisionc1f96662016-03-23 17:24:19 -040044
Loïc Siret31d5cc02016-09-08 14:38:24 -040045/**
46 * Allow the NSPathControl of this window to select files or not
Alexandre Lisionc1f96662016-03-23 17:24:19 -040047 */
Loïc Siret31d5cc02016-09-08 14:38:24 -040048@property (nonatomic) BOOL allowFileSelection;
Alexandre Lisionc1f96662016-03-23 17:24:19 -040049
50/**
51 * password string contained in passwordField.
52 * This is a KVO method to bind the text with the OK Button
53 * if password.length is > 0, button is enabled, otherwise disabled
54 */
55@property (retain) NSString* password;
56
57/**
Loïc Siret31d5cc02016-09-08 14:38:24 -040058 * Object uses to store account to exports
Alexandre Lisionc1f96662016-03-23 17:24:19 -040059 */
Loïc Siret31d5cc02016-09-08 14:38:24 -040060@property (assign) QStringList accounts;
Alexandre Lisionc1f96662016-03-23 17:24:19 -040061
62@end