2 Widgets for the Midnight Commander
4 Copyright (C) 1994-2017
5 Free Software Foundation, Inc.
8 Radek Doulik, 1994, 1995
9 Miguel de Icaza, 1994, 1995
11 Andrej Borsenkow, 1996
13 Andrew Borodin <aborodin@vmail.ru>, 2009, 2010, 2013
15 This file is part of the Midnight Commander.
17 The Midnight Commander is free software: you can redistribute it
18 and/or modify it under the terms of the GNU General Public License as
19 published by the Free Software Foundation, either version 3 of the License,
20 or (at your option) any later version.
22 The Midnight Commander is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
27 You should have received a copy of the GNU General Public License
28 along with this program. If not, see <http://www.gnu.org/licenses/>.
32 * \brief Source: WGroupbox widget
37 #include "lib/global.h"
39 #include "lib/tty/tty.h"
40 #include "lib/tty/color.h"
43 #include "lib/widget.h"
45 /*** global variables ****************************************************************************/
47 /*** file scope macro definitions ****************************************************************/
49 /*** file scope type declarations ****************************************************************/
51 /*** file scope variables ************************************************************************/
53 /*** file scope functions ************************************************************************/
56 groupbox_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
58 WGroupbox
*g
= GROUPBOX (w
);
64 WDialog
*h
= w
->owner
;
68 disabled
= widget_get_state (w
, WST_DISABLED
);
69 tty_setcolor (disabled
? DISABLED_COLOR
: h
->color
[DLG_COLOR_NORMAL
]);
70 tty_draw_box (w
->y
, w
->x
, w
->lines
, w
->cols
, TRUE
);
74 tty_setcolor (disabled
? DISABLED_COLOR
: h
->color
[DLG_COLOR_TITLE
]);
75 widget_move (w
, 0, 1);
76 tty_print_string (g
->title
);
86 return widget_default_callback (w
, sender
, msg
, parm
, data
);
90 /* --------------------------------------------------------------------------------------------- */
91 /*** public functions ****************************************************************************/
92 /* --------------------------------------------------------------------------------------------- */
95 groupbox_new (int y
, int x
, int height
, int width
, const char *title
)
100 g
= g_new (WGroupbox
, 1);
102 widget_init (w
, y
, x
, height
, width
, groupbox_callback
, NULL
);
105 groupbox_set_title (g
, title
);
110 /* --------------------------------------------------------------------------------------------- */
113 groupbox_set_title (WGroupbox
* g
, const char *title
)
115 MC_PTR_FREE (g
->title
);
117 /* Strip existing spaces, add one space before and after the title */
118 if (title
!= NULL
&& *title
!= '\0')
122 t
= g_strstrip (g_strdup (title
));
123 g
->title
= g_strconcat (" ", t
, " ", (char *) NULL
);
127 widget_redraw (WIDGET (g
));
130 /* --------------------------------------------------------------------------------------------- */