aboutsummaryrefslogtreecommitdiffstats
path: root/Sources/WireGuardApp/UI/macOS/View/LogViewCell.swift
blob: 1869c81766ac62af4159288b29e330db795248c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// SPDX-License-Identifier: MIT
// Copyright © 2018-2021 WireGuard LLC. All Rights Reserved.

import Cocoa

class LogViewCell: NSTableCellView {
    var text: String = "" {
        didSet { textField?.stringValue = text }
    }

    init() {
        super.init(frame: .zero)

        let textField = NSTextField(wrappingLabelWithString: "")
        addSubview(textField)
        textField.translatesAutoresizingMaskIntoConstraints = false
        NSLayoutConstraint.activate([
            textField.leadingAnchor.constraint(equalTo: self.leadingAnchor),
            textField.trailingAnchor.constraint(equalTo: self.trailingAnchor),
            textField.topAnchor.constraint(equalTo: self.topAnchor),
            textField.bottomAnchor.constraint(equalTo: self.bottomAnchor)
        ])

        self.textField = textField
    }

    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    override func prepareForReuse() {
        textField?.stringValue = ""
    }
}

class LogViewTimestampCell: LogViewCell {
    override init() {
        super.init()
        if let textField = textField {
            textField.maximumNumberOfLines = 1
            textField.lineBreakMode = .byClipping
            textField.setContentCompressionResistancePriority(.defaultHigh, for: .vertical)
            textField.setContentHuggingPriority(.defaultLow, for: .vertical)
        }
    }

    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}

class LogViewMessageCell: LogViewCell {
    override init() {
        super.init()
        if let textField = textField {
            textField.maximumNumberOfLines = 0
            textField.lineBreakMode = .byWordWrapping
            textField.setContentCompressionResistancePriority(.required, for: .vertical)
            textField.setContentHuggingPriority(.required, for: .vertical)
        }
    }

    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}