blob: 0819b4298f6becf405174fe042f37c197cf13d48 [file] [log] [blame]
Loïc Siretfcb4ca62016-09-21 17:12:09 -04001/*
2 * Copyright (C) 2015-2016 Savoir-faire Linux Inc.
3 * Author: Loïc Siret <loic.siret@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>
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040021#import "LrcModelsProtocol.h"
Loïc Siretfcb4ca62016-09-21 17:12:09 -040022
23@protocol RingWizardNewDelegate <NSObject>
24- (void)didCreateAccountWithSuccess:(BOOL)success;
Loïc Siret3652cfb2016-10-27 10:12:07 -040025- (void)showView:(NSView*)view;
Loïc Siretfcb4ca62016-09-21 17:12:09 -040026@end
27
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040028@interface RingWizardNewAccountVC : NSViewController <LrcModelsProtocol>
Loïc Siretfcb4ca62016-09-21 17:12:09 -040029
30@property (nonatomic, weak)NSWindowController <RingWizardNewDelegate>* delegate;
31
Alexandre Lision882289b2016-10-31 16:10:39 -040032@property (nonatomic, weak)NSString* registeredName;
Loïc Siretfcb4ca62016-09-21 17:12:09 -040033@property (nonatomic, weak)NSString* password;
Loïc Siret3652cfb2016-10-27 10:12:07 -040034@property (nonatomic, weak)NSString* repeatPassword;
35@property (readonly)BOOL isRepeatPasswordValid;
36@property (readonly)BOOL isPasswordValid;
Alexandre Lision882289b2016-10-31 16:10:39 -040037@property (assign)BOOL isUserNameAvailable;
Loïc Siret3652cfb2016-10-27 10:12:07 -040038
Alexandre Lision882289b2016-10-31 16:10:39 -040039@property (readonly)BOOL userNameAvailableORNotBlockchain;
40@property (readonly)BOOL withBlockchain;
41@property (assign)NSInteger signUpBlockchainState;
Loïc Siretfcb4ca62016-09-21 17:12:09 -040042- (void)show;
43@end