blob: 31db7a8b976e987fbb112310a83c76440565a104 [file] [log] [blame]
Alexandre Lision624b1a82016-09-11 19:29:01 -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//LRC
23#import <account.h>
24
25//RING
26#import "LoadingWCProtocol.h"
27#import "LoadingWCDelegate.h"
28#import "AbstractLoadingWC.h"
29
30@protocol MigrateRingAccountsDelegate <LoadingWCDelegate>
31
32-(void) migrationDidCompleteWithError;
33-(void) migrationDidComplete;
34
35@end
36
37@interface MigrateRingAccountsWC : AbstractLoadingWC <LoadingWCProtocol>
38
39/**
40 * password string contained in passwordField.
41 */
42@property (retain) NSString* password;
43
44/**
45 * passwordConfirmation string contained in passwordConfirmationField.
46 */
47@property (retain) NSString* passwordConfirmation;
48
49/**
50 * computed properties calculated by password string contained in
51 * passwordField and passwordCOnfirmation string contained
52 * inpasswordConfirmationField
53 * This is a KVO method to bind the text with the OK Button
54 * if password.length is > 0 AND passwordConfirmation.length > 0
55 * AND password isEqualsToString passwordCOnfirmationbutton is enabled,
56 * otherwise disabled
57 */
58@property (readonly) BOOL validatePasswords;
59
60@property Account* account;
61
62@end