blob: 79b9df78dbc7bf1a2ff77103500be0ad5f1eadb2 [file] [log] [blame]
Alexandre Lision34079c22016-10-31 16:14:02 -04001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002 * Copyright (C) 2016-2019 Savoir-faire Linux Inc.
Alexandre Lision34079c22016-10-31 16:14:02 -04003 * 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
Alexandre Lision34079c22016-10-31 16:14:02 -040020
21#import "AbstractLoadingWC.h"
22#import "LoadingWCDelegate.h"
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040023#import "LrcModelsProtocol.h"
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040024#include <qstring.h>
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040025
Alexandre Lision34079c22016-10-31 16:14:02 -040026
27@protocol RegisterNameDelegate <LoadingWCDelegate>
28
29@optional
30
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040031- (void) didRegisterName:(NSString *) name withSuccess:(BOOL) success;
Alexandre Lision34079c22016-10-31 16:14:02 -040032
33@end
34
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040035@interface RegisterNameWC : AbstractLoadingWC <LrcModelsProtocol>
Alexandre Lision34079c22016-10-31 16:14:02 -040036
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040037@property (nonatomic, weak) NSViewController <RegisterNameDelegate>* delegate;
Alexandre Lision34079c22016-10-31 16:14:02 -040038
39/**
Alexandre Lision34079c22016-10-31 16:14:02 -040040 * KVO validators for the UI
41 */
Alexandre Lision34079c22016-10-31 16:14:02 -040042@property (assign)BOOL isUserNameAvailable;
43
Kateryna Kostiuk6495de82019-04-19 13:49:24 -040044@property (assign)BOOL couldRegister;
45
46@property (assign)NSString* passwordString;
47
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040048@property QString selectedAccountID;
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040049
Alexandre Lision34079c22016-10-31 16:14:02 -040050@end