2 Widgets for the Midnight Commander
4 Copyright (C) 1994-2016
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, 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/>.
32 * \brief Source: WButton widget
39 #include "lib/global.h"
41 #include "lib/tty/tty.h"
42 #include "lib/strutil.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 button_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
58 WButton
*b
= BUTTON (w
);
59 WDialog
*h
= w
->owner
;
66 * Don't let the default button steal Enter from the current
67 * button. This is a workaround for the flawed event model
68 * when hotkeys are sent to all widgets before the key is
69 * handled by the current widget.
71 if (parm
== '\n' && WIDGET (h
->current
->data
) == WIDGET (b
))
73 send_message (w
, sender
, MSG_KEY
, ' ', data
);
77 if (parm
== '\n' && b
->flags
== DEFPUSH_BUTTON
)
79 send_message (w
, sender
, MSG_KEY
, ' ', data
);
83 if (b
->text
.hotkey
!= NULL
&& g_ascii_tolower ((gchar
) b
->text
.hotkey
[0]) == parm
)
85 send_message (w
, sender
, MSG_KEY
, ' ', data
);
88 return MSG_NOT_HANDLED
;
91 if (parm
!= ' ' && parm
!= '\n')
92 return MSG_NOT_HANDLED
;
94 h
->ret_value
= b
->action
;
95 if (b
->callback
== NULL
|| b
->callback (b
, b
->action
) != 0)
117 widget_move (w
, 0, b
->hotpos
+ off
);
123 if (msg
== MSG_UNFOCUS
)
125 else if (msg
== MSG_FOCUS
)
128 widget_selectcolor (w
, b
->selected
, FALSE
);
129 widget_move (w
, 0, 0);
134 tty_print_string ("[< ");
137 tty_print_string ("[ ");
140 tty_print_string ("[");
147 hotkey_draw (w
, b
->text
, b
->selected
);
152 tty_print_string (" >]");
155 tty_print_string (" ]");
158 tty_print_string ("]");
166 release_hotkey (b
->text
);
170 return widget_default_callback (w
, sender
, msg
, parm
, data
);
174 /* --------------------------------------------------------------------------------------------- */
177 button_mouse_callback (Widget
* w
, mouse_msg_t msg
, mouse_event_t
* event
)
184 dlg_select_widget (w
);
187 case MSG_MOUSE_CLICK
:
188 send_message (w
, NULL
, MSG_KEY
, ' ', NULL
);
189 send_message (w
->owner
, w
, MSG_POST_KEY
, ' ', NULL
);
197 /* --------------------------------------------------------------------------------------------- */
198 /*** public functions ****************************************************************************/
199 /* --------------------------------------------------------------------------------------------- */
202 button_new (int y
, int x
, int action
, button_flags_t flags
, const char *text
, bcback_fn callback
)
207 b
= g_new (WButton
, 1);
212 b
->text
= parse_hotkey (text
);
213 widget_init (w
, y
, x
, 1, button_get_len (b
), button_callback
, button_mouse_callback
);
215 b
->callback
= callback
;
216 widget_want_cursor (w
, TRUE
);
217 widget_want_hotkey (w
, TRUE
);
218 b
->hotpos
= (b
->text
.hotkey
!= NULL
) ? str_term_width1 (b
->text
.start
) : -1;
223 /* --------------------------------------------------------------------------------------------- */
226 button_get_text (const WButton
* b
)
228 if (b
->text
.hotkey
!= NULL
)
229 return g_strconcat (b
->text
.start
, "&", b
->text
.hotkey
, b
->text
.end
, (char *) NULL
);
230 return g_strdup (b
->text
.start
);
233 /* --------------------------------------------------------------------------------------------- */
236 button_set_text (WButton
* b
, const char *text
)
238 Widget
*w
= WIDGET (b
);
240 release_hotkey (b
->text
);
241 b
->text
= parse_hotkey (text
);
242 b
->hotpos
= (b
->text
.hotkey
!= NULL
) ? str_term_width1 (b
->text
.start
) : -1;
243 w
->cols
= button_get_len (b
);
247 /* --------------------------------------------------------------------------------------------- */
250 button_get_len (const WButton
* b
)
252 int ret
= hotkey_width (b
->text
);
273 /* --------------------------------------------------------------------------------------------- */