blob: d0bce131ea637e501a3c765056d09ec52a9c66dc [file] [log] [blame]
Alexandre Lision0f66bd32016-01-18 11:30:45 -05001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002 * Copyright (C) 2016-2019 Savoir-faire Linux Inc.
Alexandre Lision0f66bd32016-01-18 11:30:45 -05003 * 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>
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040021#import <qstring.h>
Alexandre Lision0f66bd32016-01-18 11:30:45 -050022
Kateryna Kostiukf6317422018-09-27 17:08:20 -040023namespace lrc {
24 namespace api {
25 class AVModel;
26 class ConversationModel;
27 }
28}
Anthony Léonard8585cc02017-12-28 14:03:45 -050029@class RingWindowController;
Kateryna Kostiukf6317422018-09-27 17:08:20 -040030@class LeaveMessageVC;
31@protocol LeaveMessageDelegate;
Anthony Léonard8585cc02017-12-28 14:03:45 -050032
Kateryna Kostiukf6317422018-09-27 17:08:20 -040033@interface ConversationVC : NSViewController <LeaveMessageDelegate>
Alexandre Lision0f66bd32016-01-18 11:30:45 -050034
35-(void) initFrame;
Andreas Traczykecdc4fa2018-03-22 16:11:47 -040036-(void) showWithAnimation:(BOOL)animate;
37-(void) hideWithAnimation:(BOOL)animate;
Alexandre Lision0f66bd32016-01-18 11:30:45 -050038
Kateryna Kostiukc867eb92020-03-08 13:15:17 -040039- (void) setConversationUid:(const QString&)convUid model:(lrc::api::ConversationModel*)model;
Anthony Léonard2382b562017-12-13 15:51:28 -050040
Kateryna Kostiukf6317422018-09-27 17:08:20 -040041- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil delegate:(RingWindowController*) mainWindow aVModel:(lrc::api::AVModel*) avModel;
42- (void) presentLeaveMessageView;
43
44-(NSViewController*) getMessagesView;
Anthony Léonard8585cc02017-12-28 14:03:45 -050045
Alexandre Lision0f66bd32016-01-18 11:30:45 -050046@end