blob: a9d94979753172d4d1676f2710df14fab453e0c1 [file] [log] [blame]
Alexandre Lision0f66bd32016-01-18 11:30:45 -05001/*
2 * Copyright (C) 2016 Savoir-faire Linux Inc.
3 * 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 "IMTableCellView.h"
21
22#import "NSColor+RingTheme.h"
23
24@implementation IMTableCellView
25@synthesize msgView;
26@synthesize photoView;
27
28
29- (void) setup
30{
31 if ([self.identifier isEqualToString:@"RightMessageView"]) {
32 [self.msgView setBackgroundColor:[NSColor ringBlue]];
33 }
34 [self.msgView setString:@""];
35 [self.msgView setAutoresizingMask:NSViewWidthSizable];
36 [self.msgView setEnabledTextCheckingTypes:NSTextCheckingTypeLink];
37 [self.msgView setAutomaticLinkDetectionEnabled:YES];
38}
39
40- (void) updateWidthConstraint:(CGFloat) newWidth
41{
42 [self.msgView removeConstraints:[self.msgView constraints]];
43 NSLayoutConstraint* constraint = [NSLayoutConstraint
44 constraintWithItem:self.msgView
45 attribute:NSLayoutAttributeWidth
46 relatedBy:NSLayoutRelationEqual
47 toItem: nil
48 attribute:NSLayoutAttributeWidth
49 multiplier:1.0f
50 constant:newWidth];
51
52 [self.msgView addConstraint:constraint];
53}
54
55@end