blob: 2137a3276ea4ee453e2f2ddaa0c6cef0cf961848 [file] [log] [blame]
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -04001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002 * Copyright (C) 2018-2019 Savoir-faire Linux Inc.
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -04003 * Author: Kateryna Kostiuk <kateryna.kostiuk@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#import "LrcModelsProtocol.h"
22#include <string>
23
24@protocol AccountGeneralDelegate <NSObject>
25-(void) triggerAdvancedOptions;
26-(void) updateFrame;
27@end
28
29@protocol AccountGeneralProtocol
30@property (retain, nonatomic) id <AccountGeneralDelegate> delegate;
31- (IBAction)triggerAdwancedSettings: (NSButton *)sender;
32- (void) setSelectedAccount:(std::string) account;
33@end
34
35@interface AccountSettingsVC : NSViewController <LrcModelsProtocol, AccountGeneralDelegate>
36- (void) initFrame;
37- (void) setSelectedAccount:(std::string) account;
38- (void) show;
39-(void) hide;
40
41@end