source: popwin.c @ dab82f29

owl
Last change on this file since dab82f29 was dab82f29, checked in by James M. Kretchmar <kretch@mit.edu>, 15 years ago
Don't crash on mobile device AIM messages [BZ 20] Don't crash when sending to someone not on AIM buddy list [BZ 94] Fix overflow vulerability in zwrite.c and zcrypt.c Add stack protector and -D_FORTIFY_SOURCE=2 where possible Fix hang [barnowl 4c46dfdebc294ca24fef59924f01688b8ee07dee] Fix segfault on missing subs [barnowl 99dabeed7de6d19acb50f1e73aa0bfe5f9469c02] Fix zcrypt bufffer size bug [barnowl 559076cd86edc3a8317819814dd5877b8bc7c3cb] Fix double free [barnowl e97c4a306ae2c9d2147d83da29fee59918198e70] Memory leak fix [barnowl c0a90c2c7ab97b9465c9873757faf312faa0021e] Memory leak fix [barnowl 95caa16b2e9ba10770d87d0955198c14c2d0e16a] Memory leak fix [barnowl 1716fed8c2650e46892cf6571555eac937266c6e] Add getstyle command [barnowl 216c73421653e3ef0e957aa9a9804e208a77c80e] Binary search for msgid [barnowl 0c8ab5eadbb6ecc97a120c91b9a824b33538c764] File-handle leak [barnowl e78397d6ac5da0de31a4e269c0ba7f3d691857a3] Fix delay in jump from top to bottom [barnowl 801b7ac63b962640debbcfd422cb9a60da5fea31] Load subs in chunks [barnowl 93e883d60051b80bf6d35391f9d76fd7dfd198e3] Load subs in chunks [barnowl f6050ee9b0a171a5031f84409eb181062afacd18] Better zsig logging [barnowl d857b667a5a9b108b1a2a26b4a5513bef2b53f80] free() -> owlfree() [barnowl d524c838ac7c115628424b8ac171c3489622ea3a] Escape AIM users in smartfilters [barnowl af9b92e3e7ccb7de276a94b5c7e5861b24e71eff] Better regex escape chars [barnowl 80e54a7631f091be8c9762adb9746bad38104738] Deal with quotes in smart filters [barnowl 4099cf83702763fa8d1efc4f1582a605431bdb77] Deal with 0 length zephyr fields [barnowl 128171aaf7cefa91a4bb1eada93a19d8fd0c355c] Deal with 0 length zephyr fields [barnowl 50e29e35c64d64e223d378d350a7bc4f038d78f5] Deal with 0 length zephyr fields [barnowl 804ab8af8b6d00bcd7e2402df892db8fbd61a3ec] Leave curmsg on screen after resize [barnowl c0f9e3009bc03e80a44de64cd5f2b4033290236e] Rip out brower stuff [barnowl 8e5935d11c699a7ce5a3e6e9a47799564c696d6a] Rip out browser stuff [barnowl 4f15e8e9ceada0d4b2cc969ebf43b0a1fb3709ea] No passwords in command history [barnowl 6e400cc71aa59e041dce677aadf50dc1f25228e2] Format NOC mssages [barnowl a1bb1980e4bca23b8329cc0e7c0bd5027055ea0a] Expand ~ in loadsubs [barnowl 27d8d835dc6d58c08fae10e75aae306c49215143] Expand ~ in source [barnowl 10d67d57cb29221f63a43a30643c697fc7b38911] Only use resizeterm() if it's available Debian backports Change license to GPLv3
  • Property mode set to 100644
