2011-10-15 14:56:47 +04:00
|
|
|
/*
|
|
|
|
Dialog box features module for the Midnight Commander
|
|
|
|
|
2007-09-26 14:22:25 +04:00
|
|
|
Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
2011-10-15 14:56:47 +04:00
|
|
|
2005, 2007, 2009, 2010, 2011
|
|
|
|
The Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
This file is part of the Midnight Commander.
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
The Midnight Commander is free software: you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the License,
|
|
|
|
or (at your option) any later version.
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
The Midnight Commander is distributed in the hope that it will be useful,
|
1998-02-27 07:54:42 +03:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2011-10-15 14:56:47 +04:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-10-25 03:20:30 +04:00
|
|
|
*/
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2009-02-05 21:28:18 +03:00
|
|
|
/** \file dialog.c
|
|
|
|
* \brief Source: dialog box features module
|
|
|
|
*/
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#include <config.h>
|
2005-02-08 12:04:03 +03:00
|
|
|
|
2003-10-25 03:20:30 +04:00
|
|
|
#include <ctype.h>
|
2011-05-02 13:44:47 +04:00
|
|
|
#include <errno.h>
|
2009-02-27 14:54:26 +03:00
|
|
|
#include <stdlib.h>
|
2005-02-08 12:04:03 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2011-05-02 13:44:47 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h> /* open() */
|
2005-02-08 12:04:03 +03:00
|
|
|
|
2010-01-20 18:11:52 +03:00
|
|
|
#include "lib/global.h"
|
2009-05-08 14:01:05 +04:00
|
|
|
|
2010-01-08 17:47:19 +03:00
|
|
|
#include "lib/tty/tty.h"
|
2010-01-21 16:06:15 +03:00
|
|
|
#include "lib/skin.h"
|
2010-01-08 17:47:19 +03:00
|
|
|
#include "lib/tty/key.h"
|
2010-01-21 15:17:26 +03:00
|
|
|
#include "lib/strutil.h"
|
2010-11-12 11:03:57 +03:00
|
|
|
#include "lib/widget.h"
|
2011-05-02 13:44:47 +04:00
|
|
|
#include "lib/fileloc.h" /* MC_HISTORY_FILE */
|
2011-02-17 15:02:31 +03:00
|
|
|
#include "lib/event.h" /* mc_event_raise() */
|
2010-04-18 14:58:18 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/*** global variables ****************************************************************************/
|
|
|
|
|
2009-05-30 21:39:02 +04:00
|
|
|
/* Color styles for normal and error dialogs */
|
2010-10-12 13:33:09 +04:00
|
|
|
dlg_colors_t dialog_colors;
|
|
|
|
dlg_colors_t alarm_colors;
|
2009-05-30 21:39:02 +04:00
|
|
|
|
2003-10-25 03:20:30 +04:00
|
|
|
/* Primitive way to check if the the current dialog is our dialog */
|
|
|
|
/* This is needed by async routines like load_prompt */
|
2010-04-18 14:26:28 +04:00
|
|
|
GList *top_dlg = NULL;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
|
|
|
/* A hook list for idle events */
|
2010-11-09 11:08:20 +03:00
|
|
|
hook_t *idle_hook = NULL;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-22 14:45:18 +03:00
|
|
|
/* If set then dialogs just clean the screen when refreshing, else */
|
|
|
|
/* they do a complete refresh, refreshing all the parts of the program */
|
|
|
|
int fast_refresh = 0;
|
|
|
|
|
2009-04-03 19:29:20 +04:00
|
|
|
/* left click outside of dialog closes it */
|
|
|
|
int mouse_close_dialog = 0;
|
|
|
|
|
2011-07-14 21:34:55 +04:00
|
|
|
const global_keymap_t *dialog_map = NULL;
|
2011-02-16 18:19:48 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/*** file scope macro definitions ****************************************************************/
|
2009-10-30 14:50:04 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/*** file scope type declarations ****************************************************************/
|
2009-10-30 14:50:04 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/** What to do if the requested widget doesn't take focus */
|
|
|
|
typedef enum
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
SELECT_NEXT, /* go the the next widget */
|
|
|
|
SELECT_PREV, /* go the the previous widget */
|
|
|
|
SELECT_EXACT /* use current widget */
|
|
|
|
} select_dir_t;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/*** file scope variables ************************************************************************/
|
2010-09-01 14:28:10 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/*** file scope functions ************************************************************************/
|
2011-07-18 13:27:01 +04:00
|
|
|
|
|
|
|
static GList *
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_widget_next (WDialog * h, GList * l)
|
2011-07-18 13:27:01 +04:00
|
|
|
{
|
|
|
|
GList *next;
|
|
|
|
|
|
|
|
next = g_list_next (l);
|
|
|
|
if (next == NULL)
|
|
|
|
next = h->widgets;
|
|
|
|
|
|
|
|
return next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static GList *
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_widget_prev (WDialog * h, GList * l)
|
2011-07-18 13:27:01 +04:00
|
|
|
{
|
|
|
|
GList *prev;
|
|
|
|
|
|
|
|
prev = g_list_previous (l);
|
|
|
|
if (prev == NULL)
|
|
|
|
prev = g_list_last (h->widgets);
|
|
|
|
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* broadcast a message to all the widgets in a dialog that have
|
|
|
|
* the options set to flags. If flags is zero, the message is sent
|
|
|
|
* to all widgets.
|
|
|
|
*/
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
static void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_broadcast_msg_to (WDialog * h, widget_msg_t msg, gboolean reverse, int flags)
|
2009-08-16 19:27:33 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
GList *p, *first;
|
2009-08-16 19:27:33 +04:00
|
|
|
|
2010-04-05 20:59:21 +04:00
|
|
|
if (h->widgets == NULL)
|
2010-04-03 15:19:09 +04:00
|
|
|
return;
|
|
|
|
|
2010-04-05 20:59:21 +04:00
|
|
|
if (h->current == NULL)
|
|
|
|
h->current = h->widgets;
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (reverse)
|
2011-07-18 13:27:01 +04:00
|
|
|
p = dlg_widget_prev (h, h->current);
|
2010-11-10 14:09:42 +03:00
|
|
|
else
|
2011-07-18 13:27:01 +04:00
|
|
|
p = dlg_widget_next (h, h->current);
|
2010-04-06 11:16:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
first = p;
|
2010-04-06 11:16:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
do
|
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *w = WIDGET (p->data);
|
2010-04-06 11:16:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (reverse)
|
2011-07-18 13:27:01 +04:00
|
|
|
p = dlg_widget_prev (h, p);
|
2010-11-10 14:09:42 +03:00
|
|
|
else
|
2011-07-18 13:27:01 +04:00
|
|
|
p = dlg_widget_next (h, p);
|
2009-08-16 19:27:33 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if ((flags == 0) || ((flags & w->options) != 0))
|
2012-06-26 11:52:21 +04:00
|
|
|
send_message (w, NULL, msg, 0, NULL);
|
2009-08-16 19:27:33 +04:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
while (first != p);
|
2009-08-16 19:27:33 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2011-05-03 17:24:56 +04:00
|
|
|
/**
|
|
|
|
* Read histories from the ${XDG_CACHE_HOME}/mc/history file
|
|
|
|
*/
|
|
|
|
static void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_read_history (WDialog * h)
|
2011-05-03 17:24:56 +04:00
|
|
|
{
|
|
|
|
char *profile;
|
|
|
|
ev_history_load_save_t event_data;
|
|
|
|
|
|
|
|
if (num_history_items_recorded == 0) /* this is how to disable */
|
|
|
|
return;
|
|
|
|
|
2011-11-24 02:28:07 +04:00
|
|
|
profile = mc_config_get_full_path (MC_HISTORY_FILE);
|
2012-07-28 14:19:27 +04:00
|
|
|
event_data.cfg = mc_config_init (profile, TRUE);
|
2011-05-03 17:24:56 +04:00
|
|
|
event_data.receiver = NULL;
|
|
|
|
|
|
|
|
/* create all histories in dialog */
|
|
|
|
mc_event_raise (h->event_group, MCEVENT_HISTORY_LOAD, &event_data);
|
|
|
|
|
|
|
|
mc_config_deinit (event_data.cfg);
|
|
|
|
g_free (profile);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2011-04-17 14:21:17 +04:00
|
|
|
static gboolean
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_unfocus (WDialog * h)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2011-04-17 14:21:17 +04:00
|
|
|
/* we can unfocus disabled widget */
|
|
|
|
if ((h->current != NULL) && (h->state == DLG_CONSTRUCT || h->state == DLG_ACTIVE))
|
2010-04-06 11:16:11 +04:00
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *current = WIDGET (h->current->data);
|
2010-11-10 14:09:42 +03:00
|
|
|
|
2012-06-26 11:52:21 +04:00
|
|
|
if (send_message (current, NULL, WIDGET_UNFOCUS, 0, NULL) == MSG_HANDLED)
|
2010-04-06 11:16:11 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
h->callback (h, current, DLG_UNFOCUS, 0, NULL);
|
2011-04-17 14:21:17 +04:00
|
|
|
return TRUE;
|
2010-04-06 11:16:11 +04:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
2009-08-16 19:27:33 +04:00
|
|
|
|
2011-04-17 14:21:17 +04:00
|
|
|
return FALSE;
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
2009-08-16 19:27:33 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2009-08-16 19:27:33 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
static int
|
|
|
|
dlg_find_widget_callback (const void *a, const void *b)
|
|
|
|
{
|
2012-06-26 11:52:21 +04:00
|
|
|
const Widget *w = WIDGET (a);
|
|
|
|
widget_cb_fn f = (widget_cb_fn) b;
|
2009-08-16 19:27:33 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
return (w->callback == f) ? 0 : 1;
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* Try to select another widget. If forward is set, follow tab order.
|
|
|
|
* Otherwise go to the previous widget.
|
|
|
|
*/
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
static void
|
2012-09-28 11:18:45 +04:00
|
|
|
do_select_widget (WDialog * h, GList * w, select_dir_t dir)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *w0 = WIDGET (h->current->data);
|
2009-08-16 19:27:33 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (!dlg_unfocus (h))
|
|
|
|
return;
|
2010-04-03 15:19:09 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
h->current = w;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
do
|
2010-04-06 11:16:11 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
if (dlg_focus (h))
|
|
|
|
break;
|
2010-04-06 11:16:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
switch (dir)
|
|
|
|
{
|
2011-05-04 17:07:25 +04:00
|
|
|
case SELECT_EXACT:
|
|
|
|
h->current = g_list_find (h->widgets, w0);
|
|
|
|
if (dlg_focus (h))
|
|
|
|
return;
|
|
|
|
/* try find another widget that can take focus */
|
|
|
|
dir = SELECT_NEXT;
|
|
|
|
/* fallthrough */
|
2010-11-10 14:09:42 +03:00
|
|
|
case SELECT_NEXT:
|
2011-07-18 13:27:01 +04:00
|
|
|
h->current = dlg_widget_next (h, h->current);
|
2010-11-10 14:09:42 +03:00
|
|
|
break;
|
|
|
|
case SELECT_PREV:
|
2011-07-18 13:27:01 +04:00
|
|
|
h->current = dlg_widget_prev (h, h->current);
|
2010-11-10 14:09:42 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
2012-06-20 15:09:44 +04:00
|
|
|
while (h->current != w /* && (WIDGET (h->current->data)->options & W_DISABLED) == 0 */ );
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2012-06-20 15:09:44 +04:00
|
|
|
if (dlg_overlap (w0, WIDGET (h->current->data)))
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2012-06-26 11:52:21 +04:00
|
|
|
send_message (WIDGET (h->current->data), NULL, WIDGET_DRAW, 0, NULL);
|
|
|
|
send_message (WIDGET (h->current->data), NULL, WIDGET_FOCUS, 0, NULL);
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2010-10-12 13:33:09 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
static void
|
|
|
|
refresh_cmd (void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SLANG
|
|
|
|
tty_touch_screen ();
|
|
|
|
mc_refresh ();
|
|
|
|
#else
|
|
|
|
/* Use this if the refreshes fail */
|
|
|
|
clr_scr ();
|
|
|
|
repaint_screen ();
|
|
|
|
#endif /* HAVE_SLANG */
|
2009-05-30 21:39:02 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static cb_ret_t
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_execute_cmd (WDialog * h, unsigned long command)
|
2009-10-30 14:50:04 +03:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
cb_ret_t ret = MSG_HANDLED;
|
|
|
|
switch (command)
|
|
|
|
{
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_Ok:
|
2010-11-10 14:09:42 +03:00
|
|
|
h->ret_value = B_ENTER;
|
|
|
|
dlg_stop (h);
|
|
|
|
break;
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_Cancel:
|
2010-11-10 14:09:42 +03:00
|
|
|
h->ret_value = B_CANCEL;
|
|
|
|
dlg_stop (h);
|
|
|
|
break;
|
|
|
|
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_Up:
|
|
|
|
case CK_Left:
|
2010-11-10 14:09:42 +03:00
|
|
|
dlg_one_up (h);
|
|
|
|
break;
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_Down:
|
|
|
|
case CK_Right:
|
2010-11-10 14:09:42 +03:00
|
|
|
dlg_one_down (h);
|
|
|
|
break;
|
|
|
|
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_Help:
|
2011-02-17 15:02:31 +03:00
|
|
|
{
|
|
|
|
ev_help_t event_data = { NULL, h->help_ctx };
|
|
|
|
mc_event_raise (MCEVENT_GROUP_CORE, "help", &event_data);
|
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
break;
|
|
|
|
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_Suspend:
|
2011-02-18 15:13:44 +03:00
|
|
|
mc_event_raise (MCEVENT_GROUP_CORE, "suspend", NULL);
|
2010-11-10 14:09:42 +03:00
|
|
|
refresh_cmd ();
|
|
|
|
break;
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_Refresh:
|
2010-11-10 14:09:42 +03:00
|
|
|
refresh_cmd ();
|
|
|
|
break;
|
|
|
|
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_ScreenList:
|
2010-11-10 14:09:42 +03:00
|
|
|
if (!h->modal)
|
|
|
|
dialog_switch_list ();
|
|
|
|
else
|
|
|
|
ret = MSG_NOT_HANDLED;
|
|
|
|
break;
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_ScreenNext:
|
2010-11-10 14:09:42 +03:00
|
|
|
if (!h->modal)
|
|
|
|
dialog_switch_next ();
|
|
|
|
else
|
|
|
|
ret = MSG_NOT_HANDLED;
|
|
|
|
break;
|
2011-01-21 11:47:27 +03:00
|
|
|
case CK_ScreenPrev:
|
2010-11-10 14:09:42 +03:00
|
|
|
if (!h->modal)
|
|
|
|
dialog_switch_prev ();
|
|
|
|
else
|
|
|
|
ret = MSG_NOT_HANDLED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ret = MSG_NOT_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2009-10-30 14:50:04 +03:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static cb_ret_t
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_handle_key (WDialog * h, int d_key)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
unsigned long command;
|
2011-10-27 14:58:54 +04:00
|
|
|
|
2010-11-18 11:43:23 +03:00
|
|
|
command = keybind_lookup_keymap_command (dialog_map, d_key);
|
2011-10-27 14:58:54 +04:00
|
|
|
|
|
|
|
if (command == CK_IgnoreKey)
|
2010-11-10 14:09:42 +03:00
|
|
|
return MSG_NOT_HANDLED;
|
2011-10-27 14:58:54 +04:00
|
|
|
|
|
|
|
if (h->callback (h, NULL, DLG_ACTION, command, NULL) == MSG_HANDLED
|
|
|
|
|| dlg_execute_cmd (h, command) == MSG_HANDLED)
|
2010-11-10 14:09:42 +03:00
|
|
|
return MSG_HANDLED;
|
2011-10-27 14:58:54 +04:00
|
|
|
|
|
|
|
return MSG_NOT_HANDLED;
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static int
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_mouse_event (WDialog * h, Gpm_Event * event)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2012-06-20 12:05:13 +04:00
|
|
|
Widget *wh = WIDGET (h);
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
GList *item;
|
|
|
|
GList *starting_widget = h->current;
|
|
|
|
int x = event->x;
|
|
|
|
int y = event->y;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* close the dialog by mouse click out of dialog area */
|
2012-07-06 14:56:29 +04:00
|
|
|
if (mouse_close_dialog && !h->fullscreen && ((event->buttons & GPM_B_LEFT) != 0) && ((event->type & GPM_DOWN) != 0) /* left click */
|
2012-06-20 12:05:13 +04:00
|
|
|
&& !((x > wh->x) && (x <= wh->x + wh->cols) && (y > wh->y) && (y <= wh->y + wh->lines)))
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
h->ret_value = B_CANCEL;
|
|
|
|
dlg_stop (h);
|
|
|
|
return MOU_NORMAL;
|
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2012-06-20 12:05:13 +04:00
|
|
|
if (wh->mouse != NULL)
|
2012-05-28 16:59:20 +04:00
|
|
|
{
|
|
|
|
int mou;
|
|
|
|
|
2012-06-20 12:05:13 +04:00
|
|
|
mou = wh->mouse (event, wh);
|
2012-05-28 16:59:20 +04:00
|
|
|
if (mou != MOU_UNHANDLED)
|
|
|
|
return mou;
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
item = starting_widget;
|
|
|
|
do
|
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *widget = WIDGET (item->data);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2012-09-24 14:22:33 +04:00
|
|
|
item = dlg_widget_prev (h, item);
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2011-03-21 16:43:56 +03:00
|
|
|
if ((widget->options & W_DISABLED) == 0 && widget->mouse != NULL)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2011-03-21 16:43:56 +03:00
|
|
|
/* put global cursor position to the widget */
|
|
|
|
int ret;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2011-03-21 16:43:56 +03:00
|
|
|
ret = widget->mouse (event, widget);
|
|
|
|
if (ret != MOU_UNHANDLED)
|
|
|
|
return ret;
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
while (item != starting_widget);
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2011-03-21 16:43:56 +03:00
|
|
|
return MOU_UNHANDLED;
|
2009-08-16 19:27:33 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static cb_ret_t
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_try_hotkey (WDialog * h, int d_key)
|
1998-02-27 07:54:42 +03:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
GList *hot_cur;
|
|
|
|
Widget *current;
|
|
|
|
cb_ret_t handled;
|
|
|
|
int c;
|
1999-01-01 05:04:59 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (h->widgets == NULL)
|
|
|
|
return MSG_NOT_HANDLED;
|
|
|
|
|
|
|
|
if (h->current == NULL)
|
|
|
|
h->current = h->widgets;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Explanation: we don't send letter hotkeys to other widgets if
|
|
|
|
* the currently selected widget is an input line
|
|
|
|
*/
|
|
|
|
|
2012-06-20 15:09:44 +04:00
|
|
|
current = WIDGET (h->current->data);
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
if ((current->options & W_DISABLED) != 0)
|
|
|
|
return MSG_NOT_HANDLED;
|
|
|
|
|
|
|
|
if (current->options & W_IS_INPUT)
|
2009-10-30 14:50:04 +03:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
/* skip ascii control characters, anything else can valid character in
|
|
|
|
* some encoding */
|
|
|
|
if (d_key >= 32 && d_key < 256)
|
|
|
|
return MSG_NOT_HANDLED;
|
2009-10-30 14:50:04 +03:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
/* If it's an alt key, send the message */
|
|
|
|
c = d_key & ~ALT (0);
|
|
|
|
if (d_key & ALT (0) && g_ascii_isalpha (c))
|
|
|
|
d_key = g_ascii_tolower (c);
|
|
|
|
|
|
|
|
handled = MSG_NOT_HANDLED;
|
|
|
|
if ((current->options & W_WANT_HOTKEY) != 0)
|
2012-06-26 11:52:21 +04:00
|
|
|
handled = send_message (current, NULL, WIDGET_HOTKEY, d_key, NULL);
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
/* If not used, send hotkey to other widgets */
|
|
|
|
if (handled == MSG_HANDLED)
|
|
|
|
return MSG_HANDLED;
|
|
|
|
|
2011-07-18 13:27:01 +04:00
|
|
|
hot_cur = dlg_widget_next (h, h->current);
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
/* send it to all widgets */
|
|
|
|
while (h->current != hot_cur && handled == MSG_NOT_HANDLED)
|
2009-10-30 14:50:04 +03:00
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
current = WIDGET (hot_cur->data);
|
2010-11-10 14:09:42 +03:00
|
|
|
|
2011-10-24 16:37:10 +04:00
|
|
|
if ((current->options & W_WANT_HOTKEY) != 0 && (current->options & W_DISABLED) == 0)
|
2012-06-26 11:52:21 +04:00
|
|
|
handled = send_message (current, NULL, WIDGET_HOTKEY, d_key, NULL);
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
if (handled == MSG_NOT_HANDLED)
|
2011-07-18 13:27:01 +04:00
|
|
|
hot_cur = dlg_widget_next (h, hot_cur);
|
2009-10-30 14:50:04 +03:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
if (handled == MSG_HANDLED)
|
|
|
|
do_select_widget (h, hot_cur, SELECT_EXACT);
|
|
|
|
|
|
|
|
return handled;
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2003-10-25 03:20:30 +04:00
|
|
|
static void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_key_event (WDialog * h, int d_key)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
cb_ret_t handled;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-04-05 20:59:21 +04:00
|
|
|
if (h->widgets == NULL)
|
2010-04-06 11:16:11 +04:00
|
|
|
return;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-04-05 20:59:21 +04:00
|
|
|
if (h->current == NULL)
|
|
|
|
h->current = h->widgets;
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* TAB used to cycle */
|
|
|
|
if ((h->flags & DLG_WANT_TAB) == 0)
|
2010-04-05 20:59:21 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
if (d_key == '\t')
|
|
|
|
{
|
|
|
|
dlg_one_down (h);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (d_key == KEY_BTAB)
|
|
|
|
{
|
|
|
|
dlg_one_up (h);
|
|
|
|
return;
|
|
|
|
}
|
2010-04-05 20:59:21 +04:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
/* first can dlg_callback handle the key */
|
|
|
|
handled = h->callback (h, NULL, DLG_KEY, d_key, NULL);
|
|
|
|
|
|
|
|
/* next try the hotkey */
|
|
|
|
if (handled == MSG_NOT_HANDLED)
|
|
|
|
handled = dlg_try_hotkey (h, d_key);
|
|
|
|
|
|
|
|
if (handled == MSG_HANDLED)
|
|
|
|
h->callback (h, NULL, DLG_HOTKEY_HANDLED, 0, NULL);
|
2003-10-25 03:20:30 +04:00
|
|
|
else
|
2010-11-10 14:09:42 +03:00
|
|
|
/* not used - then try widget_callback */
|
2012-06-26 11:52:21 +04:00
|
|
|
handled = send_message (WIDGET (h->current->data), NULL, WIDGET_KEY, d_key, NULL);
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* not used- try to use the unhandled case */
|
|
|
|
if (handled == MSG_NOT_HANDLED)
|
|
|
|
handled = h->callback (h, NULL, DLG_UNHANDLED_KEY, d_key, NULL);
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (handled == MSG_NOT_HANDLED)
|
|
|
|
handled = dlg_handle_key (h, d_key);
|
2010-04-06 11:16:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
h->callback (h, NULL, DLG_POST_KEY, d_key, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static void
|
2012-09-28 11:18:45 +04:00
|
|
|
frontend_run_dlg (WDialog * h)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
int d_key;
|
|
|
|
Gpm_Event event;
|
|
|
|
|
|
|
|
event.x = -1;
|
|
|
|
|
|
|
|
/* close opened editors, viewers, etc */
|
2012-01-28 14:13:32 +04:00
|
|
|
if (!h->modal && mc_global.midnight_shutdown)
|
2010-04-06 11:16:11 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
h->callback (h, NULL, DLG_VALIDATE, 0, NULL);
|
|
|
|
return;
|
|
|
|
}
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
while (h->state == DLG_ACTIVE)
|
|
|
|
{
|
2012-10-31 10:48:56 +04:00
|
|
|
if (mc_global.tty.winch_flag != 0)
|
2011-02-18 14:30:15 +03:00
|
|
|
dialog_change_screen_size ();
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (is_idle ())
|
2010-04-05 20:59:21 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
if (idle_hook)
|
|
|
|
execute_hooks (idle_hook);
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
while ((h->flags & DLG_WANT_IDLE) && is_idle ())
|
|
|
|
h->callback (h, NULL, DLG_IDLE, 0, NULL);
|
|
|
|
|
|
|
|
/* Allow terminating the dialog from the idle handler */
|
|
|
|
if (h->state != DLG_ACTIVE)
|
|
|
|
break;
|
2010-04-05 20:59:21 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
update_cursor (h);
|
|
|
|
|
|
|
|
/* Clear interrupt flag */
|
|
|
|
tty_got_interrupt ();
|
|
|
|
d_key = tty_get_event (&event, h->mouse_status == MOU_REPEAT, TRUE);
|
|
|
|
|
|
|
|
dlg_process_event (h, d_key, &event);
|
|
|
|
|
|
|
|
if (h->state == DLG_CLOSED)
|
|
|
|
h->callback (h, NULL, DLG_VALIDATE, 0, NULL);
|
2010-04-06 11:16:11 +04:00
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2011-08-07 18:36:28 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static int
|
|
|
|
dlg_find_widget_by_id (gconstpointer a, gconstpointer b)
|
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *w = WIDGET (a);
|
2011-08-07 18:36:28 +04:00
|
|
|
unsigned long id = GPOINTER_TO_UINT (b);
|
|
|
|
|
|
|
|
return w->id == id ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/*** public functions ****************************************************************************/
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/** draw box in window */
|
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
draw_box (const WDialog * h, int y, int x, int ys, int xs, gboolean single)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2012-06-20 12:05:13 +04:00
|
|
|
const Widget *wh = WIDGET (h);
|
|
|
|
|
|
|
|
tty_draw_box (wh->y + y, wh->x + x, ys, xs, single);
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/** Clean the dialog area, draw the frame and the title */
|
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_default_repaint (WDialog * h)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2012-06-20 12:05:13 +04:00
|
|
|
Widget *wh = WIDGET (h);
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
int space;
|
2010-06-29 11:20:48 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (h->state != DLG_ACTIVE)
|
|
|
|
return;
|
2010-06-29 11:20:48 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
space = (h->flags & DLG_COMPACT) ? 0 : 1;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
tty_setcolor (h->color[DLG_COLOR_NORMAL]);
|
|
|
|
dlg_erase (h);
|
2012-06-20 12:05:13 +04:00
|
|
|
draw_box (h, space, space, wh->lines - 2 * space, wh->cols - 2 * space, FALSE);
|
2010-06-29 11:20:48 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (h->title != NULL)
|
2010-04-06 11:16:11 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
tty_setcolor (h->color[DLG_COLOR_TITLE]);
|
2012-06-20 12:05:13 +04:00
|
|
|
widget_move (h, space, (wh->cols - str_term_width1 (h->title)) / 2);
|
2010-11-10 14:09:42 +03:00
|
|
|
tty_print_string (h->title);
|
2010-04-06 11:16:11 +04:00
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** this function allows to set dialog position */
|
2003-11-27 03:17:43 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_set_position (WDialog * h, int y1, int x1, int y2, int x2)
|
2010-04-05 20:59:21 +04:00
|
|
|
{
|
2012-06-20 12:05:13 +04:00
|
|
|
Widget *wh = WIDGET (h);
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* save old positions, will be used to reposition childs */
|
|
|
|
int ox, oy, oc, ol;
|
|
|
|
int shift_x, shift_y, scale_x, scale_y;
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* save old positions, will be used to reposition childs */
|
2012-06-20 12:05:13 +04:00
|
|
|
ox = wh->x;
|
|
|
|
oy = wh->y;
|
|
|
|
oc = wh->cols;
|
|
|
|
ol = wh->lines;
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2012-06-20 12:05:13 +04:00
|
|
|
wh->x = x1;
|
|
|
|
wh->y = y1;
|
|
|
|
wh->lines = y2 - y1;
|
|
|
|
wh->cols = x2 - x1;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* dialog is empty */
|
|
|
|
if (h->widgets == NULL)
|
|
|
|
return;
|
2010-04-06 11:16:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (h->current == NULL)
|
|
|
|
h->current = h->widgets;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* values by which controls should be moved */
|
2012-06-20 12:05:13 +04:00
|
|
|
shift_x = wh->x - ox;
|
|
|
|
shift_y = wh->y - oy;
|
|
|
|
scale_x = wh->cols - oc;
|
|
|
|
scale_y = wh->lines - ol;
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
if ((shift_x != 0) || (shift_y != 0) || (scale_x != 0) || (scale_y != 0))
|
2010-04-05 20:59:21 +04:00
|
|
|
{
|
2010-06-30 14:51:57 +04:00
|
|
|
GList *w;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-06-30 14:51:57 +04:00
|
|
|
for (w = h->widgets; w != NULL; w = g_list_next (w))
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
/* there are, mainly, 2 generally possible
|
|
|
|
situations:
|
2003-11-27 11:59:54 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
1. control sticks to one side - it
|
|
|
|
should be moved
|
2003-11-27 11:59:54 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
2. control sticks to two sides of
|
|
|
|
one direction - it should be sized */
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *c = WIDGET (w->data);
|
2010-11-10 14:09:42 +03:00
|
|
|
int x = c->x;
|
|
|
|
int y = c->y;
|
|
|
|
int cols = c->cols;
|
|
|
|
int lines = c->lines;
|
2003-11-27 11:59:54 +03:00
|
|
|
|
2012-09-26 15:16:24 +04:00
|
|
|
if ((c->pos_flags & WPOS_CENTER_HORZ) != 0)
|
|
|
|
x = wh->x + (wh->cols - c->cols) / 2;
|
|
|
|
else if ((c->pos_flags & WPOS_KEEP_LEFT) != 0 && (c->pos_flags & WPOS_KEEP_RIGHT) != 0)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
x += shift_x;
|
|
|
|
cols += scale_x;
|
|
|
|
}
|
2012-09-26 15:16:24 +04:00
|
|
|
else if ((c->pos_flags & WPOS_KEEP_LEFT) != 0)
|
2010-11-10 14:09:42 +03:00
|
|
|
x += shift_x;
|
2012-09-26 15:16:24 +04:00
|
|
|
else if ((c->pos_flags & WPOS_KEEP_RIGHT) != 0)
|
2010-11-10 14:09:42 +03:00
|
|
|
x += shift_x + scale_x;
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2012-09-26 15:16:24 +04:00
|
|
|
if ((c->pos_flags & WPOS_CENTER_VERT) != 0)
|
|
|
|
y = wh->y + (wh->lines - c->lines) / 2;
|
|
|
|
else if ((c->pos_flags & WPOS_KEEP_TOP) != 0 && (c->pos_flags & WPOS_KEEP_BOTTOM) != 0)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
y += shift_y;
|
|
|
|
lines += scale_y;
|
|
|
|
}
|
2012-09-26 15:16:24 +04:00
|
|
|
else if ((c->pos_flags & WPOS_KEEP_TOP) != 0)
|
2010-11-10 14:09:42 +03:00
|
|
|
y += shift_y;
|
2012-09-26 15:16:24 +04:00
|
|
|
else if ((c->pos_flags & WPOS_KEEP_BOTTOM) != 0)
|
2010-11-10 14:09:42 +03:00
|
|
|
y += shift_y + scale_y;
|
2010-04-06 11:16:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
widget_set_size (c, y, x, lines, cols);
|
2010-04-06 11:16:11 +04:00
|
|
|
}
|
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** this function sets only size, leaving positioning to automatic methods */
|
2003-11-27 11:59:54 +03:00
|
|
|
|
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_set_size (WDialog * h, int lines, int cols)
|
2003-11-27 11:59:54 +03:00
|
|
|
{
|
2012-06-20 12:05:13 +04:00
|
|
|
int x = WIDGET (h)->x;
|
|
|
|
int y = WIDGET (h)->y;
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
if (h->flags & DLG_CENTER)
|
2010-04-05 20:59:21 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
y = (LINES - lines) / 2;
|
|
|
|
x = (COLS - cols) / 2;
|
|
|
|
}
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if ((h->flags & DLG_TRYUP) && (y > 3))
|
|
|
|
y -= 2;
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
dlg_set_position (h, y, x, y + lines, x + cols);
|
2003-11-27 11:59:54 +03:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Default dialog callback */
|
|
|
|
|
|
|
|
cb_ret_t
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_default_callback (WDialog * h, Widget * sender, dlg_msg_t msg, int parm, void *data)
|
2003-11-27 11:59:54 +03:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
(void) sender;
|
|
|
|
(void) parm;
|
|
|
|
(void) data;
|
|
|
|
|
|
|
|
switch (msg)
|
2010-04-05 20:59:21 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
case DLG_DRAW:
|
|
|
|
if (h->color != NULL)
|
|
|
|
{
|
2012-09-28 11:05:23 +04:00
|
|
|
dlg_default_repaint (h);
|
2010-11-10 14:09:42 +03:00
|
|
|
return MSG_HANDLED;
|
|
|
|
}
|
|
|
|
return MSG_NOT_HANDLED;
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
case DLG_IDLE:
|
|
|
|
dlg_broadcast_msg_to (h, WIDGET_IDLE, FALSE, W_WANT_IDLE);
|
|
|
|
return MSG_HANDLED;
|
|
|
|
|
|
|
|
case DLG_RESIZE:
|
|
|
|
/* this is default resizing mechanism */
|
|
|
|
/* the main idea of this code is to resize dialog
|
|
|
|
according to flags (if any of flags require automatic
|
|
|
|
resizing, like DLG_CENTER, end after that reposition
|
|
|
|
controls in dialog according to flags of widget) */
|
2012-06-20 12:05:13 +04:00
|
|
|
dlg_set_size (h, WIDGET (h)->lines, WIDGET (h)->cols);
|
2010-11-10 14:09:42 +03:00
|
|
|
return MSG_HANDLED;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2010-04-05 20:59:21 +04:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
return MSG_NOT_HANDLED;
|
2003-11-27 11:59:54 +03:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2012-09-28 11:18:45 +04:00
|
|
|
WDialog *
|
2010-11-10 14:09:42 +03:00
|
|
|
create_dlg (gboolean modal, int y1, int x1, int lines, int cols,
|
2012-07-06 14:56:29 +04:00
|
|
|
const int *colors, dlg_cb_fn callback, mouse_h mouse_handler,
|
2012-05-28 16:59:20 +04:00
|
|
|
const char *help_ctx, const char *title, dlg_flags_t flags)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2012-09-28 11:18:45 +04:00
|
|
|
WDialog *new_d;
|
2012-06-20 12:05:13 +04:00
|
|
|
Widget *w;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2012-09-28 11:18:45 +04:00
|
|
|
new_d = g_new0 (WDialog, 1);
|
2012-06-20 12:05:13 +04:00
|
|
|
w = WIDGET (new_d);
|
|
|
|
init_widget (w, y1, x1, lines, cols, NULL, mouse_handler);
|
2012-06-20 15:09:44 +04:00
|
|
|
widget_want_cursor (w, FALSE);
|
2012-06-20 12:05:13 +04:00
|
|
|
|
2011-04-17 14:21:17 +04:00
|
|
|
new_d->state = DLG_CONSTRUCT;
|
2010-11-10 14:09:42 +03:00
|
|
|
new_d->modal = modal;
|
|
|
|
if (colors != NULL)
|
|
|
|
memmove (new_d->color, colors, sizeof (dlg_colors_t));
|
|
|
|
new_d->help_ctx = help_ctx;
|
2012-09-28 11:05:23 +04:00
|
|
|
new_d->callback = (callback != NULL) ? callback : dlg_default_callback;
|
2010-11-10 14:09:42 +03:00
|
|
|
new_d->flags = flags;
|
|
|
|
new_d->data = NULL;
|
2010-06-29 11:20:48 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
dlg_set_size (new_d, lines, cols);
|
2012-06-20 12:05:13 +04:00
|
|
|
new_d->fullscreen = (w->x == 0 && w->y == 0 && w->cols == COLS && w->lines == LINES);
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2011-03-21 16:43:56 +03:00
|
|
|
new_d->mouse_status = MOU_UNHANDLED;
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* Strip existing spaces, add one space before and after the title */
|
2012-09-20 12:48:14 +04:00
|
|
|
if (title != NULL && *title != '\0')
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
char *t;
|
2010-06-29 11:20:48 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
t = g_strstrip (g_strdup (title));
|
|
|
|
if (*t != '\0')
|
|
|
|
new_d->title = g_strdup_printf (" %s ", t);
|
|
|
|
g_free (t);
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
|
2011-05-01 15:42:17 +04:00
|
|
|
/* unique name got event group for this dialog */
|
|
|
|
new_d->event_group = g_strdup_printf ("%s_%p", MCEVENT_GROUP_DIALOG, (void *) new_d);
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
return new_d;
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2009-11-08 12:43:37 +03:00
|
|
|
void
|
2010-11-10 14:09:42 +03:00
|
|
|
dlg_set_default_colors (void)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
dialog_colors[DLG_COLOR_NORMAL] = COLOR_NORMAL;
|
|
|
|
dialog_colors[DLG_COLOR_FOCUS] = COLOR_FOCUS;
|
|
|
|
dialog_colors[DLG_COLOR_HOT_NORMAL] = COLOR_HOT_NORMAL;
|
|
|
|
dialog_colors[DLG_COLOR_HOT_FOCUS] = COLOR_HOT_FOCUS;
|
|
|
|
dialog_colors[DLG_COLOR_TITLE] = COLOR_TITLE;
|
2010-06-05 18:48:06 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
alarm_colors[DLG_COLOR_NORMAL] = ERROR_COLOR;
|
|
|
|
alarm_colors[DLG_COLOR_FOCUS] = ERROR_FOCUS;
|
|
|
|
alarm_colors[DLG_COLOR_HOT_NORMAL] = ERROR_HOT_NORMAL;
|
|
|
|
alarm_colors[DLG_COLOR_HOT_FOCUS] = ERROR_HOT_FOCUS;
|
|
|
|
alarm_colors[DLG_COLOR_TITLE] = ERROR_TITLE;
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2009-11-08 12:43:37 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_erase (WDialog * h)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
if ((h != NULL) && (h->state == DLG_ACTIVE))
|
2012-06-20 12:05:13 +04:00
|
|
|
{
|
|
|
|
Widget *wh = WIDGET (h);
|
|
|
|
|
|
|
|
tty_fill_region (wh->y, wh->x, wh->lines, wh->cols, ' ');
|
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
set_idle_proc (WDialog * d, int enable)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
if (enable)
|
|
|
|
d->flags |= DLG_WANT_IDLE;
|
|
|
|
else
|
|
|
|
d->flags &= ~DLG_WANT_IDLE;
|
2010-05-06 23:19:02 +04:00
|
|
|
}
|
2009-05-18 20:21:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/**
|
2011-04-17 14:21:17 +04:00
|
|
|
* Insert widget to dialog before requested widget. Make the widget current. Return widget ID.
|
2010-11-10 14:09:42 +03:00
|
|
|
*/
|
2010-04-18 14:58:18 +04:00
|
|
|
|
2011-04-17 14:21:17 +04:00
|
|
|
unsigned long
|
2012-09-28 11:18:45 +04:00
|
|
|
add_widget_autopos (WDialog * h, void *w, widget_pos_flags_t pos_flags, const void *before)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2012-09-26 15:16:24 +04:00
|
|
|
Widget *wh = WIDGET (h);
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *widget = WIDGET (w);
|
2010-04-18 14:58:18 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* Don't accept 0 widgets */
|
|
|
|
if (w == NULL)
|
|
|
|
abort ();
|
2010-04-18 14:58:18 +04:00
|
|
|
|
2012-09-26 15:16:24 +04:00
|
|
|
if ((pos_flags & WPOS_CENTER_HORZ) != 0)
|
|
|
|
widget->x = (wh->cols - widget->cols) / 2;
|
|
|
|
widget->x += wh->x;
|
|
|
|
|
|
|
|
if ((pos_flags & WPOS_CENTER_VERT) != 0)
|
|
|
|
widget->y = (wh->lines - widget->lines) / 2;
|
|
|
|
widget->y += wh->y;
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
widget->owner = h;
|
|
|
|
widget->pos_flags = pos_flags;
|
2011-04-17 14:12:07 +04:00
|
|
|
widget->id = h->widget_id++;
|
2010-04-18 14:58:18 +04:00
|
|
|
|
2012-09-24 14:22:33 +04:00
|
|
|
if (h->widgets == NULL || before == NULL)
|
2011-04-17 14:21:17 +04:00
|
|
|
{
|
2012-09-24 14:22:33 +04:00
|
|
|
h->widgets = g_list_append (h->widgets, widget);
|
|
|
|
h->current = g_list_last (h->widgets);
|
2011-04-17 14:21:17 +04:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
else
|
2011-04-17 14:21:17 +04:00
|
|
|
{
|
2012-09-24 14:22:33 +04:00
|
|
|
GList *b;
|
2011-04-17 14:21:17 +04:00
|
|
|
|
2012-09-24 14:22:33 +04:00
|
|
|
b = g_list_find (h->widgets, before);
|
2010-04-18 14:58:18 +04:00
|
|
|
|
2012-09-24 14:22:33 +04:00
|
|
|
/* don't accept widget not from dialog. This shouldn't happen */
|
|
|
|
if (b == NULL)
|
|
|
|
abort ();
|
2011-04-17 14:21:17 +04:00
|
|
|
|
2012-09-24 14:22:33 +04:00
|
|
|
b = g_list_next (b);
|
|
|
|
h->widgets = g_list_insert_before (h->widgets, b, widget);
|
|
|
|
if (b != NULL)
|
|
|
|
h->current = g_list_previous (b);
|
|
|
|
else
|
|
|
|
h->current = g_list_last (h->widgets);
|
2011-04-17 14:21:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* widget has been added in runtime */
|
|
|
|
if (h->state == DLG_ACTIVE)
|
|
|
|
{
|
2012-06-26 11:52:21 +04:00
|
|
|
send_message (widget, NULL, WIDGET_INIT, 0, NULL);
|
|
|
|
send_message (widget, NULL, WIDGET_DRAW, 0, NULL);
|
|
|
|
send_message (widget, NULL, WIDGET_FOCUS, 0, NULL);
|
2011-04-17 14:21:17 +04:00
|
|
|
}
|
2010-05-06 23:19:02 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
return widget->id;
|
2010-05-06 23:19:02 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** wrapper to simply add lefttop positioned controls */
|
|
|
|
|
2011-04-17 14:21:17 +04:00
|
|
|
unsigned long
|
2012-09-28 11:18:45 +04:00
|
|
|
add_widget (WDialog * h, void *w)
|
2010-05-06 23:19:02 +04:00
|
|
|
{
|
2012-09-26 15:16:24 +04:00
|
|
|
return add_widget_autopos (h, w, WPOS_KEEP_DEFAULT,
|
2011-04-17 14:21:17 +04:00
|
|
|
h->current != NULL ? h->current->data : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
unsigned long
|
2012-09-28 11:18:45 +04:00
|
|
|
add_widget_before (WDialog * h, void *w, void *before)
|
2011-04-17 14:21:17 +04:00
|
|
|
{
|
2012-09-26 15:16:24 +04:00
|
|
|
return add_widget_autopos (h, w, WPOS_KEEP_DEFAULT, before);
|
2011-04-17 14:21:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/** delete widget from dialog */
|
|
|
|
void
|
|
|
|
del_widget (void *w)
|
|
|
|
{
|
2012-09-28 11:18:45 +04:00
|
|
|
WDialog *h = WIDGET (w)->owner;
|
2011-04-17 14:21:17 +04:00
|
|
|
GList *d;
|
|
|
|
|
|
|
|
/* Don't accept NULL widget. This shouldn't happen */
|
|
|
|
if (w == NULL)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
d = g_list_find (h->widgets, w);
|
|
|
|
if (d == h->current)
|
2012-09-24 14:22:33 +04:00
|
|
|
h->current = dlg_widget_next (h, d);
|
2011-04-17 14:21:17 +04:00
|
|
|
|
|
|
|
h->widgets = g_list_remove_link (h->widgets, d);
|
2012-06-26 11:52:21 +04:00
|
|
|
send_message (d->data, NULL, WIDGET_DESTROY, 0, NULL);
|
2011-04-17 14:21:17 +04:00
|
|
|
g_list_free_1 (d);
|
|
|
|
|
|
|
|
/* widget has been deleted in runtime */
|
|
|
|
if (h->state == DLG_ACTIVE)
|
|
|
|
{
|
|
|
|
dlg_redraw (h);
|
|
|
|
dlg_focus (h);
|
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void
|
|
|
|
do_refresh (void)
|
2009-10-30 14:50:04 +03:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
GList *d = top_dlg;
|
2009-10-30 14:50:04 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (fast_refresh)
|
2009-10-30 14:50:04 +03:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
if ((d != NULL) && (d->data != NULL))
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_redraw (DIALOG (d->data));
|
2009-10-30 14:50:04 +03:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
else
|
2009-10-30 14:50:04 +03:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
/* Search first fullscreen dialog */
|
|
|
|
for (; d != NULL; d = g_list_next (d))
|
2012-09-28 11:18:45 +04:00
|
|
|
if (d->data != NULL && DIALOG (d->data)->fullscreen)
|
2010-11-10 14:09:42 +03:00
|
|
|
break;
|
|
|
|
/* back to top dialog */
|
|
|
|
for (; d != NULL; d = g_list_previous (d))
|
|
|
|
if (d->data != NULL)
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_redraw (DIALOG (d->data));
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
|
|
|
}
|
2009-10-30 14:50:04 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** broadcast a message to all the widgets in a dialog */
|
2009-10-30 14:50:04 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_broadcast_msg (WDialog * h, widget_msg_t msg)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2012-09-24 14:22:33 +04:00
|
|
|
dlg_broadcast_msg_to (h, msg, FALSE, 0);
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
2009-10-30 14:50:04 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2011-04-17 14:21:17 +04:00
|
|
|
gboolean
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_focus (WDialog * h)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2011-04-17 14:21:17 +04:00
|
|
|
/* cannot focus disabled widget */
|
|
|
|
if ((h->current != NULL) && (h->state == DLG_CONSTRUCT || h->state == DLG_ACTIVE))
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *current = WIDGET (h->current->data);
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
if (((current->options & W_DISABLED) == 0)
|
2012-06-26 11:52:21 +04:00
|
|
|
&& (send_message (current, NULL, WIDGET_FOCUS, 0, NULL) == MSG_HANDLED))
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
h->callback (h, current, DLG_FOCUS, 0, NULL);
|
2011-04-17 14:21:17 +04:00
|
|
|
return TRUE;
|
2009-10-30 14:50:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-17 14:21:17 +04:00
|
|
|
return FALSE;
|
2009-10-30 14:50:04 +03:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Return true if the windows overlap */
|
|
|
|
|
|
|
|
int
|
|
|
|
dlg_overlap (Widget * a, Widget * b)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
return !((b->x >= a->x + a->cols)
|
|
|
|
|| (a->x >= b->x + b->cols) || (b->y >= a->y + a->lines) || (a->y >= b->y + b->lines));
|
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Find the widget with the given callback in the dialog h */
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
Widget *
|
2012-09-28 11:18:45 +04:00
|
|
|
find_widget_type (const WDialog * h, widget_cb_fn callback)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
GList *w;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
w = g_list_find_custom (h->widgets, callback, dlg_find_widget_callback);
|
2010-06-29 11:20:48 +04:00
|
|
|
|
2012-06-20 15:09:44 +04:00
|
|
|
return (w == NULL) ? NULL : WIDGET (w->data);
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
2010-06-29 11:20:48 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Find the widget with the given id */
|
|
|
|
|
|
|
|
Widget *
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_find_by_id (const WDialog * h, unsigned long id)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
2011-08-07 18:36:28 +04:00
|
|
|
GList *w;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2011-08-07 18:36:28 +04:00
|
|
|
w = g_list_find_custom (h->widgets, GUINT_TO_POINTER (id), dlg_find_widget_by_id);
|
2012-06-20 15:09:44 +04:00
|
|
|
return w != NULL ? WIDGET (w->data) : NULL;
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Find the widget with the given id in the dialog h and select it */
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_select_by_id (const WDialog * h, unsigned long id)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
Widget *w;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
w = dlg_find_by_id (h, id);
|
|
|
|
if (w != NULL)
|
|
|
|
dlg_select_widget (w);
|
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2011-04-23 16:51:53 +04:00
|
|
|
/**
|
2010-11-10 14:09:42 +03:00
|
|
|
* Try to select widget in the dialog.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
dlg_select_widget (void *w)
|
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *widget = WIDGET (w);
|
2012-09-28 11:18:45 +04:00
|
|
|
WDialog *h = widget->owner;
|
2010-11-10 14:09:42 +03:00
|
|
|
|
2011-01-07 11:52:47 +03:00
|
|
|
do_select_widget (h, g_list_find (h->widgets, widget), SELECT_EXACT);
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
|
|
|
|
2011-04-23 16:51:53 +04:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set widget at top of widget list and make it current.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
dlg_set_top_widget (void *w)
|
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *widget = WIDGET (w);
|
2012-09-28 11:18:45 +04:00
|
|
|
WDialog *h = widget->owner;
|
2011-04-23 16:51:53 +04:00
|
|
|
GList *l;
|
|
|
|
|
|
|
|
l = g_list_find (h->widgets, w);
|
|
|
|
if (l == NULL)
|
|
|
|
abort (); /* widget is not in dialog, this should not happen */
|
|
|
|
|
|
|
|
/* unfocus prevoius widget and focus current one before widget reordering */
|
|
|
|
if (h->state == DLG_ACTIVE)
|
|
|
|
do_select_widget (h, l, SELECT_EXACT);
|
|
|
|
|
|
|
|
/* widget reordering */
|
|
|
|
h->widgets = g_list_remove_link (h->widgets, l);
|
2012-09-24 14:22:33 +04:00
|
|
|
h->widgets = g_list_concat (h->widgets, l);
|
2011-04-23 16:51:53 +04:00
|
|
|
h->current = l;
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Try to select previous widget in the tab order */
|
|
|
|
|
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_one_up (WDialog * h)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
if (h->widgets != NULL)
|
2011-07-18 13:27:01 +04:00
|
|
|
do_select_widget (h, dlg_widget_prev (h, h->current), SELECT_PREV);
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Try to select next widget in the tab order */
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_one_down (WDialog * h)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
if (h->widgets != NULL)
|
2011-07-18 13:27:01 +04:00
|
|
|
do_select_widget (h, dlg_widget_next (h, h->current), SELECT_NEXT);
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
update_cursor (WDialog * h)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2010-11-10 14:09:42 +03:00
|
|
|
GList *p = h->current;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if ((p != NULL) && (h->state == DLG_ACTIVE))
|
|
|
|
{
|
|
|
|
Widget *w;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2012-06-20 15:09:44 +04:00
|
|
|
w = WIDGET (p->data);
|
2010-04-05 20:59:21 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (((w->options & W_DISABLED) == 0) && ((w->options & W_WANT_CURSOR) != 0))
|
2012-06-26 11:52:21 +04:00
|
|
|
send_message (w, NULL, WIDGET_CURSOR, 0, NULL);
|
2010-11-10 14:09:42 +03:00
|
|
|
else
|
|
|
|
do
|
|
|
|
{
|
2011-07-18 13:27:01 +04:00
|
|
|
p = dlg_widget_next (h, p);
|
2010-11-10 14:09:42 +03:00
|
|
|
if (p == h->current)
|
|
|
|
break;
|
|
|
|
|
2012-06-20 15:09:44 +04:00
|
|
|
w = WIDGET (p->data);
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
if (((w->options & W_DISABLED) == 0) && ((w->options & W_WANT_CURSOR) != 0))
|
2012-06-26 11:52:21 +04:00
|
|
|
if (send_message (w, NULL, WIDGET_CURSOR, 0, NULL) == MSG_HANDLED)
|
2010-11-10 14:09:42 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
while (TRUE);
|
2003-10-25 04:22:13 +04:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* Redraw the widgets in reverse order, leaving the current widget
|
|
|
|
* as the last one
|
|
|
|
*/
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_redraw (WDialog * h)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
if (h->state != DLG_ACTIVE)
|
|
|
|
return;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (h->winch_pending)
|
|
|
|
{
|
|
|
|
h->winch_pending = FALSE;
|
|
|
|
h->callback (h, NULL, DLG_RESIZE, 0, NULL);
|
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
h->callback (h, NULL, DLG_DRAW, 0, NULL);
|
2012-09-24 14:22:33 +04:00
|
|
|
dlg_broadcast_msg (h, WIDGET_DRAW);
|
2010-11-10 14:09:42 +03:00
|
|
|
update_cursor (h);
|
|
|
|
}
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_stop (WDialog * h)
|
2010-11-10 14:09:42 +03:00
|
|
|
{
|
|
|
|
h->state = DLG_CLOSED;
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Init the process */
|
|
|
|
|
2009-11-08 12:43:37 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
init_dlg (WDialog * h)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2012-09-28 11:18:45 +04:00
|
|
|
if (top_dlg != NULL && DIALOG (top_dlg->data)->modal)
|
2009-11-19 11:34:20 +03:00
|
|
|
h->modal = TRUE;
|
|
|
|
|
2009-10-30 14:50:04 +03:00
|
|
|
/* add dialog to the stack */
|
2010-04-18 14:26:28 +04:00
|
|
|
top_dlg = g_list_prepend (top_dlg, h);
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2009-10-30 14:50:04 +03:00
|
|
|
/* Initialize dialog manager and widgets */
|
2011-04-17 14:21:17 +04:00
|
|
|
if (h->state == DLG_CONSTRUCT)
|
2010-04-18 14:58:18 +04:00
|
|
|
{
|
|
|
|
if (!h->modal)
|
|
|
|
dialog_switch_add (h);
|
|
|
|
|
|
|
|
h->callback (h, NULL, DLG_INIT, 0, NULL);
|
2012-09-24 14:22:33 +04:00
|
|
|
dlg_broadcast_msg (h, WIDGET_INIT);
|
2011-05-03 17:24:56 +04:00
|
|
|
dlg_read_history (h);
|
2010-04-18 14:58:18 +04:00
|
|
|
}
|
|
|
|
|
2012-04-08 16:29:46 +04:00
|
|
|
h->state = DLG_ACTIVE;
|
|
|
|
|
2003-10-25 03:20:30 +04:00
|
|
|
/* Select the first widget that takes focus */
|
2009-10-30 14:50:04 +03:00
|
|
|
while (h->current != NULL && !dlg_focus (h))
|
2011-07-18 13:27:01 +04:00
|
|
|
h->current = dlg_widget_next (h, h->current);
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2011-04-17 14:21:17 +04:00
|
|
|
dlg_redraw (h);
|
|
|
|
|
2003-10-25 03:20:30 +04:00
|
|
|
h->ret_value = 0;
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2009-11-08 12:43:37 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_process_event (WDialog * h, int key, Gpm_Event * event)
|
2010-04-06 11:16:11 +04:00
|
|
|
{
|
|
|
|
if (key == EV_NONE)
|
|
|
|
{
|
|
|
|
if (tty_got_interrupt ())
|
2011-03-28 16:45:50 +04:00
|
|
|
if (h->callback (h, NULL, DLG_ACTION, CK_Cancel, NULL) != MSG_HANDLED)
|
|
|
|
dlg_execute_cmd (h, CK_Cancel);
|
2010-05-06 23:19:02 +04:00
|
|
|
|
|
|
|
return;
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (key == EV_MOUSE)
|
2010-04-06 11:16:11 +04:00
|
|
|
h->mouse_status = dlg_mouse_event (h, event);
|
2003-10-25 03:20:30 +04:00
|
|
|
else
|
2010-04-06 11:16:11 +04:00
|
|
|
dlg_key_event (h, key);
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Shutdown the run_dlg */
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2009-10-30 14:50:04 +03:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_run_done (WDialog * h)
|
2009-10-30 14:50:04 +03:00
|
|
|
{
|
2010-09-20 13:58:17 +04:00
|
|
|
top_dlg = g_list_remove (top_dlg, h);
|
|
|
|
|
2010-04-18 14:58:18 +04:00
|
|
|
if (h->state == DLG_CLOSED)
|
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
h->callback (h, WIDGET (h->current->data), DLG_END, 0, NULL);
|
2010-04-18 14:58:18 +04:00
|
|
|
if (!h->modal)
|
|
|
|
dialog_switch_remove (h);
|
|
|
|
}
|
2009-10-30 14:50:04 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
|
|
* Standard run dialog routine
|
2003-10-25 03:20:30 +04:00
|
|
|
* We have to keep this routine small so that we can duplicate it's
|
|
|
|
* behavior on complex routines like the file routines, this way,
|
|
|
|
* they can call the dlg_process_event without rewriting all the code
|
|
|
|
*/
|
2010-11-10 14:09:42 +03:00
|
|
|
|
2010-04-06 11:16:11 +04:00
|
|
|
int
|
2012-09-28 11:18:45 +04:00
|
|
|
run_dlg (WDialog * h)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
|
|
|
init_dlg (h);
|
|
|
|
frontend_run_dlg (h);
|
|
|
|
dlg_run_done (h);
|
|
|
|
return h->ret_value;
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2003-10-25 03:20:30 +04:00
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
destroy_dlg (WDialog * h)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2011-05-02 13:44:47 +04:00
|
|
|
/* if some widgets have history, save all history at one moment here */
|
|
|
|
dlg_save_history (h);
|
2012-09-24 14:22:33 +04:00
|
|
|
dlg_broadcast_msg (h, WIDGET_DESTROY);
|
2010-04-05 20:59:21 +04:00
|
|
|
g_list_foreach (h->widgets, (GFunc) g_free, NULL);
|
|
|
|
g_list_free (h->widgets);
|
2011-05-01 15:42:17 +04:00
|
|
|
mc_event_group_del (h->event_group);
|
|
|
|
g_free (h->event_group);
|
2009-02-06 01:27:37 +03:00
|
|
|
g_free (h->title);
|
|
|
|
g_free (h);
|
2003-10-25 03:20:30 +04:00
|
|
|
|
|
|
|
do_refresh ();
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2011-05-02 13:44:47 +04:00
|
|
|
/**
|
|
|
|
* Write history to the ${XDG_CACHE_HOME}/mc/history file
|
|
|
|
*/
|
|
|
|
void
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_save_history (WDialog * h)
|
2011-05-02 13:44:47 +04:00
|
|
|
{
|
|
|
|
char *profile;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (num_history_items_recorded == 0) /* this is how to disable */
|
|
|
|
return;
|
|
|
|
|
2011-11-24 02:28:07 +04:00
|
|
|
profile = mc_config_get_full_path (MC_HISTORY_FILE);
|
2011-05-02 13:44:47 +04:00
|
|
|
i = open (profile, O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
|
|
|
|
if (i != -1)
|
|
|
|
close (i);
|
|
|
|
|
|
|
|
/* Make sure the history is only readable by the user */
|
|
|
|
if (chmod (profile, S_IRUSR | S_IWUSR) != -1 || errno == ENOENT)
|
|
|
|
{
|
|
|
|
ev_history_load_save_t event_data;
|
|
|
|
|
2012-07-28 14:19:27 +04:00
|
|
|
event_data.cfg = mc_config_init (profile, FALSE);
|
2011-05-02 13:44:47 +04:00
|
|
|
event_data.receiver = NULL;
|
|
|
|
|
|
|
|
/* get all histories in dialog */
|
|
|
|
mc_event_raise (h->event_group, MCEVENT_HISTORY_SAVE, &event_data);
|
|
|
|
|
|
|
|
mc_config_save_file (event_data.cfg, NULL);
|
|
|
|
mc_config_deinit (event_data.cfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (profile);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2010-04-18 14:23:06 +04:00
|
|
|
char *
|
2012-09-28 11:18:45 +04:00
|
|
|
dlg_get_title (const WDialog * h, size_t len)
|
2010-04-18 14:23:06 +04:00
|
|
|
{
|
|
|
|
char *t;
|
|
|
|
|
|
|
|
if (h == NULL)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
if (h->get_title != NULL)
|
|
|
|
t = h->get_title (h, len);
|
|
|
|
else
|
|
|
|
t = g_strdup ("");
|
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Replace widget old_w for widget new_w in the dialog */
|
|
|
|
|
2003-10-25 03:20:30 +04:00
|
|
|
void
|
2010-04-06 11:16:11 +04:00
|
|
|
dlg_replace_widget (Widget * old_w, Widget * new_w)
|
2003-10-25 03:20:30 +04:00
|
|
|
{
|
2012-09-28 11:18:45 +04:00
|
|
|
WDialog *h = old_w->owner;
|
2010-04-05 20:59:21 +04:00
|
|
|
gboolean should_focus = FALSE;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-04-05 20:59:21 +04:00
|
|
|
if (h->widgets == NULL)
|
2010-04-06 11:16:11 +04:00
|
|
|
return;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-04-05 20:59:21 +04:00
|
|
|
if (h->current == NULL)
|
|
|
|
h->current = h->widgets;
|
|
|
|
|
|
|
|
if (old_w == h->current->data)
|
|
|
|
should_focus = TRUE;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2010-04-05 21:17:02 +04:00
|
|
|
new_w->owner = h;
|
|
|
|
new_w->id = old_w->id;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
|
|
|
if (should_focus)
|
2010-04-05 20:59:21 +04:00
|
|
|
h->current->data = new_w;
|
|
|
|
else
|
|
|
|
g_list_find (h->widgets, old_w)->data = new_w;
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2012-06-26 11:52:21 +04:00
|
|
|
send_message (old_w, NULL, WIDGET_DESTROY, 0, NULL);
|
|
|
|
send_message (new_w, NULL, WIDGET_INIT, 0, NULL);
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2003-11-27 03:17:43 +03:00
|
|
|
if (should_focus)
|
2010-04-06 11:16:11 +04:00
|
|
|
dlg_select_widget (new_w);
|
2003-10-25 03:20:30 +04:00
|
|
|
|
2011-04-17 14:21:17 +04:00
|
|
|
if (new_w->owner->state == DLG_ACTIVE)
|
2012-06-26 11:52:21 +04:00
|
|
|
send_message (new_w, NULL, WIDGET_DRAW, 0, NULL);
|
2003-10-25 03:20:30 +04:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|