]> ncurses.scripts.mit.edu Git - ncurses.git/blob - c++/cursesp.cc
ncurses 5.4
[ncurses.git] / c++ / cursesp.cc
1 // * this is for making emacs happy: -*-Mode: C++;-*-
2 /****************************************************************************
3  * Copyright (c) 1998-2002,2003 Free Software Foundation, Inc.              *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29
30 /****************************************************************************
31  *   Author: Juergen Pfeifer, 1993, 1997                                    *
32  ****************************************************************************/
33
34 #include "internal.h"
35 #include "cursesp.h"
36 #include <string.h>
37
38 MODULE_ID("$Id: cursesp.cc,v 1.21 2003/10/25 15:04:46 tom Exp $")
39
40 NCursesPanel* NCursesPanel::dummy = (NCursesPanel*)0;
41
42 void NCursesPanel::init() {
43   p = ::new_panel(w);
44   if (!p)
45     OnError(ERR);
46
47   UserHook* hook = new UserHook;
48   hook->m_user  = NULL;
49   hook->m_back  = this;
50   hook->m_owner = p;
51   ::set_panel_userptr(p, (void *)hook);
52 }
53
54 NCursesPanel::~NCursesPanel() {
55   UserHook* hook = (UserHook*)::panel_userptr(p);
56   assert(hook != 0 && hook->m_back==this && hook->m_owner==p);
57   delete hook;
58   ::del_panel(p);
59   ::update_panels();
60 }
61
62 void
63 NCursesPanel::redraw() {
64   PANEL *pan;
65
66   pan = ::panel_above(NULL);
67   while (pan) {
68     ::touchwin(panel_window(pan));
69     pan = ::panel_above(pan);
70   }
71   ::update_panels();
72   ::doupdate();
73 }
74
75 int
76 NCursesPanel::refresh() {
77   ::update_panels();
78   return ::doupdate();
79 }
80
81 int
82 NCursesPanel::noutrefresh() {
83   ::update_panels();
84   return OK;
85 }
86
87 void
88 NCursesPanel::boldframe(const char *title, const char* btitle) {
89   standout();
90   frame(title, btitle);
91   standend();
92 }
93
94 void
95 NCursesPanel::frame(const char *title,const char *btitle) {
96   int err = OK;
97   if (!title && !btitle) {
98     err = box();
99   }
100   else {
101     err = box();
102     if (err==OK)
103       label(title,btitle);
104   }
105   OnError(err);
106 }
107
108 void
109 NCursesPanel::label(const char *tLabel, const char *bLabel) {
110   if (tLabel)
111     centertext(0,tLabel);
112   if (bLabel)
113     centertext(maxy(),bLabel);
114 }
115
116 void
117 NCursesPanel::centertext(int row,const char *label) {
118   if (label) {
119     int x = (maxx() - ::strlen(label)) / 2;
120     if (x<0)
121       x=0;
122     OnError(addstr(row, x, label, width()));
123   }
124 }
125
126 int
127 NCursesPanel::getKey(void) {
128   return getch();
129 }