blob: 569f732da26f6c91ff8fffb0ce8fd88fa0bfbabf [file] [log] [blame]
Alexandre Lision45f1f542016-08-25 15:16:17 -04001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002 * Copyright (C) 2016-2019 Savoir-faire Linux Inc.
Alexandre Lision45f1f542016-08-25 15:16:17 -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
20#import <Cocoa/Cocoa.h>
21
Alexandre Lision45f1f542016-08-25 15:16:17 -040022
23#import "LoadingWCDelegate.h"
24#import "AbstractLoadingWC.h"
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040025#import "LrcModelsProtocol.h"
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040026#include <qstring.h>
Alexandre Lision45f1f542016-08-25 15:16:17 -040027
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040028@interface ExportPasswordWC : AbstractLoadingWC <LrcModelsProtocol>
Alexandre Lision45f1f542016-08-25 15:16:17 -040029
30/**
31 * password string contained in passwordField.
32 * This is a KVO method to bind the text with the OK Button
33 * if password.length is > 0, button is enabled, otherwise disabled
34 */
35@property (retain) NSString* password;
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040036@property QString selectedAccountID;
Alexandre Lision45f1f542016-08-25 15:16:17 -040037
38@end