source: popwin.c @ 4727d31

release-1.10release-1.7release-1.8release-1.9
Last change on this file since 4727d31 was 06cc8d9, checked in by David Benjamin <davidben@mit.edu>, 14 years ago
Simplify owl_popwin_is_active The current implementation is ridiculous.
  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[7d4fbcd]1#include "owl.h"
2
[b2b0773]3int owl_popwin_init(owl_popwin *pw)
4{
[7d4fbcd]5  pw->active=0;
6  pw->lines=0;
7  pw->cols=0;
8  return(0);
9}
10
[b2b0773]11int owl_popwin_up(owl_popwin *pw)
12{
[7d4fbcd]13  int glines, gcols, startcol, startline;
[dffb8b8]14  WINDOW *popwin, *borderwin;
[7d4fbcd]15
16  /* calculate the size of the popwin */
17  glines=owl_global_get_lines(&g);
18  gcols=owl_global_get_cols(&g);
19
[fe67f1f]20  pw->lines = owl_util_min(glines,24)*3/4 + owl_util_max(glines-24,0)/2;
21  startline = (glines-pw->lines)/2;
22
[818a073]23  pw->cols = owl_util_min(gcols,90)*15/16 + owl_util_max(gcols-90,0)/2;
[fe67f1f]24  startcol = (gcols-pw->cols)/2;
[7d4fbcd]25
[dffb8b8]26  borderwin = newwin(pw->lines, pw->cols, startline, startcol);
27  pw->borderpanel = new_panel(borderwin);
28  popwin = newwin(pw->lines-2, pw->cols-2, startline+1, startcol+1);
29  pw->poppanel = new_panel(popwin);
[7d4fbcd]30 
[dffb8b8]31  meta(popwin,TRUE);
32  nodelay(popwin, 1);
33  keypad(popwin, TRUE);
[7d4fbcd]34
[dffb8b8]35  werase(popwin);
36  werase(borderwin);
[c15bbfb]37  if (owl_global_is_fancylines(&g)) {
[dffb8b8]38    box(borderwin, 0, 0);
[c15bbfb]39  } else {
[dffb8b8]40    box(borderwin, '|', '-');
41    wmove(borderwin, 0, 0);
42    waddch(borderwin, '+');
43    wmove(borderwin, pw->lines-1, 0);
44    waddch(borderwin, '+');
45    wmove(borderwin, pw->lines-1, pw->cols-1);
46    waddch(borderwin, '+');
47    wmove(borderwin, 0, pw->cols-1);
48    waddch(borderwin, '+');
[c15bbfb]49  }
50   
[7d4fbcd]51  owl_global_set_needrefresh(&g);
52  pw->active=1;
53  return(0);
54}
55
[b2b0773]56int owl_popwin_close(owl_popwin *pw)
57{
[dffb8b8]58  WINDOW *popwin, *borderwin;
59
60  popwin = panel_window(pw->poppanel);
61  borderwin = panel_window(pw->borderpanel);
62
[8ae2de9]63  del_panel(pw->poppanel);
64  del_panel(pw->borderpanel);
[dffb8b8]65  delwin(popwin);
66  delwin(borderwin);
67
[7d4fbcd]68  pw->active=0;
69  owl_global_set_needrefresh(&g);
70  return(0);
71}
72
[9c01a5e]73int owl_popwin_is_active(const owl_popwin *pw)
[b2b0773]74{
[06cc8d9]75  return pw->active;
[7d4fbcd]76}
77
[9c01a5e]78WINDOW *owl_popwin_get_curswin(const owl_popwin *pw)
[b2b0773]79{
[dffb8b8]80  return panel_window(pw->poppanel);
[7d4fbcd]81}
82
[9c01a5e]83int owl_popwin_get_lines(const owl_popwin *pw)
[b2b0773]84{
[7d4fbcd]85  return(pw->lines-2);
86}
87
[9c01a5e]88int owl_popwin_get_cols(const owl_popwin *pw)
[b2b0773]89{
[7d4fbcd]90  return(pw->cols-2);
91}
Note: See TracBrowser for help on using the repository browser.