2019-04-10 20:06:19 +02:00
|
|
|
// gomuks - A terminal Matrix client written in Go.
|
2020-04-19 17:10:14 +02:00
|
|
|
// Copyright (C) 2020 Tulir Asokan
|
2019-04-10 20:06:19 +02:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// 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
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
package html
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
2022-04-15 11:53:09 +02:00
|
|
|
"go.mau.fi/mauview"
|
2019-04-10 20:06:19 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type HorizontalLineEntity struct {
|
|
|
|
*BaseEntity
|
|
|
|
}
|
|
|
|
|
|
|
|
const HorizontalLineChar = '━'
|
|
|
|
|
|
|
|
func NewHorizontalLineEntity() *HorizontalLineEntity {
|
|
|
|
return &HorizontalLineEntity{&BaseEntity{
|
|
|
|
Tag: "hr",
|
|
|
|
Block: true,
|
|
|
|
DefaultHeight: 1,
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
2022-04-15 14:14:18 +02:00
|
|
|
func (he *HorizontalLineEntity) AdjustStyle(fn AdjustStyleFunc, reason AdjustStyleReason) Entity {
|
|
|
|
he.BaseEntity = he.BaseEntity.AdjustStyle(fn, reason).(*BaseEntity)
|
2020-02-19 20:54:53 +01:00
|
|
|
return he
|
|
|
|
}
|
|
|
|
|
2019-04-10 20:06:19 +02:00
|
|
|
func (he *HorizontalLineEntity) Clone() Entity {
|
|
|
|
return NewHorizontalLineEntity()
|
|
|
|
}
|
|
|
|
|
2022-04-15 14:14:18 +02:00
|
|
|
func (he *HorizontalLineEntity) Draw(screen mauview.Screen, ctx DrawContext) {
|
2019-04-10 20:06:19 +02:00
|
|
|
width, _ := screen.Size()
|
|
|
|
for x := 0; x < width; x++ {
|
|
|
|
screen.SetContent(x, 0, HorizontalLineChar, nil, he.Style)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (he *HorizontalLineEntity) PlainText() string {
|
|
|
|
return strings.Repeat(string(HorizontalLineChar), 5)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (he *HorizontalLineEntity) String() string {
|
|
|
|
return "&html.HorizontalLineEntity{},\n"
|
|
|
|
}
|