blob: 6f262ddd1bb20bf8aaf0f3b826ccd75428e63fc7 [file] [log] [blame]
Alexandre Lisionc1f96662016-03-23 17:24:19 -04001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002 * Copyright (C) 2016-2019 Savoir-faire Linux Inc.
Alexandre Lisionc1f96662016-03-23 17:24:19 -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
Loïc Siret31d5cc02016-09-08 14:38:24 -040022#import <QtCore/qdir.h>
23
24#import "LoadingWCDelegate.h"
25#import "AbstractLoadingWC.h"
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040026#import "LrcModelsProtocol.h"
Loïc Siret31d5cc02016-09-08 14:38:24 -040027
Alexandre Lision886cde12016-10-25 17:39:49 -040028@protocol BackupAccountDelegate <LoadingWCDelegate>
Alexandre Lisionc1f96662016-03-23 17:24:19 -040029
30@optional
31
Loïc Siret31d5cc02016-09-08 14:38:24 -040032-(void) didCompleteExportWithPath:(NSURL*) path;
Alexandre Lisionc1f96662016-03-23 17:24:19 -040033
34@end
35
Kateryna Kostiuk14366812018-08-24 16:30:20 -040036@interface BackupAccountWC : AbstractLoadingWC <LrcModelsProtocol, NSPathControlDelegate, NSOpenSavePanelDelegate>
Alexandre Lisionc1f96662016-03-23 17:24:19 -040037
Loïc Siret31d5cc02016-09-08 14:38:24 -040038/**
39 * Allow the NSPathControl of this window to select files or not
Alexandre Lisionc1f96662016-03-23 17:24:19 -040040 */
Loïc Siret31d5cc02016-09-08 14:38:24 -040041@property (nonatomic) BOOL allowFileSelection;
Kateryna Kostiuk14366812018-08-24 16:30:20 -040042@property std::string selectedAccountID;
Alexandre Lisionc1f96662016-03-23 17:24:19 -040043
Alexandre Lisionc1f96662016-03-23 17:24:19 -040044@end