2018-04-11 18:20:40 +02:00
|
|
|
// gomuks - A terminal Matrix client written in Go.
|
2019-01-17 13:13:25 +01:00
|
|
|
// Copyright (C) 2019 Tulir Asokan
|
2018-04-11 18:20:40 +02: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-04-11 18:20:40 +02: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-04-11 18:20:40 +02: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-04-11 18:20:40 +02:00
|
|
|
|
|
|
|
package messages
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/gob"
|
|
|
|
"time"
|
|
|
|
|
2019-01-17 13:13:25 +01:00
|
|
|
"maunium.net/go/mautrix"
|
|
|
|
|
2018-06-01 23:43:56 +02:00
|
|
|
"maunium.net/go/gomuks/config"
|
2018-06-01 23:44:21 +02:00
|
|
|
"maunium.net/go/gomuks/ui/messages/tstring"
|
2018-04-11 18:20:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2018-04-13 20:25:45 +02:00
|
|
|
gob.Register(&ExpandedTextMessage{})
|
2018-04-11 18:20:40 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 20:25:45 +02:00
|
|
|
type ExpandedTextMessage struct {
|
2018-05-22 21:06:48 +02:00
|
|
|
BaseMessage
|
2018-04-13 20:25:45 +02:00
|
|
|
MsgText tstring.TString
|
2018-04-11 18:20:40 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 20:25:45 +02:00
|
|
|
// NewExpandedTextMessage creates a new ExpandedTextMessage object with the provided values and the default state.
|
2018-11-13 23:00:35 +01:00
|
|
|
func NewExpandedTextMessage(id, sender, displayname string, msgtype mautrix.MessageType, text tstring.TString, timestamp time.Time) UIMessage {
|
2018-04-13 20:25:45 +02:00
|
|
|
return &ExpandedTextMessage{
|
2018-05-22 21:06:48 +02:00
|
|
|
BaseMessage: newBaseMessage(id, sender, displayname, msgtype, timestamp),
|
2018-06-01 23:44:21 +02:00
|
|
|
MsgText: text,
|
2018-04-11 18:20:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-13 20:25:45 +02:00
|
|
|
func (msg *ExpandedTextMessage) GenerateText() tstring.TString {
|
|
|
|
return msg.MsgText
|
2018-04-11 18:20:40 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 20:25:45 +02:00
|
|
|
func (msg *ExpandedTextMessage) NotificationContent() string {
|
|
|
|
return msg.MsgText.String()
|
|
|
|
}
|
|
|
|
|
2018-05-22 21:06:48 +02:00
|
|
|
func (msg *ExpandedTextMessage) PlainText() string {
|
|
|
|
return msg.MsgText.String()
|
|
|
|
}
|
|
|
|
|
2018-06-01 23:43:56 +02:00
|
|
|
func (msg *ExpandedTextMessage) CalculateBuffer(prefs config.UserPreferences, width int) {
|
|
|
|
msg.calculateBufferWithText(prefs, msg.MsgText, width)
|
2018-04-13 20:25:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// RecalculateBuffer calculates the buffer again with the previously provided width.
|
|
|
|
func (msg *ExpandedTextMessage) RecalculateBuffer() {
|
2018-06-01 23:43:56 +02:00
|
|
|
msg.CalculateBuffer(msg.prevPrefs, msg.prevBufferWidth)
|
2018-04-11 18:20:40 +02:00
|
|
|
}
|