2020-09-06 11:32:08 +02:00
|
|
|
;; tinmop: an humble gemini and pleroma client
|
2020-05-08 15:45:43 +02:00
|
|
|
;; Copyright (C) 2020 cage
|
|
|
|
|
|
|
|
;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(in-package :message-window)
|
|
|
|
|
2021-04-11 15:19:45 +02:00
|
|
|
(define-constant +row-invisible-field-key+ :invisible :test #'eq)
|
|
|
|
|
|
|
|
(define-constant +row-vertical-space-field-key+ :vertical-space :test #'eq)
|
|
|
|
|
2020-05-08 15:45:43 +02:00
|
|
|
(defclass message-window (wrapper-window
|
|
|
|
row-oriented-widget
|
|
|
|
focus-marked-window
|
|
|
|
title-window)
|
2021-04-10 13:52:56 +02:00
|
|
|
((line-position-mark
|
2020-05-08 15:45:43 +02:00
|
|
|
:initform (make-tui-string "0")
|
|
|
|
:initarg :line-position-mark
|
2020-06-22 13:58:04 +02:00
|
|
|
:accessor line-position-mark)
|
|
|
|
(metadata
|
|
|
|
:initform nil
|
|
|
|
:initarg :metadata
|
|
|
|
:accessor metadata)))
|
|
|
|
|
2021-04-11 15:19:45 +02:00
|
|
|
(defgeneric prepare-for-rendering (object text-data &key jump-to-first-row))
|
|
|
|
|
|
|
|
(defgeneric scroll-down (object &optional amount))
|
|
|
|
|
|
|
|
(defgeneric scroll-up (object &optional amount))
|
|
|
|
|
|
|
|
(defgeneric scroll-end (object))
|
|
|
|
|
|
|
|
(defgeneric scroll-begin (object))
|
|
|
|
|
|
|
|
(defgeneric scroll-next-page (object))
|
|
|
|
|
|
|
|
(defgeneric scroll-previous-page (object))
|
|
|
|
|
|
|
|
(defgeneric search-regex (object regex))
|
|
|
|
|
|
|
|
(defgeneric text->rendered-lines-rows (window text))
|
|
|
|
|
|
|
|
(defgeneric colorize-lines (object))
|
|
|
|
|
|
|
|
(defgeneric viewport-width (object))
|
|
|
|
|
2020-12-29 12:36:10 +01:00
|
|
|
(defun gemini-window-p ()
|
|
|
|
(gemini-viewer:gemini-metadata-p (message-window:metadata specials:*message-window*)))
|
|
|
|
|
2020-06-22 13:58:04 +02:00
|
|
|
(defun display-gemini-text-p (window)
|
|
|
|
(eq (keybindings window)
|
|
|
|
keybindings:*gemini-message-keymap*))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
2020-09-06 17:28:16 +02:00
|
|
|
(defun display-chat-p (window)
|
|
|
|
(eq (keybindings window)
|
|
|
|
keybindings:*chat-message-keymap*))
|
|
|
|
|
2020-06-28 12:59:23 +02:00
|
|
|
(defun prepare-for-display-status-mode (window)
|
2020-10-02 18:26:59 +02:00
|
|
|
(when (not (or (display-gemini-text-p window)
|
|
|
|
(display-chat-p window)))
|
|
|
|
(setf (keybindings window)
|
|
|
|
keybindings:*message-keymap*)))
|
2020-06-28 12:59:23 +02:00
|
|
|
|
2020-05-08 15:45:43 +02:00
|
|
|
(defun refresh-line-mark-config (window)
|
|
|
|
(multiple-value-bind (mark-value mark-fg mark-bg)
|
|
|
|
(swconf:message-window-line-mark-values)
|
|
|
|
(setf (line-position-mark window)
|
|
|
|
(make-tui-string mark-value
|
|
|
|
:fgcolor mark-fg
|
|
|
|
:bgcolor mark-bg))))
|
|
|
|
|
|
|
|
(defmethod refresh-config :after ((object message-window))
|
|
|
|
(refresh-config-colors object swconf:+key-message-window+)
|
|
|
|
(refresh-line-mark-config object)
|
|
|
|
(let* ((thread-window-width (win-width *thread-window*))
|
|
|
|
(thread-window-height (win-height *thread-window*))
|
|
|
|
(command-window-height (win-height *command-window*))
|
|
|
|
(main-window-height (win-height *main-window*))
|
|
|
|
(height (- main-window-height
|
|
|
|
command-window-height
|
|
|
|
thread-window-height))
|
|
|
|
(width thread-window-width)
|
|
|
|
(x (win-x *thread-window*))
|
|
|
|
(y (+ (win-y *thread-window*)
|
|
|
|
thread-window-height)))
|
|
|
|
(win-resize object width height)
|
|
|
|
(win-move object x y)))
|
|
|
|
|
|
|
|
(defmethod calculate ((object message-window) dt)
|
|
|
|
(declare (ignore object dt)))
|
|
|
|
|
2021-04-21 16:29:50 +02:00
|
|
|
(defun visible-rows (window)
|
|
|
|
(with-accessors ((row-selected-index row-selected-index)) window
|
|
|
|
(let* ((start row-selected-index)
|
|
|
|
(end (+ start
|
|
|
|
(win-height-no-border window))))
|
|
|
|
(values (line-oriented-window:rows-safe-subseq window
|
|
|
|
row-selected-index
|
|
|
|
:end end)
|
|
|
|
start
|
|
|
|
end))))
|
|
|
|
|
2020-05-08 15:45:43 +02:00
|
|
|
(defun draw-text (window)
|
2021-04-10 13:52:56 +02:00
|
|
|
(when hooks:*before-rendering-message-text*
|
|
|
|
(hooks:run-hook 'hooks:*before-rendering-message-text* window))
|
2021-04-08 15:13:31 +02:00
|
|
|
(with-accessors ((row-selected-index row-selected-index)) window
|
2021-04-21 16:29:50 +02:00
|
|
|
(let ((visible-rows (visible-rows window)))
|
|
|
|
(loop for line in visible-rows
|
|
|
|
for y from 1
|
2021-04-08 15:13:31 +02:00
|
|
|
do
|
|
|
|
(cond
|
2021-04-11 11:06:39 +02:00
|
|
|
;; testing invisibility should never returns true as
|
|
|
|
;; the method `row' is specialized on message-window
|
|
|
|
;; and always removes from the rows the invible ones.
|
2021-04-11 15:19:45 +02:00
|
|
|
((row-invisible-p line)
|
2021-04-08 15:13:31 +02:00
|
|
|
(decf y))
|
2021-04-11 15:19:45 +02:00
|
|
|
((not (row-vertical-space-p line))
|
2021-04-13 18:32:48 +02:00
|
|
|
(let ((text-line (remove-corrupting-utf8-chars (normal-text line))))
|
2021-04-08 15:13:31 +02:00
|
|
|
(print-text window text-line 1 y))))))))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
|
|
|
(defun draw-buffer-line-mark (window)
|
|
|
|
(with-accessors ((rows rows)
|
|
|
|
(row-selected-index row-selected-index)
|
|
|
|
(line-position-mark line-position-mark)) window
|
|
|
|
(let* ((height (1- (win-height-no-border window)))
|
2021-04-08 15:13:31 +02:00
|
|
|
(rows-count (- (rows-length window) height))
|
2020-05-08 15:45:43 +02:00
|
|
|
(fraction (/ row-selected-index
|
2020-09-06 14:42:16 +02:00
|
|
|
(max 1 rows-count)))
|
2020-05-08 15:45:43 +02:00
|
|
|
(mark-y (1+ (truncate (* fraction height))))
|
|
|
|
(mark-x (1- (win-width window))))
|
|
|
|
(print-text window line-position-mark mark-x mark-y))))
|
|
|
|
|
|
|
|
(defmethod draw ((object message-window))
|
|
|
|
(when-window-shown (object)
|
|
|
|
(win-clear object :redraw nil)
|
|
|
|
(win-box object)
|
|
|
|
(draw-text object)
|
2021-04-08 15:13:31 +02:00
|
|
|
(when (not (line-oriented-window:rows-empty-p object))
|
2020-05-08 15:45:43 +02:00
|
|
|
(draw-buffer-line-mark object))
|
|
|
|
(call-next-method)))
|
|
|
|
|
2021-04-13 17:29:25 +02:00
|
|
|
(defgeneric row-add-original-object (lines original-object))
|
|
|
|
|
|
|
|
(defmethod row-add-original-object ((lines line) original-object)
|
2021-04-10 13:52:56 +02:00
|
|
|
(push original-object
|
2021-04-13 17:29:25 +02:00
|
|
|
(fields lines))
|
2021-04-10 13:52:56 +02:00
|
|
|
(push :original-object
|
2021-04-13 17:29:25 +02:00
|
|
|
(fields lines))
|
|
|
|
lines)
|
|
|
|
|
|
|
|
(defmethod row-add-original-object ((lines list) original-object)
|
|
|
|
(mapcar (lambda (a) (row-add-original-object a original-object))
|
|
|
|
lines)
|
|
|
|
lines)
|
2021-04-10 13:52:56 +02:00
|
|
|
|
2021-04-11 11:06:39 +02:00
|
|
|
(defun row-get-original-object (line)
|
2021-04-10 13:52:56 +02:00
|
|
|
(getf (fields line) :original-object))
|
|
|
|
|
2021-04-13 17:01:55 +02:00
|
|
|
(defun row-add-group-id (line group-id)
|
|
|
|
(push group-id
|
|
|
|
(fields line))
|
|
|
|
(push :group-id
|
|
|
|
(fields line))
|
|
|
|
line)
|
|
|
|
|
|
|
|
(defun row-get-group-id (line)
|
|
|
|
(getf (fields line) :group-id))
|
|
|
|
|
2021-04-10 13:52:56 +02:00
|
|
|
(defun make-render-vspace-row (&optional (original-object
|
|
|
|
(make-instance 'gemini-parser:vertical-space)))
|
|
|
|
(let ((res (make-instance 'line
|
|
|
|
:normal-text (make-tui-string (format nil "~%"))
|
2021-04-11 15:19:45 +02:00
|
|
|
:fields (list +row-vertical-space-field-key+ 1))))
|
2021-04-11 11:06:39 +02:00
|
|
|
(row-add-original-object res original-object)
|
|
|
|
res)) ; even if row-add-original-object returns the modified line explicit returns for clarity
|
2021-04-05 12:01:30 +02:00
|
|
|
|
2021-04-11 15:19:45 +02:00
|
|
|
(defun row-vertical-space-p (row)
|
|
|
|
(getf (fields row) +row-vertical-space-field-key+))
|
2021-04-08 15:13:31 +02:00
|
|
|
|
2021-04-11 11:06:39 +02:00
|
|
|
(defun make-invisible-row (original-object &optional (text ""))
|
|
|
|
(let ((res (make-instance 'line
|
2021-04-11 15:19:45 +02:00
|
|
|
:fields (list +row-invisible-field-key+ t)
|
2021-04-11 11:06:39 +02:00
|
|
|
:normal-text (make-tui-string text))))
|
|
|
|
(row-add-original-object res original-object)
|
|
|
|
res)) ; even if row-add-original-object returns the modified line explicit returns for clarity
|
2021-04-05 12:01:30 +02:00
|
|
|
|
2021-04-11 15:19:45 +02:00
|
|
|
(defun row-pre-start-p (row)
|
|
|
|
(typep (row-get-original-object row)
|
|
|
|
'gemini-parser:pre-start))
|
|
|
|
|
|
|
|
(defun row-preformatted-p (row)
|
|
|
|
(typep (row-get-original-object row)
|
|
|
|
'gemini-parser:pre-line))
|
|
|
|
|
|
|
|
(defun row-invisible-p (row)
|
|
|
|
(getf (fields row) +row-invisible-field-key+))
|
2021-04-08 15:13:31 +02:00
|
|
|
|
2021-04-11 15:19:45 +02:00
|
|
|
(defun row-visible-p (row)
|
|
|
|
(not (row-invisible-p row)))
|
|
|
|
|
|
|
|
(defun row-set-invisible (row)
|
2021-04-11 11:06:39 +02:00
|
|
|
(with-accessors ((fields fields)) row
|
2021-04-11 15:19:45 +02:00
|
|
|
(when (not (row-invisible-p row))
|
2021-04-11 11:06:39 +02:00
|
|
|
(push t fields)
|
2021-04-11 15:19:45 +02:00
|
|
|
(push +row-invisible-field-key+ fields))
|
2021-04-11 11:06:39 +02:00
|
|
|
row))
|
|
|
|
|
2021-04-11 15:19:45 +02:00
|
|
|
(defun row-set-visible (row)
|
|
|
|
(setf (fields row) (remove-from-plist (fields row) +row-invisible-field-key+))
|
|
|
|
row)
|
|
|
|
|
|
|
|
(defmacro with-map-update-raw-rows ((window function) &body body)
|
|
|
|
(with-gensyms (new-rows)
|
|
|
|
`(let ((,new-rows (rows-map-raw ,window
|
|
|
|
,function)))
|
|
|
|
,@body
|
|
|
|
(update-all-rows ,window ,new-rows)
|
|
|
|
(draw ,window))))
|
|
|
|
|
|
|
|
(defun row-hide-preformatted (message-window)
|
|
|
|
(with-map-update-raw-rows (message-window
|
|
|
|
(lambda (a)
|
|
|
|
(when (row-preformatted-p a)
|
|
|
|
(row-set-invisible a))
|
|
|
|
a))))
|
|
|
|
|
|
|
|
(defun row-show-pre-start (message-window)
|
|
|
|
(with-map-update-raw-rows (message-window
|
|
|
|
(lambda (a)
|
|
|
|
(when (row-pre-start-p a)
|
|
|
|
(row-set-visible a))
|
|
|
|
a))))
|
|
|
|
|
|
|
|
(defun row-show-preformatted (message-window)
|
|
|
|
(with-map-update-raw-rows (message-window
|
|
|
|
(lambda (a)
|
|
|
|
(when (row-preformatted-p a)
|
|
|
|
(row-set-visible a))
|
|
|
|
a))))
|
|
|
|
|
|
|
|
(defun row-hide-pre-start (message-window)
|
|
|
|
(with-map-update-raw-rows (message-window
|
|
|
|
(lambda (a)
|
|
|
|
(when (row-pre-start-p a)
|
|
|
|
(row-set-invisible a))
|
|
|
|
a))))
|
|
|
|
|
|
|
|
(let ((pre-visible-p t))
|
|
|
|
|
|
|
|
(defun set-default-preformatted-visibility (visibility)
|
|
|
|
(setf pre-visible-p visibility))
|
|
|
|
|
|
|
|
(defun get-default-preformatted-visibility ()
|
|
|
|
pre-visible-p)
|
|
|
|
|
|
|
|
(defun toggle-default-preformatted-visibility ()
|
|
|
|
(setf pre-visible-p (not pre-visible-p)))
|
|
|
|
|
|
|
|
(defun toggle-preformatted-block (message-window)
|
|
|
|
(if pre-visible-p
|
|
|
|
(progn
|
|
|
|
(row-hide-preformatted message-window)
|
|
|
|
(row-show-pre-start message-window))
|
|
|
|
(progn
|
|
|
|
(row-show-preformatted message-window)
|
|
|
|
(row-hide-pre-start message-window)))
|
|
|
|
(toggle-default-preformatted-visibility)
|
|
|
|
message-window))
|
2021-04-11 11:06:39 +02:00
|
|
|
|
2021-04-10 13:52:56 +02:00
|
|
|
(defmethod text->rendered-lines-rows (window (text gemini-parser:vertical-space))
|
|
|
|
(make-render-vspace-row text))
|
|
|
|
|
2021-04-08 15:13:31 +02:00
|
|
|
(defmethod text->rendered-lines-rows (window (text gemini-parser:pre-start))
|
2021-04-11 11:06:39 +02:00
|
|
|
(make-invisible-row text (gemini-parser:alt-text text)))
|
2021-04-08 15:13:31 +02:00
|
|
|
|
|
|
|
(defmethod text->rendered-lines-rows (window (text gemini-parser:pre-end))
|
2021-04-11 11:06:39 +02:00
|
|
|
(make-invisible-row text))
|
2021-04-08 15:13:31 +02:00
|
|
|
|
2021-04-08 16:32:34 +02:00
|
|
|
(defmethod text->rendered-lines-rows (window (text gemini-parser:pre-line))
|
2021-04-10 13:52:56 +02:00
|
|
|
(let ((res (make-instance 'line
|
|
|
|
:normal-text
|
|
|
|
(reduce #'tui:cat-complex-string
|
|
|
|
(text->rendered-lines-rows window (gemini-parser:lines text)))
|
|
|
|
:fields (list :alt-text (gemini-parser:alt-text text)
|
|
|
|
:group-id (gemini-parser:group-id text)))))
|
2021-04-11 11:06:39 +02:00
|
|
|
(row-add-original-object res text)
|
|
|
|
res)) ; even if row-add-original-object returns the modified line explicit returns for clarity
|
2021-04-08 16:32:34 +02:00
|
|
|
|
2021-04-05 12:01:30 +02:00
|
|
|
(defmethod text->rendered-lines-rows (window (text list))
|
2021-04-05 14:47:57 +02:00
|
|
|
(flatten (loop for i in text
|
|
|
|
collect
|
|
|
|
(text->rendered-lines-rows window i))))
|
2021-04-05 12:01:30 +02:00
|
|
|
|
|
|
|
(defmethod text->rendered-lines-rows (window (text complex-string))
|
2021-04-08 16:32:34 +02:00
|
|
|
text)
|
2021-04-05 12:01:30 +02:00
|
|
|
|
2021-04-20 20:28:04 +02:00
|
|
|
(defgeneric collect-lines-from-ir (object window))
|
2021-04-13 17:01:55 +02:00
|
|
|
|
2021-04-20 20:28:04 +02:00
|
|
|
(defmethod collect-lines-from-ir ((object gemini-parser:with-lines) (window message-window))
|
|
|
|
(let ((colorized-lines (colorize-lines (%fit-lines window (gemini-parser:lines object)))))
|
2021-04-05 14:47:57 +02:00
|
|
|
(loop for i in colorized-lines
|
|
|
|
collect
|
|
|
|
(make-instance 'line
|
|
|
|
:normal-text i))))
|
|
|
|
|
2021-04-13 17:01:55 +02:00
|
|
|
(defmethod text->rendered-lines-rows (window (text gemini-parser:quoted-lines))
|
2021-04-20 20:28:04 +02:00
|
|
|
(collect-lines-from-ir text window))
|
2021-04-13 17:01:55 +02:00
|
|
|
|
|
|
|
(defmethod text->rendered-lines-rows (window (text gemini-parser:header-line))
|
|
|
|
(let* ((group-id (gemini-parser:group-id text))
|
2021-04-20 20:28:04 +02:00
|
|
|
(lines (collect-lines-from-ir text window))
|
2021-04-13 17:01:55 +02:00
|
|
|
(res (mapcar (lambda (a)
|
|
|
|
(let ((line (row-add-original-object a text)))
|
|
|
|
(row-add-group-id line group-id)))
|
|
|
|
lines)))
|
|
|
|
res))
|
|
|
|
|
2021-04-13 17:29:25 +02:00
|
|
|
(defmethod text->rendered-lines-rows (window (text gemini-parser:unordered-list-line))
|
2021-04-20 20:28:04 +02:00
|
|
|
(collect-lines-from-ir text window))
|
2021-04-13 17:29:25 +02:00
|
|
|
|
|
|
|
(defmethod text->rendered-lines-rows (window (text gemini-parser:link-line))
|
2021-04-20 20:28:04 +02:00
|
|
|
(let ((res (collect-lines-from-ir text window)))
|
2021-04-13 17:29:25 +02:00
|
|
|
(row-add-original-object res text)
|
|
|
|
res)) ; even if row-add-original-object returns the modified line explicit returns for clarity
|
|
|
|
|
2021-04-20 20:28:04 +02:00
|
|
|
(defun %fit-text (window text)
|
|
|
|
(let ((lines (split-lines text)))
|
|
|
|
(%fit-lines window lines)))
|
|
|
|
|
|
|
|
(defun %fit-lines (window lines)
|
|
|
|
(let ((res ()))
|
|
|
|
(loop for line in lines do
|
|
|
|
(cond
|
|
|
|
((or (string-empty-p line)
|
|
|
|
(string= line (format nil "~%")))
|
|
|
|
(push (make-render-vspace-row) res))
|
|
|
|
(t
|
|
|
|
(loop for fitted-line
|
|
|
|
in (flush-left-mono-text (split-words line)
|
|
|
|
(win-width-no-border window))
|
|
|
|
do
|
|
|
|
(push fitted-line res)))))
|
|
|
|
(reverse res)))
|
|
|
|
|
2021-04-05 12:01:30 +02:00
|
|
|
(defmethod text->rendered-lines-rows (window (text string))
|
2021-04-20 20:28:04 +02:00
|
|
|
(let* ((fitted-lines (%fit-text window text))
|
|
|
|
(new-rows (colorize-lines fitted-lines)))
|
|
|
|
(mapcar (lambda (text-line)
|
|
|
|
(if (typep text-line 'line)
|
|
|
|
text-line
|
|
|
|
(make-instance 'line
|
|
|
|
:normal-text text-line)))
|
|
|
|
new-rows)))
|
2021-04-10 13:52:56 +02:00
|
|
|
|
2021-04-11 11:06:39 +02:00
|
|
|
(defun remove-invisible-rows (rows)
|
2021-04-11 15:19:45 +02:00
|
|
|
(remove-if #'row-invisible-p rows))
|
2021-04-10 13:52:56 +02:00
|
|
|
|
|
|
|
(defmethod text->rendered-lines-rows (window (text line))
|
|
|
|
text)
|
|
|
|
|
2021-04-11 11:06:39 +02:00
|
|
|
(defmethod rows ((object message-window))
|
|
|
|
(with-slots (rows) object
|
|
|
|
(remove-invisible-rows rows)))
|
2021-04-10 13:52:56 +02:00
|
|
|
|
|
|
|
(defmethod colorize-lines ((object line))
|
|
|
|
object)
|
|
|
|
|
|
|
|
(defmethod colorize-lines ((object complex-string))
|
|
|
|
(make-instance 'line :normal-text object))
|
|
|
|
|
|
|
|
(defmethod colorize-lines ((object string))
|
|
|
|
(let ((color-re (swconf:color-regexps))
|
|
|
|
(res object))
|
|
|
|
(loop for re in color-re do
|
|
|
|
(setf res (colorize-line res re)))
|
|
|
|
(colorized-line->tui-string res)))
|
|
|
|
|
|
|
|
(defmethod colorize-lines ((object list))
|
|
|
|
(loop for line in object
|
|
|
|
collect
|
|
|
|
(colorize-lines line)))
|
|
|
|
|
2021-04-11 15:19:45 +02:00
|
|
|
(defmethod viewport-width ((object message-window))
|
|
|
|
(windows:win-width-no-border object))
|
|
|
|
|
2021-04-10 13:52:56 +02:00
|
|
|
(defmethod prepare-for-rendering ((object message-window) text-data &key (jump-to-first-row t))
|
|
|
|
(update-all-rows object (text->rendered-lines-rows object text-data))
|
|
|
|
(when jump-to-first-row
|
|
|
|
(select-row object 0))
|
|
|
|
object)
|
2020-07-26 12:04:46 +02:00
|
|
|
|
2020-09-06 11:18:49 +02:00
|
|
|
(defun offset-to-move-end (win)
|
|
|
|
(with-accessors ((rows rows)
|
|
|
|
(row-selected-index row-selected-index)) win
|
|
|
|
(let ((win-height (win-height-no-border win)))
|
2021-04-08 15:13:31 +02:00
|
|
|
(- (- (rows-length win)
|
2020-09-06 11:18:49 +02:00
|
|
|
(- win-height 1))
|
|
|
|
row-selected-index))))
|
|
|
|
|
|
|
|
(defun scroll-end-reached-p (win)
|
|
|
|
(with-accessors ((rows rows)
|
|
|
|
(row-selected-index row-selected-index)) win
|
|
|
|
(let* ((win-height (win-height-no-border win))
|
2021-04-08 15:13:31 +02:00
|
|
|
(rows-left (- (rows-length win) row-selected-index)))
|
2020-09-06 11:18:49 +02:00
|
|
|
(< rows-left
|
|
|
|
win-height))))
|
|
|
|
|
2020-05-08 15:45:43 +02:00
|
|
|
(defmethod scroll-down ((object message-window) &optional (amount 1))
|
2020-09-06 11:18:49 +02:00
|
|
|
(when (not (or (scroll-end-reached-p object)
|
|
|
|
(= (row-move object amount)
|
|
|
|
0)))
|
2020-05-08 15:45:43 +02:00
|
|
|
(draw object)))
|
|
|
|
|
|
|
|
(defmethod scroll-up ((object message-window) &optional (amount 1))
|
|
|
|
(when (/= (row-move object (- amount))
|
|
|
|
0)
|
|
|
|
(draw object)))
|
|
|
|
|
|
|
|
(defmethod scroll-end ((object message-window))
|
|
|
|
(with-accessors ((rows rows)
|
|
|
|
(row-selected-index row-selected-index)) object
|
2020-09-06 11:18:49 +02:00
|
|
|
(let ((offset (offset-to-move-end object)))
|
|
|
|
(when (/= (row-move object offset)
|
|
|
|
0)
|
|
|
|
(draw object)))))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
|
|
|
(defmethod scroll-begin ((object message-window))
|
|
|
|
(with-accessors ((rows rows)
|
|
|
|
(row-selected-index row-selected-index)) object
|
|
|
|
(when (/= (row-move object (- row-selected-index))
|
|
|
|
0)
|
|
|
|
(draw object))))
|
|
|
|
|
|
|
|
(defmethod scroll-next-page ((object message-window))
|
|
|
|
(with-accessors ((rows rows)
|
|
|
|
(row-selected-index row-selected-index)) object
|
|
|
|
(let ((actual-window-height (win-height-no-border object)))
|
2021-04-08 15:13:31 +02:00
|
|
|
(when (and (> (- (rows-length object)
|
2020-05-08 15:45:43 +02:00
|
|
|
row-selected-index)
|
|
|
|
actual-window-height)
|
|
|
|
(/= (row-move object actual-window-height)
|
|
|
|
0))
|
|
|
|
(draw object)))))
|
|
|
|
|
|
|
|
(defmethod scroll-previous-page ((object message-window))
|
|
|
|
(when (/= (row-move object (- (win-height-no-border object)))
|
|
|
|
0)
|
|
|
|
(draw object)))
|
|
|
|
|
|
|
|
(defun first-line->string (window)
|
2021-04-08 15:13:31 +02:00
|
|
|
(with-accessors ((row-selected-index row-selected-index)) window
|
|
|
|
(let ((complex (normal-text (rows-elt window row-selected-index))))
|
2021-04-05 18:10:14 +02:00
|
|
|
(values (tui-string->chars-string complex)
|
|
|
|
complex))))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
|
|
|
(defmethod search-regex ((object message-window) regex)
|
2021-04-08 15:13:31 +02:00
|
|
|
(with-accessors ((row-selected-index row-selected-index)) object
|
|
|
|
(let ((line-found (rows-position-if object
|
|
|
|
(lambda (a)
|
|
|
|
(scan regex
|
|
|
|
(tui-string->chars-string (normal-text a))))
|
|
|
|
:start (min (1+ row-selected-index)
|
|
|
|
(rows-length object))))
|
2021-04-06 18:27:47 +02:00
|
|
|
(replacements-strings ()))
|
2021-04-06 19:59:58 +02:00
|
|
|
(if line-found
|
|
|
|
(progn
|
|
|
|
(row-move object (- line-found row-selected-index))
|
|
|
|
(draw object)
|
|
|
|
(multiple-value-bind (first-window-line-simple first-window-line-complex)
|
|
|
|
(first-line->string object)
|
|
|
|
(labels ((calc-highlight (&optional (start-scan 0))
|
|
|
|
(multiple-value-bind (start end)
|
|
|
|
(scan regex first-window-line-simple :start start-scan)
|
|
|
|
(when start
|
|
|
|
(let* ((mask (make-tui-string (subseq first-window-line-simple
|
|
|
|
start end)
|
|
|
|
:fgcolor (win-bgcolor object)
|
|
|
|
:bgcolor (win-fgcolor object)))
|
|
|
|
(prefix (tui-string-subseq first-window-line-complex
|
|
|
|
0
|
|
|
|
start))
|
|
|
|
(new-prefix (cat-tui-string prefix mask)))
|
|
|
|
(push new-prefix replacements-strings)
|
|
|
|
(calc-highlight end)))))
|
|
|
|
(highlight ()
|
|
|
|
(loop for replacement in replacements-strings do
|
|
|
|
(print-text object replacement 1 1))))
|
|
|
|
(calc-highlight)
|
|
|
|
(highlight))))
|
|
|
|
(line-oriented-window:cleanup-after-search object)))))
|
2020-05-08 15:45:43 +02:00
|
|
|
|
|
|
|
(defun init ()
|
|
|
|
(let* ((low-level-window (make-croatoan-window :enable-function-keys t)))
|
|
|
|
(setf *message-window*
|
|
|
|
(make-instance 'message-window
|
|
|
|
:title (_ "Messages")
|
|
|
|
:keybindings keybindings:*message-keymap*
|
|
|
|
:key-config swconf:+key-message-window+
|
|
|
|
:croatoan-window low-level-window))
|
|
|
|
(refresh-config *message-window*)
|
|
|
|
(draw *message-window*)
|
|
|
|
*message-window*))
|