(edit_move_block_to_left): reduce variable scope.
[midnight-commander.git] / lib / widget / buttonbar.c
blobb73e9fc1554a6facb33306436846f993536bf2d1
1 /*
2 Widgets for the Midnight Commander
4 Copyright (C) 1994-2016
5 Free Software Foundation, Inc.
7 Authors:
8 Radek Doulik, 1994, 1995
9 Miguel de Icaza, 1994, 1995
10 Jakub Jelinek, 1995
11 Andrej Borsenkow, 1996
12 Norbert Warmuth, 1997
13 Andrew Borodin <aborodin@vmail.ru>, 2009, 2010, 2013, 2016
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/>.
31 /** \file buttonbar.c
32 * \brief Source: WButtonBar widget
35 #include <config.h>
37 #include <stdlib.h>
38 #include <string.h>
40 #include "lib/global.h"
42 #include "lib/tty/tty.h"
43 #include "lib/tty/key.h" /* XCTRL and ALT macros */
44 #include "lib/skin.h"
45 #include "lib/strutil.h"
46 #include "lib/util.h"
47 #include "lib/keybind.h" /* global_keymap_t */
48 #include "lib/widget.h"
50 /*** global variables ****************************************************************************/
52 /*** file scope macro definitions ****************************************************************/
54 /*** file scope type declarations ****************************************************************/
56 /*** file scope variables ************************************************************************/
58 /*** file scope functions ************************************************************************/
59 /* --------------------------------------------------------------------------------------------- */
61 /* calculate positions of buttons; width is never less than 7 */
62 static void
63 buttonbar_init_button_positions (WButtonBar * bb)
65 int i;
66 int pos = 0;
68 if (COLS < BUTTONBAR_LABELS_NUM * 7)
70 for (i = 0; i < BUTTONBAR_LABELS_NUM; i++)
72 if (pos + 7 <= COLS)
73 pos += 7;
75 bb->labels[i].end_coord = pos;
78 else
80 /* Distribute the extra width in a way that the middle vertical line
81 (between F5 and F6) aligns with the two panels. The extra width
82 is distributed in this order: F10, F5, F9, F4, ..., F6, F1. */
83 int dv, md;
85 dv = COLS / BUTTONBAR_LABELS_NUM;
86 md = COLS % BUTTONBAR_LABELS_NUM;
88 for (i = 0; i < BUTTONBAR_LABELS_NUM / 2; i++)
90 pos += dv;
91 if (BUTTONBAR_LABELS_NUM / 2 - 1 - i < md / 2)
92 pos++;
94 bb->labels[i].end_coord = pos;
97 for (; i < BUTTONBAR_LABELS_NUM; i++)
99 pos += dv;
100 if (BUTTONBAR_LABELS_NUM - 1 - i < (md + 1) / 2)
101 pos++;
103 bb->labels[i].end_coord = pos;
108 /* --------------------------------------------------------------------------------------------- */
110 /* return width of one button */
111 static int
112 buttonbar_get_button_width (const WButtonBar * bb, int i)
114 if (i == 0)
115 return bb->labels[0].end_coord;
116 return bb->labels[i].end_coord - bb->labels[i - 1].end_coord;
119 /* --------------------------------------------------------------------------------------------- */
121 static int
122 buttonbar_get_button_by_x_coord (const WButtonBar * bb, int x)
124 int i;
126 for (i = 0; i < BUTTONBAR_LABELS_NUM; i++)
127 if (bb->labels[i].end_coord > x)
128 return i;
130 return (-1);
133 /* --------------------------------------------------------------------------------------------- */
135 static void
136 set_label_text (WButtonBar * bb, int idx, const char *text)
138 g_free (bb->labels[idx - 1].text);
139 bb->labels[idx - 1].text = g_strdup (text);
142 /* --------------------------------------------------------------------------------------------- */
144 /* returns TRUE if a function has been called, FALSE otherwise. */
145 static gboolean
146 buttonbar_call (WButtonBar * bb, int i)
148 cb_ret_t ret = MSG_NOT_HANDLED;
149 Widget *w = WIDGET (bb);
150 Widget *target;
152 target = (bb->labels[i].receiver != NULL) ? bb->labels[i].receiver : WIDGET (w->owner);
154 if ((bb != NULL) && (bb->labels[i].command != CK_IgnoreKey))
155 ret = send_message (target, w, MSG_ACTION, bb->labels[i].command, NULL);
156 return ret;
159 /* --------------------------------------------------------------------------------------------- */
161 static cb_ret_t
162 buttonbar_callback (Widget * w, Widget * sender, widget_msg_t msg, int parm, void *data)
164 WButtonBar *bb = BUTTONBAR (w);
165 int i;
167 switch (msg)
169 case MSG_HOTKEY:
170 for (i = 0; i < BUTTONBAR_LABELS_NUM; i++)
171 if (parm == KEY_F (i + 1) && buttonbar_call (bb, i))
172 return MSG_HANDLED;
173 return MSG_NOT_HANDLED;
175 case MSG_DRAW:
176 if (bb->visible)
178 buttonbar_init_button_positions (bb);
179 widget_move (w, 0, 0);
180 tty_setcolor (DEFAULT_COLOR);
181 tty_printf ("%-*s", w->cols, "");
182 widget_move (w, 0, 0);
184 for (i = 0; i < BUTTONBAR_LABELS_NUM; i++)
186 int width;
187 const char *text;
189 width = buttonbar_get_button_width (bb, i);
190 if (width <= 0)
191 break;
193 tty_setcolor (BUTTONBAR_HOTKEY_COLOR);
194 tty_printf ("%2d", i + 1);
196 tty_setcolor (BUTTONBAR_BUTTON_COLOR);
197 text = (bb->labels[i].text != NULL) ? bb->labels[i].text : "";
198 tty_print_string (str_fit_to_term (text, width - 2, J_LEFT_FIT));
201 return MSG_HANDLED;
203 case MSG_DESTROY:
204 for (i = 0; i < BUTTONBAR_LABELS_NUM; i++)
205 g_free (bb->labels[i].text);
206 return MSG_HANDLED;
208 default:
209 return widget_default_callback (w, sender, msg, parm, data);
213 /* --------------------------------------------------------------------------------------------- */
215 static void
216 buttonbar_mouse_callback (Widget * w, mouse_msg_t msg, mouse_event_t * event)
218 switch (msg)
220 case MSG_MOUSE_CLICK:
222 WButtonBar *bb = BUTTONBAR (w);
223 int button;
225 button = buttonbar_get_button_by_x_coord (bb, event->x);
226 if (button >= 0)
227 buttonbar_call (bb, button);
228 break;
231 default:
232 break;
236 /* --------------------------------------------------------------------------------------------- */
237 /*** public functions ****************************************************************************/
238 /* --------------------------------------------------------------------------------------------- */
240 WButtonBar *
241 buttonbar_new (gboolean visible)
243 WButtonBar *bb;
244 Widget *w;
246 bb = g_new0 (WButtonBar, 1);
247 w = WIDGET (bb);
248 widget_init (w, LINES - 1, 0, 1, COLS, buttonbar_callback, buttonbar_mouse_callback);
250 w->pos_flags = WPOS_KEEP_HORZ | WPOS_KEEP_BOTTOM;
251 bb->visible = visible;
252 widget_want_hotkey (w, TRUE);
254 return bb;
257 /* --------------------------------------------------------------------------------------------- */
259 void
260 buttonbar_set_label (WButtonBar * bb, int idx, const char *text, const global_keymap_t * keymap,
261 Widget * receiver)
263 if ((bb != NULL) && (idx >= 1) && (idx <= BUTTONBAR_LABELS_NUM))
265 long command = CK_IgnoreKey;
267 if (keymap != NULL)
268 command = keybind_lookup_keymap_command (keymap, KEY_F (idx));
270 if ((text == NULL) || (text[0] == '\0'))
271 set_label_text (bb, idx, "");
272 else
273 set_label_text (bb, idx, text);
275 bb->labels[idx - 1].command = command;
276 bb->labels[idx - 1].receiver = WIDGET (receiver);
280 /* --------------------------------------------------------------------------------------------- */
282 /* Find ButtonBar widget in the dialog */
283 WButtonBar *
284 find_buttonbar (const WDialog * h)
286 return BUTTONBAR (find_widget_type (h, buttonbar_callback));