2011-10-15 14:56:47 +04:00
|
|
|
/*
|
|
|
|
Widgets for the Midnight Commander
|
2010-11-12 11:03:57 +03:00
|
|
|
|
|
|
|
Copyright (C) 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003,
|
2013-06-24 11:40:53 +04:00
|
|
|
2004, 2005, 2006, 2007, 2009, 2010, 2011, 2013
|
2011-10-15 14:56:47 +04:00
|
|
|
The Free Software Foundation, Inc.
|
2010-11-12 11:03:57 +03:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
Authors:
|
|
|
|
Radek Doulik, 1994, 1995
|
|
|
|
Miguel de Icaza, 1994, 1995
|
|
|
|
Jakub Jelinek, 1995
|
|
|
|
Andrej Borsenkow, 1996
|
|
|
|
Norbert Warmuth, 1997
|
2013-06-24 11:40:53 +04:00
|
|
|
Andrew Borodin <aborodin@vmail.ru>, 2009, 2010, 2013
|
2010-11-12 11:03:57 +03:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
This file is part of the Midnight Commander.
|
2010-11-12 11:03:57 +03: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.
|
|
|
|
|
|
|
|
The Midnight Commander is distributed in the hope that it will be useful,
|
2010-11-12 11:03:57 +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/>.
|
2010-11-12 11:03:57 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file label.c
|
|
|
|
* \brief Source: WLabel widget
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "lib/global.h"
|
|
|
|
|
|
|
|
#include "lib/tty/tty.h"
|
|
|
|
#include "lib/tty/color.h"
|
|
|
|
#include "lib/skin.h"
|
|
|
|
#include "lib/strutil.h"
|
|
|
|
#include "lib/widget.h"
|
|
|
|
|
|
|
|
/*** global variables ****************************************************************************/
|
|
|
|
|
|
|
|
/*** file scope macro definitions ****************************************************************/
|
|
|
|
|
|
|
|
/*** file scope type declarations ****************************************************************/
|
|
|
|
|
|
|
|
/*** file scope variables ************************************************************************/
|
|
|
|
|
|
|
|
/*** file scope functions ************************************************************************/
|
|
|
|
|
|
|
|
static cb_ret_t
|
2012-06-26 11:52:21 +04:00
|
|
|
label_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *data)
|
2010-11-12 11:03:57 +03:00
|
|
|
{
|
2012-10-11 12:25:07 +04:00
|
|
|
WLabel *l = LABEL (w);
|
2012-09-28 11:18:45 +04:00
|
|
|
WDialog *h = w->owner;
|
2010-11-12 11:03:57 +03:00
|
|
|
|
|
|
|
switch (msg)
|
|
|
|
{
|
2012-09-28 15:05:43 +04:00
|
|
|
case MSG_INIT:
|
2010-11-12 11:03:57 +03:00
|
|
|
return MSG_HANDLED;
|
|
|
|
|
|
|
|
/* We don't want to get the focus */
|
2012-09-28 15:05:43 +04:00
|
|
|
case MSG_FOCUS:
|
2010-11-12 11:03:57 +03:00
|
|
|
return MSG_NOT_HANDLED;
|
|
|
|
|
2012-09-28 15:05:43 +04:00
|
|
|
case MSG_DRAW:
|
2010-11-12 11:03:57 +03:00
|
|
|
{
|
|
|
|
char *p = l->text;
|
|
|
|
int y = 0;
|
2012-09-26 15:19:33 +04:00
|
|
|
gboolean disabled;
|
|
|
|
align_crt_t align;
|
2010-11-12 11:03:57 +03:00
|
|
|
|
|
|
|
if (l->text == NULL)
|
|
|
|
return MSG_HANDLED;
|
|
|
|
|
2012-09-26 15:19:33 +04:00
|
|
|
disabled = (w->options & W_DISABLED) != 0;
|
|
|
|
|
2010-11-12 11:03:57 +03:00
|
|
|
if (l->transparent)
|
|
|
|
tty_setcolor (disabled ? DISABLED_COLOR : DEFAULT_COLOR);
|
|
|
|
else
|
|
|
|
tty_setcolor (disabled ? DISABLED_COLOR : h->color[DLG_COLOR_NORMAL]);
|
|
|
|
|
2012-09-26 15:19:33 +04:00
|
|
|
align = (w->pos_flags & WPOS_CENTER_HORZ) != 0 ? J_CENTER_LEFT : J_LEFT;
|
|
|
|
|
2010-11-12 11:03:57 +03:00
|
|
|
while (TRUE)
|
|
|
|
{
|
|
|
|
char *q;
|
2010-12-01 15:16:54 +03:00
|
|
|
char c = '\0';
|
2010-11-12 11:03:57 +03:00
|
|
|
|
2012-09-26 15:19:33 +04:00
|
|
|
|
2010-11-12 11:03:57 +03:00
|
|
|
q = strchr (p, '\n');
|
|
|
|
if (q != NULL)
|
|
|
|
{
|
|
|
|
c = q[0];
|
|
|
|
q[0] = '\0';
|
|
|
|
}
|
|
|
|
|
2012-06-20 15:09:44 +04:00
|
|
|
widget_move (w, y, 0);
|
2012-09-26 15:19:33 +04:00
|
|
|
tty_print_string (str_fit_to_term (p, w->cols, align));
|
2010-11-12 11:03:57 +03:00
|
|
|
|
|
|
|
if (q == NULL)
|
|
|
|
break;
|
2010-12-01 15:16:54 +03:00
|
|
|
|
2010-11-12 11:03:57 +03:00
|
|
|
q[0] = c;
|
|
|
|
p = q + 1;
|
|
|
|
y++;
|
|
|
|
}
|
|
|
|
return MSG_HANDLED;
|
|
|
|
}
|
|
|
|
|
2012-09-28 15:05:43 +04:00
|
|
|
case MSG_DESTROY:
|
2010-11-12 11:03:57 +03:00
|
|
|
g_free (l->text);
|
|
|
|
return MSG_HANDLED;
|
|
|
|
|
|
|
|
default:
|
2012-09-28 15:05:43 +04:00
|
|
|
return widget_default_callback (w, sender, msg, parm, data);
|
2010-11-12 11:03:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/*** public functions ****************************************************************************/
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
WLabel *
|
|
|
|
label_new (int y, int x, const char *text)
|
|
|
|
{
|
|
|
|
WLabel *l;
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *w;
|
2010-11-12 11:03:57 +03:00
|
|
|
int cols = 1;
|
|
|
|
int lines = 1;
|
|
|
|
|
|
|
|
if (text != NULL)
|
|
|
|
str_msg_term_size (text, &lines, &cols);
|
|
|
|
|
|
|
|
l = g_new (WLabel, 1);
|
2012-06-20 15:09:44 +04:00
|
|
|
w = WIDGET (l);
|
2013-06-24 11:40:53 +04:00
|
|
|
widget_init (w, y, x, lines, cols, label_callback, NULL);
|
2012-06-20 15:09:44 +04:00
|
|
|
|
2010-11-12 11:03:57 +03:00
|
|
|
l->text = g_strdup (text);
|
|
|
|
l->auto_adjust_cols = TRUE;
|
|
|
|
l->transparent = FALSE;
|
2012-06-20 15:09:44 +04:00
|
|
|
widget_want_cursor (w, FALSE);
|
|
|
|
widget_want_hotkey (w, FALSE);
|
2010-11-12 11:03:57 +03:00
|
|
|
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void
|
|
|
|
label_set_text (WLabel * label, const char *text)
|
|
|
|
{
|
2012-06-20 15:09:44 +04:00
|
|
|
Widget *w = WIDGET (label);
|
|
|
|
int newcols = w->cols;
|
2010-11-12 11:03:57 +03:00
|
|
|
int newlines;
|
|
|
|
|
|
|
|
if (label->text != NULL && text != NULL && strcmp (label->text, text) == 0)
|
|
|
|
return; /* Flickering is not nice */
|
|
|
|
|
|
|
|
g_free (label->text);
|
|
|
|
|
|
|
|
if (text == NULL)
|
|
|
|
label->text = NULL;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
label->text = g_strdup (text);
|
|
|
|
if (label->auto_adjust_cols)
|
|
|
|
{
|
|
|
|
str_msg_term_size (text, &newlines, &newcols);
|
2012-06-20 15:09:44 +04:00
|
|
|
if (newcols > w->cols)
|
|
|
|
w->cols = newcols;
|
|
|
|
if (newlines > w->lines)
|
|
|
|
w->lines = newlines;
|
2010-11-12 11:03:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-05 11:26:48 +04:00
|
|
|
widget_redraw (w);
|
|
|
|
|
2012-06-20 15:09:44 +04:00
|
|
|
if (newcols < w->cols)
|
|
|
|
w->cols = newcols;
|
2010-11-12 11:03:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|