blob: 82200cdc98c73dce3139f43961cbbdd907f7ccc5 [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"
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040022#import <qstring.h>
Loïc Siretfcb4ca62016-09-21 17:12:09 -040023
24@protocol RingWizardNewDelegate <NSObject>
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040025- (void)didCreateAccountWithSuccess:(BOOL)success accountId:(const QString&)accountId;
Loïc Siret3652cfb2016-10-27 10:12:07 -040026- (void)showView:(NSView*)view;
Loïc Siretfcb4ca62016-09-21 17:12:09 -040027@end
28
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040029@interface RingWizardNewAccountVC : NSViewController <LrcModelsProtocol>
Loïc Siretfcb4ca62016-09-21 17:12:09 -040030
31@property (nonatomic, weak)NSWindowController <RingWizardNewDelegate>* delegate;
32
Alexandre Lision882289b2016-10-31 16:10:39 -040033@property (nonatomic, weak)NSString* registeredName;
Loïc Siretfcb4ca62016-09-21 17:12:09 -040034@property (nonatomic, weak)NSString* password;
Loïc Siret3652cfb2016-10-27 10:12:07 -040035@property (nonatomic, weak)NSString* repeatPassword;
36@property (readonly)BOOL isRepeatPasswordValid;
37@property (readonly)BOOL isPasswordValid;
Alexandre Lision882289b2016-10-31 16:10:39 -040038@property (assign)BOOL isUserNameAvailable;
Loïc Siret3652cfb2016-10-27 10:12:07 -040039
Alexandre Lision882289b2016-10-31 16:10:39 -040040@property (readonly)BOOL userNameAvailableORNotBlockchain;
41@property (readonly)BOOL withBlockchain;
42@property (assign)NSInteger signUpBlockchainState;
Loïc Siretfcb4ca62016-09-21 17:12:09 -040043- (void)show;
Kateryna Kostiukc7e68f32019-10-09 16:15:45 -040044
45- (void)prepareViewToShow;
Loïc Siretfcb4ca62016-09-21 17:12:09 -040046@end