2018-03-21 17:46:19 +01:00
|
|
|
// gomuks - A terminal Matrix client written in Go.
|
2019-01-17 13:13:25 +01:00
|
|
|
// Copyright (C) 2019 Tulir Asokan
|
2018-03-21 17:46:19 +01:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
2019-01-17 13:13:25 +01:00
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
2018-03-21 17:46:19 +01:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// 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
|
2019-01-17 13:13:25 +01:00
|
|
|
// GNU Affero General Public License for more details.
|
2018-03-21 17:46:19 +01:00
|
|
|
//
|
2019-01-17 13:13:25 +01:00
|
|
|
// 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/>.
|
2018-03-21 17:46:19 +01:00
|
|
|
|
2018-04-09 22:45:54 +02:00
|
|
|
package messages
|
2018-03-21 17:46:19 +01:00
|
|
|
|
2018-04-10 15:07:16 +02:00
|
|
|
import (
|
2018-06-01 23:44:21 +02:00
|
|
|
"maunium.net/go/gomuks/config"
|
2018-04-10 15:07:16 +02:00
|
|
|
"maunium.net/go/gomuks/interface"
|
2019-04-10 00:04:39 +02:00
|
|
|
"maunium.net/go/mautrix"
|
2019-04-07 17:21:38 +02:00
|
|
|
"maunium.net/go/mauview"
|
2019-04-09 17:45:41 +02:00
|
|
|
"maunium.net/go/tcell"
|
2018-04-10 15:07:16 +02:00
|
|
|
)
|
2018-03-21 17:46:19 +01:00
|
|
|
|
2018-04-22 19:13:57 +02:00
|
|
|
// UIMessage is a wrapper for the content and metadata of a Matrix message intended to be displayed.
|
2018-04-09 22:45:54 +02:00
|
|
|
type UIMessage interface {
|
|
|
|
ifc.Message
|
2018-03-21 17:46:19 +01:00
|
|
|
|
2019-04-10 00:04:39 +02:00
|
|
|
Type() mautrix.MessageType
|
2019-04-09 17:45:41 +02:00
|
|
|
Sender() string
|
|
|
|
SenderColor() tcell.Color
|
|
|
|
TextColor() tcell.Color
|
|
|
|
TimestampColor() tcell.Color
|
|
|
|
FormatTime() string
|
|
|
|
FormatDate() string
|
2019-04-10 00:42:27 +02:00
|
|
|
SameDate(message UIMessage) bool
|
2019-04-09 17:45:41 +02:00
|
|
|
|
2019-04-10 01:19:38 +02:00
|
|
|
SetReplyTo(message UIMessage)
|
2018-06-01 23:43:56 +02:00
|
|
|
CalculateBuffer(preferences config.UserPreferences, width int)
|
2019-04-07 17:21:38 +02:00
|
|
|
Draw(screen mauview.Screen)
|
2018-04-09 22:45:54 +02:00
|
|
|
Height() int
|
2018-05-22 23:44:29 +02:00
|
|
|
PlainText() string
|
2018-04-10 15:07:16 +02:00
|
|
|
|
|
|
|
RealSender() string
|
2018-04-18 17:35:24 +02:00
|
|
|
RegisterMatrix(matrix ifc.MatrixContainer)
|
2018-04-10 15:07:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const DateFormat = "January _2, 2006"
|
|
|
|
const TimeFormat = "15:04:05"
|