source: mainwin.c @ fa00c5c

owl
Last change on this file since fa00c5c was fa00c5c, checked in by James M. Kretchmar <kretch@mit.edu>, 15 years ago
Correct license.
  • Property mode set to 100644
File size: 4.9 KB
Line 
1/* Copyright (c) 2002,2003,2004,2009 James M. Kretchmar
2 *
3 * This file is part of Owl.
4 *
5 * Owl is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * Owl is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with Owl.  If not, see <http://www.gnu.org/licenses/>.
17 *
18 * ---------------------------------------------------------------
19 *
20 * As of Owl version 2.1.12 there are patches contributed by
21 * developers of the branched BarnOwl project, Copyright (c)
22 * 2006-2009 The BarnOwl Developers. All rights reserved.
23 */
24
25#include "owl.h"
26
27static const char fileIdent[] = "$Id$";
28
29void owl_mainwin_init(owl_mainwin *mw)
30{
31  mw->curtruncated=0;
32  mw->lastdisplayed=-1;
33}
34
35void owl_mainwin_redisplay(owl_mainwin *mw)
36{
37  owl_message *m;
38  int i, p, q, lines, isfull, viewsize;
39  int x, y, savey, recwinlines, start;
40  int topmsg, curmsg, color;
41  WINDOW *recwin;
42  owl_view *v;
43  owl_list *filtlist;
44  owl_filter *f;
45
46  recwin=owl_global_get_curs_recwin(&g);
47  topmsg=owl_global_get_topmsg(&g);
48  curmsg=owl_global_get_curmsg(&g);
49  v=owl_global_get_current_view(&g);
50
51  if (v==NULL) {
52    owl_function_debugmsg("Hit a null window in owl_mainwin_redisplay.");
53    return;
54  }
55
56  werase(recwin);
57
58  recwinlines=owl_global_get_recwin_lines(&g);
59  topmsg=owl_global_get_topmsg(&g);
60  viewsize=owl_view_get_size(v);
61
62  /* if there are no messages or if topmsg is past the end of the messages,
63   * just draw a blank screen */
64  if (viewsize==0 || topmsg>=viewsize) {
65    if (viewsize==0) {
66      owl_global_set_topmsg(&g, 0);
67    }
68    mw->curtruncated=0;
69    mw->lastdisplayed=-1;
70    wnoutrefresh(recwin);
71    owl_global_set_needrefresh(&g);
72    return;
73  }
74
75  /* write the messages out */
76  isfull=0;
77  mw->curtruncated=0;
78  mw->lasttruncated=0;
79
80  for (i=topmsg; i<viewsize; i++) {
81    if (isfull) break;
82    m=owl_view_get_element(v, i);
83
84    /* hold on to y in case this is the current message or deleted */
85    getyx(recwin, y, x);
86    savey=y;
87
88    /* if it's the current message, account for a vert_offset */
89    if (i==owl_global_get_curmsg(&g)) {
90      start=owl_global_get_curmsg_vert_offset(&g);
91      lines=owl_message_get_numlines(m)-start;
92    } else {
93      start=0;
94      lines=owl_message_get_numlines(m);
95    }
96
97    /* if we match filters set the color */
98    color=OWL_COLOR_DEFAULT;
99    filtlist=owl_global_get_filterlist(&g);
100    q=owl_list_get_size(filtlist);
101    for (p=0; p<q; p++) {
102      f=owl_list_get_element(filtlist, p);
103      if (owl_filter_message_match(f, m)) {
104        if (owl_filter_get_color(f)!=OWL_COLOR_DEFAULT) color=owl_filter_get_color(f);
105      }
106    }
107
108    /* if we'll fill the screen print a partial message */
109    if ((y+lines > recwinlines) && (i==owl_global_get_curmsg(&g))) mw->curtruncated=1;
110    if (y+lines > recwinlines) mw->lasttruncated=1;
111    if (y+lines > recwinlines-1) {
112      isfull=1;
113      owl_message_curs_waddstr(m, owl_global_get_curs_recwin(&g),
114                               start,
115                               start+recwinlines-y,
116                               owl_global_get_rightshift(&g),
117                               owl_global_get_cols(&g)+owl_global_get_rightshift(&g)-1,
118                               color);
119    } else {
120      /* otherwise print the whole thing */
121      owl_message_curs_waddstr(m, owl_global_get_curs_recwin(&g),
122                               start,
123                               start+lines,
124                               owl_global_get_rightshift(&g),
125                               owl_global_get_cols(&g)+owl_global_get_rightshift(&g)-1,
126                               color);
127    }
128
129
130    /* is it the current message and/or deleted? */
131    getyx(recwin, y, x);
132    wattrset(recwin, A_NORMAL);
133    if (owl_global_get_rightshift(&g)==0) {   /* this lame and should be fixed */
134      if (m==owl_view_get_element(v, curmsg)) {
135        wmove(recwin, savey, 0);
136        wattron(recwin, A_BOLD);       
137        if (owl_global_get_curmsg_vert_offset(&g)>0) {
138          waddstr(recwin, "+");
139        } else {
140          waddstr(recwin, "-");
141        }
142        if (!owl_message_is_delete(m)) {
143          waddstr(recwin, ">");
144        } else {
145          waddstr(recwin, "D");
146        }
147        wmove(recwin, y, x);
148        wattroff(recwin, A_BOLD);
149      } else if (owl_message_is_delete(m)) {
150        wmove(recwin, savey, 0);
151        waddstr(recwin, " D");
152        wmove(recwin, y, x);
153      }
154    }
155    wattroff(recwin, A_BOLD);
156  }
157  mw->lastdisplayed=i-1;
158
159  wnoutrefresh(recwin);
160  owl_global_set_needrefresh(&g);
161}
162
163
164int owl_mainwin_is_curmsg_truncated(owl_mainwin *mw)
165{
166  if (mw->curtruncated) return(1);
167  return(0);
168}
169
170int owl_mainwin_is_last_msg_truncated(owl_mainwin *mw)
171{
172  if (mw->lasttruncated) return(1);
173  return(0);
174}
175
176int owl_mainwin_get_last_msg(owl_mainwin *mw)
177{
178  /* return the number of the last message displayed. -1 if none */
179  return(mw->lastdisplayed);
180}
Note: See TracBrowser for help on using the repository browser.