blob: db0fe7c896f6b62baebcb14787c23aa87dd9db35 [file] [log] [blame]
Anthony Léonard1f70f722017-10-02 10:53:32 -04001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002 * Copyright (C) 2017-2019 Savoir-faire Linux Inc.
Anthony Léonard1f70f722017-10-02 10:53:32 -04003 * Author: Anthony Léonard <anthony.leonard@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 Kostiuk1f8c1252018-07-30 18:18:57 -040021#import "LrcModelsProtocol.h"
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040022#include <qstring.h>
Anthony Léonard1f70f722017-10-02 10:53:32 -040023
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040024@protocol PasswordChangeDelegate
Anthony Léonard1f70f722017-10-02 10:53:32 -040025
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040026@optional
27
28-(void) paswordCreatedWithSuccess:(BOOL) success;
29
30@end
31
32@interface PasswordChangeWC : NSWindowController <NSTextFieldDelegate, LrcModelsProtocol>
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040033@property QString selectedAccountID;
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040034@property (retain, nonatomic) id <PasswordChangeDelegate> delegate;
Anthony Léonard1f70f722017-10-02 10:53:32 -040035
36@end