1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
#include <string.h>
#include "owl.h"
static const char fileIdent[] = "$Id: viewwin.c,v 1.7 2004/03/18 04:42:18 nygren Exp $";
#define BOTTOM_OFFSET 1
/* initialize the viewwin e. 'win' is an already initialzed curses
* window that will be used by viewwin
*/
void owl_viewwin_init_text(owl_viewwin *v, WINDOW *win, int winlines, int wincols, char *text)
{
owl_fmtext_init_null(&(v->fmtext));
if (text) {
owl_fmtext_append_normal(&(v->fmtext), text);
if (text[strlen(text)-1]!='\n' && text[0]!='\0') {
owl_fmtext_append_normal(&(v->fmtext), "\n");
}
v->textlines=owl_fmtext_num_lines(&(v->fmtext));
}
v->topline=0;
v->rightshift=0;
v->winlines=winlines;
v->wincols=wincols;
v->curswin=win;
v->onclose_hook = NULL;
}
void owl_viewwin_append_text(owl_viewwin *v, char *text) {
owl_fmtext_append_normal(&(v->fmtext), text);
v->textlines=owl_fmtext_num_lines(&(v->fmtext));
}
/* initialize the viewwin e. 'win' is an already initialzed curses
* window that will be used by viewwin
*/
void owl_viewwin_init_fmtext(owl_viewwin *v, WINDOW *win, int winlines, int wincols, owl_fmtext *fmtext)
{
owl_fmtext_copy(&(v->fmtext), fmtext);
v->textlines=owl_fmtext_num_lines(&(v->fmtext));
v->topline=0;
v->rightshift=0;
v->winlines=winlines;
v->wincols=wincols;
v->curswin=win;
}
void owl_viewwin_set_curswin(owl_viewwin *v, WINDOW *w, int winlines, int wincols)
{
v->curswin=w;
v->winlines=winlines;
v->wincols=wincols;
}
void owl_viewwin_set_onclose_hook(owl_viewwin *v, void (*onclose_hook) (owl_viewwin *vwin, void *data), void *onclose_hook_data) {
v->onclose_hook = onclose_hook;
v->onclose_hook_data = onclose_hook_data;
}
/* regenerate text on the curses window. */
/* if update == 1 then do a doupdate() */
void owl_viewwin_redisplay(owl_viewwin *v, int update)
{
owl_fmtext fm1, fm2;
werase(v->curswin);
wmove(v->curswin, 0, 0);
owl_fmtext_init_null(&fm1);
owl_fmtext_init_null(&fm2);
owl_fmtext_truncate_lines(&(v->fmtext), v->topline, v->winlines-BOTTOM_OFFSET, &fm1);
owl_fmtext_truncate_cols(&fm1, v->rightshift, v->wincols-1+v->rightshift, &fm2);
owl_fmtext_curs_waddstr(&fm2, v->curswin);
/* print the message at the bottom */
wmove(v->curswin, v->winlines-1, 0);
wattrset(v->curswin, A_REVERSE);
if (v->textlines - v->topline > v->winlines-BOTTOM_OFFSET) {
waddstr(v->curswin, "--More-- (Space to see more, 'q' to quit)");
} else {
waddstr(v->curswin, "--End-- (Press 'q' to quit)");
}
wattroff(v->curswin, A_REVERSE);
wnoutrefresh(v->curswin);
if (update==1) {
doupdate();
}
owl_fmtext_free(&fm1);
owl_fmtext_free(&fm2);
}
void owl_viewwin_pagedown(owl_viewwin *v)
{
v->topline+=v->winlines - BOTTOM_OFFSET;
if ( (v->topline+v->winlines-BOTTOM_OFFSET) > v->textlines) {
v->topline = v->textlines - v->winlines + BOTTOM_OFFSET;
}
}
void owl_viewwin_linedown(owl_viewwin *v)
{
v->topline++;
if ( (v->topline+v->winlines-BOTTOM_OFFSET) > v->textlines) {
v->topline = v->textlines - v->winlines + BOTTOM_OFFSET;
}
}
void owl_viewwin_pageup(owl_viewwin *v)
{
v->topline-=v->winlines;
if (v->topline<0) v->topline=0;
}
void owl_viewwin_lineup(owl_viewwin *v)
{
v->topline--;
if (v->topline<0) v->topline=0;
}
void owl_viewwin_right(owl_viewwin *v, int n)
{
v->rightshift+=n;
}
void owl_viewwin_left(owl_viewwin *v, int n)
{
v->rightshift-=n;
if (v->rightshift<0) v->rightshift=0;
}
void owl_viewwin_top(owl_viewwin *v)
{
v->topline=0;
v->rightshift=0;
}
void owl_viewwin_bottom(owl_viewwin *v)
{
v->topline = v->textlines - v->winlines + BOTTOM_OFFSET;
}
void owl_viewwin_free(owl_viewwin *v)
{
if (v->onclose_hook) {
v->onclose_hook(v, v->onclose_hook_data);
v->onclose_hook = NULL;
v->onclose_hook_data = NULL;
}
owl_fmtext_free(&(v->fmtext));
}
|