done till colors ...
[midnight-commander.git] / pc / slint_pc.c
blob5c711ff20e6155c2955b2d856a0f1a50dedf107d
1 /* Slang interface to the Midnight Commander for Win32
2 This emulates some features of ncurses on top of slang
3 S-lang is not fully consistent between its Unix and non-Unix versions.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 #include <config.h>
21 #include <stdio.h>
22 #include <string.h>
23 #include "../src/global.h"
24 #include "../src/tty.h"
25 #include "../src/color.h"
26 #include "../src/util.h"
27 #include "../src/mouse.h" /* Gpm_Event is required in key.h */
28 #include "../src/key.h" /* define_sequence */
29 #include "../src/main.h" /* extern: force_colors */
30 #include "../src/win.h" /* do_exit_ca_mode */
32 #ifdef HAVE_SLANG
34 static void slang_sigterm ()
36 SLsmg_reset_smg ();
39 static int slinterrupt;
41 void enable_interrupt_key(void)
43 SLang_set_abort_signal(NULL);
44 slinterrupt = 1;
46 void disable_interrupt_key(void)
48 slinterrupt = 0;
50 int got_interrupt ()
52 int t;
53 int SLKeyboard_Quit=0; /* FIXME!! */
54 t = slinterrupt ? SLKeyboard_Quit : 0;
55 /* SLKeyboard_Quit = 0; */
56 return t;
59 /* Only done the first time */
60 void slang_init (void)
62 SLtt_get_terminfo ();
63 SLang_init_tty (XCTRL('c'), 1, 0);
64 slang_prog_mode ();
65 load_terminfo_keys ();
68 /* Done each time we come back from done mode */
69 void slang_prog_mode (void)
71 SLsmg_init_smg ();
72 SLsmg_touch_lines (0, LINES);
75 /* Called each time we want to shutdown slang screen manager */
76 void slang_shell_mode (void)
81 void slang_shutdown ()
83 slang_shell_mode ();
84 do_exit_ca_mode ();
85 SLang_reset_tty ();
87 /* reset the colors to those that were
88 * active when the program was started up
89 (not written)
93 /* keypad routines */
94 void slang_keypad (int set)
96 /* enable keypad strings */
99 static int no_slang_delay;
101 void set_slang_delay (int v)
103 no_slang_delay = v;
106 void hline (int ch, int len)
108 int last_x, last_y;
110 last_x = SLsmg_get_column ();
111 last_y = SLsmg_get_row ();
113 if (ch == 0)
114 ch = ACS_HLINE;
116 if (ch == ACS_HLINE){
117 SLsmg_draw_hline (len);
118 } else {
119 while (len--)
120 addch (ch);
122 move (last_y, last_x);
125 void vline (int character, int len)
127 if (!slow_terminal){
128 SLsmg_draw_vline (len);
129 } else {
130 int last_x, last_y, pos = 0;
132 last_x = SLsmg_get_column ();
133 last_y = SLsmg_get_row ();
135 while (len--){
136 move (last_y + pos++, last_x);
137 addch (' ');
139 move (last_x, last_y);
143 int has_colors ()
145 /* No terminals on NT, make default color */
146 if (!disable_colors)
147 SLtt_Use_Ansi_Colors = 1;
149 /* Setup emulated colors */
150 if (SLtt_Use_Ansi_Colors){
151 init_pair (A_REVERSE, "black", "white");
152 } else {
153 /* SLtt_set_mono (A_BOLD, NULL, SLTT_BOLD_MASK);
154 SLtt_set_mono (A_REVERSE, NULL, SLTT_REV_MASK);
155 SLtt_set_mono (A_BOLD|A_REVERSE, NULL, SLTT_BOLD_MASK | SLTT_REV_MASK);
156 */ }
157 return SLtt_Use_Ansi_Colors;
160 void attrset (int color)
162 if (!SLtt_Use_Ansi_Colors){
163 SLsmg_set_color (color);
164 return;
167 if (color & A_BOLD){
168 if (color == A_BOLD)
169 SLsmg_set_color (A_BOLD);
170 else
171 SLsmg_set_color ((color & (~A_BOLD)) + 8);
172 return;
175 if (color == A_REVERSE)
176 SLsmg_set_color (A_REVERSE);
177 else
178 SLsmg_set_color (color);
181 void load_terminfo_keys ()
185 int getch ()
187 if (no_slang_delay)
188 if (SLang_input_pending (0) == 0)
189 return -1;
191 return SLang_getkey ();
194 extern int slow_terminal;
196 #else
198 /* Non slang builds do not understand got_interrupt */
199 int got_interrupt ()
201 return 0;
203 #endif /* HAVE_SLANG */
205 void mc_refresh (void)
207 /* if (!we_are_background) (no background mode yet) */
208 refresh ();
211 void slang_set_raw_mode (void)
213 return;
216 int max_index = 0;
218 void
219 init_pair (int index, char *foreground, char *background)
222 SLtt_set_color (index, "", foreground, background);
223 if (index > max_index)
224 max_index = index;
228 alloc_color_pair (char *foreground, char *background)
230 init_pair (++max_index, foreground, background);
231 return max_index;
235 try_alloc_color_pair (char *fg, char *bg)
237 static struct colors_avail {
238 struct colors_avail *next;
239 char *fg, *bg;
240 int index;
241 } *p, c =
243 0, 0, 0, 0
246 c.index = NORMAL_COLOR;
247 p = &c;
248 for (;;) {
249 if (((fg && p->fg) ? !strcmp (fg, p->fg) : fg == p->fg) != 0
250 && ((bg && p->bg) ? !strcmp (bg, p->bg) : bg == p->bg) != 0)
251 return p->index;
252 if (!p->next)
253 break;
254 p = p->next;
256 p->next = malloc (sizeof (c));
257 p = p->next;
258 p->next = 0;
259 p->fg = fg ? strdup (fg) : 0;
260 p->bg = bg ? strdup (bg) : 0;
261 if (!fg)
262 fg = "white";
263 if (!bg)
264 bg = "blue";
265 p->index = alloc_color_pair (fg, bg);
266 return p->index;