blob: 06d2441228d67c8e85c0069192ab423bd2827fab [file] [log] [blame]
Kateryna Kostiuk64d025a2017-07-14 11:30:44 -04001/*
2 * Copyright (C) 2017 Savoir-faire Linux Inc.
3 * 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 "SendMessagePanel.h"
21#import "NSColor+RingTheme.h"
22
23@implementation SendMessagePanel
24
25-(void) awakeFromNib {
26 self.messageCell.viewDelegate = self;
27}
28
29
30- (void)drawRect:(NSRect)dirtyRect {
31
32 NSBezierPath *path = [NSBezierPath bezierPath];
33 [path moveToPoint:NSMakePoint(40, dirtyRect.size.height)];
34 [path lineToPoint:NSMakePoint(dirtyRect.size.width - 40 , dirtyRect.size.height)];
35 BOOL isEditing = [(NSTextField *)[self.messageCell controlView] currentEditor] != nil;
36 if(isEditing) {
37 [[NSColor ringBlue]set];
38 [path setLineWidth:3];
39 }
40 else {
41
42 [[NSColor quaternaryLabelColor]set];
43 [path setLineWidth:2];
44 }
45 [path stroke];
46 [super drawRect:dirtyRect];
47}
48
49-(void) focusChanged {
50
51 [self setNeedsDisplay:YES];
52}
53
54@end