mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-19 16:13:42 +02:00
4331994d72
Implement close button and store the action in Core Data. Hide the preview image view when no image is received. Remove line breaks in description text.
50 lines
1.5 KiB
Swift
50 lines
1.5 KiB
Swift
/*
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import Foundation
|
|
|
|
/// MXKRoomBubbleTableViewCell layout constants
|
|
@objcMembers
|
|
final class RoomBubbleCellLayout: NSObject {
|
|
|
|
// Reactions
|
|
|
|
static let reactionsViewTopMargin: CGFloat = 1.0
|
|
static let reactionsViewLeftMargin: CGFloat = 55.0
|
|
static let reactionsViewRightMargin: CGFloat = 15.0
|
|
|
|
// Read receipts
|
|
|
|
static let readReceiptsViewTopMargin: CGFloat = 5.0
|
|
static let readReceiptsViewRightMargin: CGFloat = 6.0
|
|
static let readReceiptsViewHeight: CGFloat = 16.0
|
|
static let readReceiptsViewWidth: CGFloat = 150.0
|
|
|
|
// Read marker
|
|
|
|
static let readMarkerViewHeight: CGFloat = 2.0
|
|
|
|
// Timestamp
|
|
|
|
static let timestampLabelHeight: CGFloat = 18.0
|
|
static let timestampLabelWidth: CGFloat = 39.0
|
|
|
|
// Others
|
|
|
|
static let encryptedContentLeftMargin: CGFloat = 15.0
|
|
static let urlPreviewViewTopMargin: CGFloat = 8.0
|
|
}
|