2 Widgets for the Midnight Commander
4 Copyright (C) 1994-2024
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-2022
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 /*** forward declarations (file scope functions) *************************************************/
53 /*** file scope variables ************************************************************************/
55 /* --------------------------------------------------------------------------------------------- */
56 /*** file scope functions ************************************************************************/
57 /* --------------------------------------------------------------------------------------------- */
60 groupbox_callback (Widget
*w
, Widget
*sender
, widget_msg_t msg
, int parm
, void *data
)
62 WGroupbox
*g
= GROUPBOX (w
);
71 colors
= widget_get_colors (w
);
73 disabled
= widget_get_state (w
, WST_DISABLED
);
74 tty_setcolor (disabled
? DISABLED_COLOR
: colors
[DLG_COLOR_NORMAL
]);
75 tty_draw_box (w
->rect
.y
, w
->rect
.x
, w
->rect
.lines
, w
->rect
.cols
, TRUE
);
79 tty_setcolor (disabled
? DISABLED_COLOR
: colors
[DLG_COLOR_TITLE
]);
80 widget_gotoyx (w
, 0, 1);
81 tty_print_string (g
->title
);
91 return widget_default_callback (w
, sender
, msg
, parm
, data
);
95 /* --------------------------------------------------------------------------------------------- */
96 /*** public functions ****************************************************************************/
97 /* --------------------------------------------------------------------------------------------- */
100 groupbox_new (int y
, int x
, int height
, int width
, const char *title
)
102 WRect r
= { y
, x
, height
, width
};
106 g
= g_new (WGroupbox
, 1);
108 widget_init (w
, &r
, groupbox_callback
, NULL
);
111 groupbox_set_title (g
, title
);
116 /* --------------------------------------------------------------------------------------------- */
119 groupbox_set_title (WGroupbox
*g
, const char *title
)
121 MC_PTR_FREE (g
->title
);
123 /* Strip existing spaces, add one space before and after the title */
124 if (title
!= NULL
&& *title
!= '\0')
128 t
= g_strstrip (g_strdup (title
));
129 g
->title
= g_strconcat (" ", t
, " ", (char *) NULL
);
133 widget_draw (WIDGET (g
));
136 /* --------------------------------------------------------------------------------------------- */