]> ncurses.scripts.mit.edu Git - ncurses.git/blob - c++/cursesapp.cc
ncurses 5.6 - patch 20080329
[ncurses.git] / c++ / cursesapp.cc
1 // * this is for making emacs happy: -*-Mode: C++;-*-
2 /****************************************************************************
3  * Copyright (c) 1998-2005,2007 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, 1997                                          *
32  ****************************************************************************/
33
34 #include "internal.h"
35 #include "cursesapp.h"
36
37 MODULE_ID("$Id: cursesapp.cc,v 1.14 2007/01/27 20:16:42 tom Exp $")
38
39 void
40 NCursesApplication::init(bool bColors)
41 {
42   if (bColors)
43     NCursesWindow::useColors();
44
45   if (Root_Window->colors() > 1) {
46     b_Colors = TRUE;
47     Root_Window->setcolor(1);
48     Root_Window->setpalette(COLOR_YELLOW,COLOR_BLUE);
49     Root_Window->setcolor(2);
50     Root_Window->setpalette(COLOR_CYAN,COLOR_BLUE);
51     Root_Window->setcolor(3);
52     Root_Window->setpalette(COLOR_BLACK,COLOR_BLUE);
53     Root_Window->setcolor(4);
54     Root_Window->setpalette(COLOR_BLACK,COLOR_CYAN);
55     Root_Window->setcolor(5);
56     Root_Window->setpalette(COLOR_BLUE,COLOR_YELLOW);
57     Root_Window->setcolor(6);
58     Root_Window->setpalette(COLOR_BLACK,COLOR_GREEN);
59   }
60   else
61     b_Colors = FALSE;
62
63   Root_Window->bkgd(' '|window_backgrounds());
64 }
65
66 NCursesApplication* NCursesApplication::theApp = 0;
67 NCursesWindow* NCursesApplication::titleWindow = 0;
68 NCursesApplication::SLK_Link* NCursesApplication::slk_stack = 0;
69
70 NCursesApplication::~NCursesApplication()
71 {
72   Soft_Label_Key_Set* S;
73
74   delete titleWindow;
75   titleWindow = 0;
76
77   while( (S=top()) ) {
78     pop();
79     delete S;
80   }
81
82   delete Root_Window;
83   Root_Window = 0;
84
85   ::endwin();
86 }
87
88 int NCursesApplication::rinit(NCursesWindow& w)
89 {
90   titleWindow = &w;
91   return OK;
92 }
93
94 void NCursesApplication::push(Soft_Label_Key_Set& S)
95 {
96   SLK_Link* L = new SLK_Link;
97   assert(L != 0);
98   L->prev = slk_stack;
99   L->SLKs = &S;
100   slk_stack = L;
101   if (Root_Window)
102     S.show();
103 }
104
105 bool NCursesApplication::pop()
106 {
107   if (slk_stack) {
108     SLK_Link* L = slk_stack;
109     slk_stack = slk_stack->prev;
110     delete L;
111     if (Root_Window && top())
112       top()->show();
113   }
114   return (slk_stack ? FALSE : TRUE);
115 }
116
117 Soft_Label_Key_Set* NCursesApplication::top() const
118 {
119   if (slk_stack)
120     return slk_stack->SLKs;
121   else
122     return static_cast<Soft_Label_Key_Set*>(0);
123 }
124
125 int NCursesApplication::operator()(void)
126 {
127   bool bColors = b_Colors;
128   Soft_Label_Key_Set* S = 0;
129
130   int ts = titlesize();
131   if (ts>0)
132     NCursesWindow::ripoffline(ts,rinit);
133   Soft_Label_Key_Set::Label_Layout fmt = useSLKs();
134   if (fmt!=Soft_Label_Key_Set::None) {
135     S = new Soft_Label_Key_Set(fmt);
136     assert(S != 0);
137     init_labels(*S);
138   }
139
140   Root_Window = new NCursesWindow(::stdscr);
141   init(bColors);
142
143   if (ts>0)
144     title();
145   if (fmt!=Soft_Label_Key_Set::None) {
146     push(*S);
147   }
148
149   return run();
150 }
151
152 NCursesApplication::NCursesApplication(bool bColors)
153   : b_Colors(bColors),
154     Root_Window(NULL)
155 {
156   if (theApp)
157     THROW(new NCursesException("Application object already created."));
158   else
159     theApp = this;
160 }