File size: 3.7 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 the branched BarnOwl project, Copyright (c)
22 * 2006-2008 The BarnOwl Developers. All rights reserved.
23 */
24
25#include "owl.h"
26
27static const char fileIdent[] = "$Id$";
28
29int owl_popwin_init(owl_popwin *pw)
30{
31  pw->active=0;
32  pw->needsfirstrefresh=0;
33  pw->lines=0;
34  pw->cols=0;
35  return(0);
36}
37
38int owl_popwin_up(owl_popwin *pw)
39{
40  int glines, gcols, startcol, startline;
41
42  /* calculate the size of the popwin */
43  glines=owl_global_get_lines(&g);
44  gcols=owl_global_get_cols(&g);
45
46  pw->lines = owl_util_min(glines,24)*3/4 + owl_util_max(glines-24,0)/2;
47  startline = (glines-pw->lines)/2;
48
49  pw->cols = owl_util_min(gcols,90)*15/16 + owl_util_max(gcols-90,0)/2;
50  startcol = (gcols-pw->cols)/2;
51
52  pw->borderwin=newwin(pw->lines, pw->cols, startline, startcol);
53  pw->popwin=newwin(pw->lines-2, pw->cols-2, startline+1, startcol+1);
54  pw->needsfirstrefresh=1;
55 
56  meta(pw->popwin,TRUE);
57  nodelay(pw->popwin, 1);
58  keypad(pw->popwin, TRUE);
59
60  werase(pw->popwin);
61  werase(pw->borderwin);
62  if (owl_global_is_fancylines(&g)) {
63    box(pw->borderwin, 0, 0);
64  } else {
65    box(pw->borderwin, '|', '-');
66    wmove(pw->borderwin, 0, 0);
67    waddch(pw->borderwin, '+');
68    wmove(pw->borderwin, pw->lines-1, 0);
69    waddch(pw->borderwin, '+');
70    wmove(pw->borderwin, pw->lines-1, pw->cols-1);
71    waddch(pw->borderwin, '+');
72    wmove(pw->borderwin, 0, pw->cols-1);
73    waddch(pw->borderwin, '+');
74  }
75   
76  wnoutrefresh(pw->popwin);
77  wnoutrefresh(pw->borderwin);
78  owl_global_set_needrefresh(&g);
79  pw->active=1;
80  return(0);
81}
82
83int owl_popwin_display_text(owl_popwin *pw, char *text)
84{
85  waddstr(pw->popwin, text);
86  wnoutrefresh(pw->popwin);
87  touchwin(pw->borderwin);
88  wnoutrefresh(pw->borderwin);
89  owl_global_set_needrefresh(&g);
90  return(0);
91}             
92
93int owl_popwin_close(owl_popwin *pw)
94{
95  delwin(pw->popwin);
96  delwin(pw->borderwin);
97  pw->active=0;
98  owl_global_set_needrefresh(&g);
99  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
100  owl_function_full_redisplay(&g);
101  return(0);
102}
103
104int owl_popwin_is_active(owl_popwin *pw)
105{
106  if (pw->active==1) return(1);
107  return(0);
108}
109
110/* this will refresh the border as well as the text area */
111int owl_popwin_refresh(owl_popwin *pw)
112{
113  touchwin(pw->borderwin);
114  touchwin(pw->popwin);
115
116  wnoutrefresh(pw->borderwin);
117  wnoutrefresh(pw->popwin);
118  owl_global_set_needrefresh(&g);
119  return(0);
120}
121
122void owl_popwin_set_handler(owl_popwin *pw, void (*func)(int ch))
123{
124  pw->handler=func;
125}
126
127void owl_popwin_unset_handler(owl_popwin *pw)
128{
129  pw->handler=NULL;
130}
131
132WINDOW *owl_popwin_get_curswin(owl_popwin *pw)
133{
134  return(pw->popwin);
135}
136
137int owl_popwin_get_lines(owl_popwin *pw)
138{
139  return(pw->lines-2);
140}
141
142int owl_popwin_get_cols(owl_popwin *pw)
143{
144  return(pw->cols-2);
145}
146
147int owl_popwin_needs_first_refresh(owl_popwin *pw)
148{
149  if (pw->needsfirstrefresh) return(1);
150  return(0);
151}
152
153void owl_popwin_no_needs_first_refresh(owl_popwin *pw)
154{
155  pw->needsfirstrefresh=0;
156}
Note: See TracBrowser for help on using the repository browser.