]> ncurses.scripts.mit.edu Git - ncurses.git/blob - c++/cursslk.cc
ncurses 5.1
[ncurses.git] / c++ / cursslk.cc
1 // * this is for making emacs happy: -*-Mode: C++;-*-
2 /****************************************************************************
3  * Copyright (c) 1998 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 <juergen.pfeifer@gmx.net> 1997                 *
32  ****************************************************************************/
33
34 #include "cursslk.h"
35 #include "cursesapp.h"
36 #include "internal.h"
37
38 MODULE_ID("$Id: cursslk.cc,v 1.5 1999/05/16 17:31:01 juergen Exp $")
39
40 void Soft_Label_Key_Set::Soft_Label_Key::operator=(char *text)  {
41   delete[] label;
42   label = new char[1 + ::strlen(text)];
43   (strcpy)(label,text);
44 }
45
46 long Soft_Label_Key_Set::count      = 0L;
47 int  Soft_Label_Key_Set::num_labels = 0;
48
49 Soft_Label_Key_Set::Label_Layout
50   Soft_Label_Key_Set::format = None;
51
52 void Soft_Label_Key_Set::init() {
53   slk_array = new Soft_Label_Key[num_labels];
54   for(int i=0; i < num_labels; i++) {
55     slk_array[i].num = i+1;
56   }
57   b_attrInit = FALSE;  
58 }
59
60 Soft_Label_Key_Set::Soft_Label_Key_Set() {
61   if (format==None)
62     Error("No default SLK layout");
63   init();
64 }
65
66 Soft_Label_Key_Set::Soft_Label_Key_Set(Soft_Label_Key_Set::Label_Layout fmt) {
67   if (fmt==None)
68     Error("Invalid SLK Layout");
69   if (count++==0) {
70     format = fmt;
71     if (ERR == ::slk_init((int)fmt))
72       Error("slk_init");
73     num_labels = (fmt>=PC_Style?12:8);
74   }
75   else if (fmt!=format)
76     Error("All SLKs must have same layout");
77   init();
78 }
79
80 Soft_Label_Key_Set::~Soft_Label_Key_Set() {
81   if (!::isendwin())
82     clear();
83   delete[] slk_array;
84   count--;
85 }
86
87 Soft_Label_Key_Set::Soft_Label_Key& Soft_Label_Key_Set::operator[](int i) {
88   if (i<1 || i>num_labels)
89     Error("Invalid Label index");
90   return slk_array[i-1];
91 }
92
93 void Soft_Label_Key_Set::activate_label(int i, bool bf) {
94   if (!b_attrInit) {
95     NCursesApplication* A = NCursesApplication::getApplication();
96     if (A) attrset(A->labels());
97     b_attrInit = TRUE;
98   }
99   Soft_Label_Key& K = (*this)[i];
100   if (ERR==::slk_set(K.num,bf?K.label:"",K.format))
101     Error("slk_set");
102   noutrefresh();
103 }
104
105 void Soft_Label_Key_Set::activate_labels(bool bf) {
106   if (!b_attrInit) {
107     NCursesApplication* A = NCursesApplication::getApplication();
108     if (A) attrset(A->labels());
109     b_attrInit = TRUE;
110   }
111   for(int i=1; i <= num_labels; i++) {
112     Soft_Label_Key& K = (*this)[i];
113     if (ERR==::slk_set(K.num,bf?K.label:"",K.format))
114       Error("slk_set");
115   }
116   if (bf)
117     restore();
118   else
119     clear();
120   noutrefresh();
121 }