/* MIT License Copyright (c) 2017-2018 MessageKit Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import Foundation /// A protocol used by the `MessagesCollectionViewFlowLayout` object to determine /// the size and layout of a `MessageCollectionViewCell` and its contents. public protocol MessagesLayoutDelegate: AnyObject { /// Specifies the size to use for a header view. /// /// - Parameters: /// - section: The section number of the header. /// - messagesCollectionView: The `MessagesCollectionView` in which this header will be displayed. /// /// - Note: /// The default value returned by this method is a size of `GGSize.zero`. func headerViewSize(for section: Int, in messagesCollectionView: MessagesCollectionView) -> CGSize /// Specifies the size to use for a footer view. /// /// - Parameters: /// - section: The section number of the footer. /// - messagesCollectionView: The `MessagesCollectionView` in which this footer will be displayed. /// /// - Note: /// The default value returned by this method is a size of `GGSize.zero`. func footerViewSize(for section: Int, in messagesCollectionView: MessagesCollectionView) -> CGSize /// Specifies the height for the `MessageContentCell`'s top label. /// /// - Parameters: /// - message: The `MessageType` that will be displayed for this cell. /// - indexPath: The `IndexPath` of the cell. /// - messagesCollectionView: The `MessagesCollectionView` in which this cell will be displayed. /// /// - Note: /// The default value returned by this method is zero. func cellTopLabelHeight(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> CGFloat /// Specifies the height for the message bubble's top label. /// /// - Parameters: /// - message: The `MessageType` that will be displayed for this cell. /// - indexPath: The `IndexPath` of the cell. /// - messagesCollectionView: The `MessagesCollectionView` in which this cell will be displayed. /// /// - Note: /// The default value returned by this method is zero. func messageTopLabelHeight(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> CGFloat /// Specifies the height for the `MessageContentCell`'s bottom label. /// /// - Parameters: /// - message: The `MessageType` that will be displayed for this cell. /// - indexPath: The `IndexPath` of the cell. /// - messagesCollectionView: The `MessagesCollectionView` in which this cell will be displayed. /// /// - Note: /// The default value returned by this method is zero. func messageBottomLabelHeight(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> CGFloat /// Custom cell size calculator for messages with MessageType.custom. /// /// - Parameters: /// - message: The custom message /// - indexPath: The `IndexPath` of the cell. /// - messagesCollectionView: The `MessagesCollectionView` in which this cell will be displayed. /// /// - Note: /// The default implementation will throw fatalError(). You must override this method if you are using messages with MessageType.custom. func customCellSizeCalculator(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> CellSizeCalculator } public extension MessagesLayoutDelegate { func headerViewSize(for section: Int, in messagesCollectionView: MessagesCollectionView) -> CGSize { return .zero } func footerViewSize(for section: Int, in messagesCollectionView: MessagesCollectionView) -> CGSize { return .zero } func cellTopLabelHeight(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> CGFloat { return 0 } func messageTopLabelHeight(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> CGFloat { return 0 } func messageBottomLabelHeight(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> CGFloat { return 0 } func customCellSizeCalculator(for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> CellSizeCalculator { fatalError("Must return a CellSizeCalculator for MessageKind.custom(Any?)") } }