123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- // _____ _
- // |_ _| |_ _ _ ___ ___ _ __ __ _
- // | | | ' \| '_/ -_) -_) ' \/ _` |_
- // |_| |_||_|_| \___\___|_|_|_\__,_(_)
- //
- // Threema iOS Client
- // Copyright (c) 2014-2020 Threema GmbH
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License, version 3,
- // as published by the Free Software Foundation.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with this program. If not, see <https://www.gnu.org/licenses/>.
- #import "BallotMatrixLabelView.h"
- #import "RectUtil.h"
- #define FONT_COLOR [Colors fontNormal]
- #define HAIRLINE_WIDTH 1.0f
- #define MAX_WIDTH 300.0f
- #define X_PADDING 4.0f
- @interface BallotMatrixLabelView ()
- @property UILabel *label;
- @end
- @implementation BallotMatrixLabelView
- + (instancetype)labelForString:(NSString *)text at:(CGRect)rect {
- BallotMatrixLabelView *view = [[BallotMatrixLabelView alloc] initWithFrame:rect];
- view.maxWidth = MAX_WIDTH;
- [view setupLabel];
- [view setText:text];
-
- return view;
- }
- - (void)setText:(NSString *)text {
- [_label setText:text];
- }
- - (NSString *)text {
- return _label.text;
- }
- -(void)setFont:(UIFont *)font {
- _label.font = font;
- }
- -(UIFont *)font {
- return _label.font;
- }
- - (void)setTextAlignment:(NSTextAlignment)textAlignment {
- _label.textAlignment = textAlignment;
- }
- - (void)setBorderColor: (UIColor *)color {
- self.layer.borderColor = color.CGColor;
- }
- - (void)setBorderWidth: (CGFloat)width {
- self.layer.borderWidth = width;
- }
- - (void)setTextColor:(UIColor *)color {
- _label.textColor = color;
- }
- - (void) setupLabel {
- CGRect labelRect = [RectUtil growRect:self.bounds byDx:-2.0*X_PADDING byDy:0.0];
- _label = [[UILabel alloc] initWithFrame:labelRect];
- _label.autoresizingMask = UIViewAutoresizingFlexibleWidth;
- _label.textColor = FONT_COLOR;
-
- [self addSubview:_label];
- }
- - (CGSize)sizeThatFits:(CGSize)size {
- CGSize labelSize = [_label sizeThatFits:size];
-
- CGFloat width = fminf(_maxWidth, labelSize.width);
- return CGSizeMake(width, self.bounds.size.height);
- }
- -(void)offsetAndResizeHeight:(CGFloat)yOffset {
- _label.frame = [RectUtil offsetAndResizeRect:_label.frame byX:0.0 byY:yOffset];
- }
- @end
|