Merge branch '3643_cons_handler_min_macro'
[midnight-commander.git] / lib / widget / dialog-switch.c
blob60c514ab70d06af16b8a1772029e6cbe143d7f88
1 /*
2 Support of multiply editors and viewers.
4 Original idea and code: Oleg "Olegarch" Konovalov <olegarch@linuxinside.com>
6 Copyright (C) 2009-2016
7 Free Software Foundation, Inc.
9 Written by:
10 Daniel Borca <dborca@yahoo.com>, 2007
11 Andrew Borodin <aborodin@vmail.ru>, 2010, 2013
13 This file is part of the Midnight Commander.
15 The Midnight Commander is free software: you can redistribute it
16 and/or modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation, either version 3 of the License,
18 or (at your option) any later version.
20 The Midnight Commander is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program. If not, see <http://www.gnu.org/licenses/>.
29 /** \file dialog-switch.c
30 * \brief Source: support of multiply editors and viewers.
33 #include <config.h>
35 #include "lib/global.h"
36 #include "lib/tty/tty.h" /* LINES, COLS */
37 #include "lib/tty/color.h" /* tty_set_normal_attrs() */
38 #include "lib/widget.h"
39 #include "lib/event.h"
41 /*** global variables ****************************************************************************/
43 WDialog *midnight_dlg = NULL;
45 /*** file scope macro definitions ****************************************************************/
47 /*** file scope type declarations ****************************************************************/
49 /*** file scope variables ************************************************************************/
51 /* List of dialogs: filemanagers, editors, viewers */
52 static GList *mc_dialogs = NULL;
53 /* Currently active dialog */
54 static GList *mc_current = NULL;
55 /* Is there any dialogs that we have to run after returning to the manager from another dialog */
56 static gboolean dialog_switch_pending = FALSE;
58 /*** file scope functions ************************************************************************/
59 /* --------------------------------------------------------------------------------------------- */
61 static unsigned char
62 get_hotkey (int n)
64 return (n <= 9) ? '0' + n : 'a' + n - 10;
67 /* --------------------------------------------------------------------------------------------- */
69 static void
70 dialog_switch_suspend (void *data, void *user_data)
72 (void) user_data;
74 if (data != mc_current->data)
75 DIALOG (data)->state = DLG_SUSPENDED;
78 /* --------------------------------------------------------------------------------------------- */
80 static void
81 dialog_switch_goto (GList * dlg)
83 if (mc_current != dlg)
85 WDialog *old = DIALOG (mc_current->data);
87 mc_current = dlg;
89 if (old == midnight_dlg)
91 /* switch from panels to another dialog (editor, viewer, etc) */
92 dialog_switch_pending = TRUE;
93 dialog_switch_process_pending ();
95 else
97 /* switch from editor, viewer, etc to another dialog */
98 old->state = DLG_SUSPENDED;
100 if (DIALOG (dlg->data) != midnight_dlg)
101 /* switch to another editor, viewer, etc */
102 /* return to panels before run the required dialog */
103 dialog_switch_pending = TRUE;
104 else
106 /* switch to panels */
107 midnight_dlg->state = DLG_ACTIVE;
108 do_refresh ();
114 /* --------------------------------------------------------------------------------------------- */
116 static void
117 dlg_resize_cb (void *data, void *user_data)
119 WDialog *d = data;
121 (void) user_data;
122 if (d->state == DLG_ACTIVE)
123 send_message (d, NULL, MSG_RESIZE, 0, NULL);
124 else
125 d->winch_pending = TRUE;
128 /* --------------------------------------------------------------------------------------------- */
129 /*** public functions ****************************************************************************/
130 /* --------------------------------------------------------------------------------------------- */
132 void
133 dialog_switch_add (WDialog * h)
135 GList *dlg;
137 dlg = g_list_find (mc_dialogs, h);
139 if (dlg != NULL)
140 mc_current = dlg;
141 else
143 mc_dialogs = g_list_prepend (mc_dialogs, h);
144 mc_current = mc_dialogs;
147 /* suspend forced all other screens */
148 g_list_foreach (mc_dialogs, dialog_switch_suspend, NULL);
151 /* --------------------------------------------------------------------------------------------- */
153 void
154 dialog_switch_remove (WDialog * h)
156 GList *this;
158 if (DIALOG (mc_current->data) == h)
159 this = mc_current;
160 else
161 this = g_list_find (mc_dialogs, h);
163 mc_dialogs = g_list_delete_link (mc_dialogs, this);
165 /* adjust current dialog */
166 if (top_dlg != NULL)
167 mc_current = g_list_find (mc_dialogs, DIALOG (top_dlg->data));
168 else
169 mc_current = mc_dialogs;
171 /* resume forced the current screen */
172 if (mc_current != NULL)
173 DIALOG (mc_current->data)->state = DLG_ACTIVE;
176 /* --------------------------------------------------------------------------------------------- */
178 size_t
179 dialog_switch_num (void)
181 return g_list_length (mc_dialogs);
184 /* --------------------------------------------------------------------------------------------- */
186 void
187 dialog_switch_next (void)
189 GList *next;
191 if (mc_global.midnight_shutdown || mc_current == NULL)
192 return;
194 next = g_list_next (mc_current);
195 if (next == NULL)
196 next = mc_dialogs;
198 dialog_switch_goto (next);
201 /* --------------------------------------------------------------------------------------------- */
203 void
204 dialog_switch_prev (void)
206 GList *prev;
208 if (mc_global.midnight_shutdown || mc_current == NULL)
209 return;
211 prev = g_list_previous (mc_current);
212 if (prev == NULL)
213 prev = g_list_last (mc_dialogs);
215 dialog_switch_goto (prev);
218 /* --------------------------------------------------------------------------------------------- */
220 void
221 dialog_switch_list (void)
223 const size_t dlg_num = g_list_length (mc_dialogs);
224 int lines, cols;
225 Listbox *listbox;
226 GList *h;
227 int i = 0;
228 int rv;
230 if (mc_global.midnight_shutdown || mc_current == NULL)
231 return;
233 lines = MIN ((size_t) (LINES * 2 / 3), dlg_num);
234 cols = COLS * 2 / 3;
236 listbox = create_listbox_window (lines, cols, _("Screens"), "[Screen selector]");
238 for (h = mc_dialogs; h != NULL; h = g_list_next (h))
240 WDialog *dlg;
241 char *title;
243 dlg = DIALOG (h->data);
245 if ((dlg != NULL) && (dlg->get_title != NULL))
246 title = dlg->get_title (dlg, WIDGET (listbox->list)->cols - 2);
247 else
248 title = g_strdup ("");
250 listbox_add_item (listbox->list, LISTBOX_APPEND_BEFORE, get_hotkey (i++), title, NULL,
251 FALSE);
253 g_free (title);
256 listbox_select_entry (listbox->list, dlg_num - 1 - g_list_position (mc_dialogs, mc_current));
257 rv = run_listbox (listbox);
259 if (rv >= 0)
261 h = g_list_nth (mc_dialogs, dlg_num - 1 - rv);
262 dialog_switch_goto (h);
266 /* --------------------------------------------------------------------------------------------- */
269 dialog_switch_process_pending (void)
271 int ret = 0;
273 while (dialog_switch_pending)
275 WDialog *h = DIALOG (mc_current->data);
277 dialog_switch_pending = FALSE;
278 h->state = DLG_SUSPENDED;
279 ret = dlg_run (h);
280 if (h->state == DLG_CLOSED)
282 dlg_destroy (h);
284 /* return to panels */
285 if (mc_global.mc_run_mode == MC_RUN_FULL)
287 mc_current = g_list_find (mc_dialogs, midnight_dlg);
288 mc_event_raise (MCEVENT_GROUP_FILEMANAGER, "update_panels", NULL);
293 repaint_screen ();
295 return ret;
298 /* --------------------------------------------------------------------------------------------- */
300 void
301 dialog_switch_got_winch (void)
303 GList *dlg;
305 for (dlg = mc_dialogs; dlg != NULL; dlg = g_list_next (dlg))
306 if (dlg != mc_current)
307 DIALOG (dlg->data)->winch_pending = TRUE;
310 /* --------------------------------------------------------------------------------------------- */
312 void
313 dialog_switch_shutdown (void)
315 while (mc_dialogs != NULL)
317 WDialog *dlg = DIALOG (mc_dialogs->data);
319 dlg_run (dlg);
320 dlg_destroy (dlg);
324 /* --------------------------------------------------------------------------------------------- */
326 void
327 clr_scr (void)
329 tty_set_normal_attrs ();
330 tty_fill_region (0, 0, LINES, COLS, ' ');
331 tty_refresh ();
334 /* --------------------------------------------------------------------------------------------- */
336 void
337 repaint_screen (void)
339 do_refresh ();
340 tty_refresh ();
343 /* --------------------------------------------------------------------------------------------- */
345 void
346 mc_refresh (void)
348 #ifdef ENABLE_BACKGROUND
349 if (mc_global.we_are_background)
350 return;
351 #endif /* ENABLE_BACKGROUND */
352 if (mc_global.tty.winch_flag == 0)
353 tty_refresh ();
354 else
356 /* if winch was caugth, we should do not only redraw screen, but
357 reposition/resize all */
358 dialog_change_screen_size ();
362 /* --------------------------------------------------------------------------------------------- */
364 void
365 dialog_change_screen_size (void)
367 mc_global.tty.winch_flag = 0;
369 tty_change_screen_size ();
371 #ifdef HAVE_SLANG
372 tty_keypad (TRUE);
373 tty_nodelay (FALSE);
374 #endif
376 /* Inform all suspending dialogs */
377 dialog_switch_got_winch ();
378 /* Inform all running dialogs */
379 g_list_foreach (top_dlg, (GFunc) dlg_resize_cb, NULL);
381 /* Now, force the redraw */
382 repaint_screen ();
385 /* --------------------------------------------------------------------------------------------- */