2 Copyright (C) 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2007, 2009 Free Software Foundation, Inc.
5 Written by: 1995 Jakub Jelinek
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * \brief Source: learn keys module
33 #include <sys/types.h>
37 #include "lib/global.h"
39 #include "lib/tty/tty.h"
40 #include "lib/tty/key.h"
41 #include "lib/mcconfig.h" /* Save profile */
42 #include "lib/strescape.h"
43 #include "lib/strutil.h"
48 #include "layout.h" /* repaint_screen() */
63 int ret_cmd
, flags
, y
, x
;
65 } learn_but
[BUTTONS
] = {
66 { B_CANCEL
, NORMAL_BUTTON
, 0, 39, N_("&Cancel") },
67 { B_ENTER
, DEFPUSH_BUTTON
, 0, 25, N_("&Save") }
70 static Dlg_head
*learn_dlg
;
77 static learnkey
*learnkeys
= NULL
;
78 static int learn_total
;
80 static int learnchanged
;
81 static const char* learn_title
= N_("Learn keys");
84 static int learn_button (int action
)
87 Dlg_head
*d
= create_message (D_ERROR
, _(" Teach me a key "),
88 _("Please press the %s\n"
89 "and then wait until this message disappears.\n\n"
90 "Then, press it again to see if OK appears\n"
91 "next to its button.\n\n"
92 "If you want to escape, press a single Escape key\n"
94 _(key_name_conv_tab
[action
- B_USER
].longname
));
96 if (learnkeys
[action
- B_USER
].sequence
!= NULL
) {
97 g_free (learnkeys
[action
- B_USER
].sequence
);
98 learnkeys
[action
- B_USER
].sequence
= NULL
;
103 /* Esc hides the dialog and do not allow definitions of
106 gboolean seq_ok
= FALSE
;
108 if (*seq
&& strcmp (seq
, "\\e") && strcmp (seq
, "\\e\\e")
109 && strcmp (seq
, "^m" ) && strcmp (seq
, "^i" )
110 && (seq
[1] || (*seq
< ' ' || *seq
> '~'))){
113 learnkeys
[action
- B_USER
].sequence
= seq
;
114 seq
= convert_controls (seq
);
115 seq_ok
= define_sequence (key_name_conv_tab
[action
- B_USER
].code
,
116 seq
, MCKEY_NOACTION
);
120 message (D_NORMAL
, _(" Cannot accept this key "),
121 _(" You have entered \"%s\""), seq
);
128 dlg_select_widget (learnkeys
[action
- B_USER
].button
);
129 return 0; /* Do not kill learn_dlg */
132 static int learn_move (int right
)
136 totalcols
= (learn_total
- 1) / ROWS
+ 1;
137 for (i
= 0; i
< learn_total
; i
++)
138 if (learnkeys
[i
].button
== learn_dlg
->current
) {
140 if (i
< learn_total
- ROWS
)
147 else if (i
+ (totalcols
- 1) * ROWS
>= learn_total
)
148 i
+= (totalcols
- 2) * ROWS
;
150 i
+= (totalcols
- 1) * ROWS
;
152 dlg_select_widget (learnkeys
[i
].button
);
159 learn_check_key (int c
)
163 for (i
= 0; i
< learn_total
; i
++) {
164 if (key_name_conv_tab
[i
].code
!= c
|| learnkeys
[i
].ok
)
167 dlg_select_widget (learnkeys
[i
].button
);
168 /* TRANSLATORS: This label appears near learned keys. Keep it short. */
169 label_set_text ((WLabel
*) learnkeys
[i
].label
, _("OK"));
172 if (learnok
>= learn_total
) {
173 learn_dlg
->ret_value
= B_CANCEL
;
175 if (query_dialog (learn_title
,
177 ("It seems that all your keys already\n"
178 "work fine. That's great."), D_ERROR
, 2,
179 _("&Save"), _("&Discard")) == 0)
180 learn_dlg
->ret_value
= B_ENTER
;
182 message (D_ERROR
, learn_title
,
184 ("Great! You have a complete terminal database!\n"
185 "All your keys work well."));
187 dlg_stop (learn_dlg
);
194 return learn_move (0);
197 return learn_move (1);
199 dlg_one_down (learn_dlg
);
202 dlg_one_up (learn_dlg
);
206 /* Prevent from disappearing if a non-defined sequence is pressed
207 and contains a button hotkey. Only recognize hotkeys with ALT. */
208 if (c
< 255 && g_ascii_isalnum (c
))
215 learn_callback (Dlg_head
*h
, Widget
*sender
,
216 dlg_msg_t msg
, int parm
, void *data
)
220 common_dialog_repaint (h
);
224 return learn_check_key (parm
);
227 return default_dlg_callback (h
, sender
, msg
, parm
, data
);
235 const key_code_name_t
*key
;
236 char buffer
[BUF_TINY
];
239 static int i18n_flag
= 0;
241 learn_but
[0].text
= _(learn_but
[0].text
);
242 learn_but
[0].x
= 78 / 2 + 4;
244 learn_but
[1].text
= _(learn_but
[1].text
);
245 learn_but
[1].x
= 78 / 2 - (str_term_width1 (learn_but
[1].text
) + 9);
247 learn_title
= _(learn_title
);
250 #endif /* ENABLE_NLS */
255 create_dlg (0, 0, 23, 78, dialog_colors
, learn_callback
,
256 "[Learn keys]", learn_title
, DLG_CENTER
| DLG_REVERSE
);
258 for (i
= 0; i
< BUTTONS
; i
++)
259 add_widget (learn_dlg
,
260 button_new (BY
+ learn_but
[i
].y
, learn_but
[i
].x
,
261 learn_but
[i
].ret_cmd
, learn_but
[i
].flags
,
262 _(learn_but
[i
].text
), 0));
266 for (key
= key_name_conv_tab
, j
= 0;
267 key
->name
!= NULL
&& strcmp (key
->name
, "kpleft");
270 learnkeys
= g_new (learnkey
, j
);
271 x
+= ((j
- 1) / ROWS
) * COLSHIFT
;
276 for (i
= j
- 1, key
= key_name_conv_tab
+ j
- 1; i
>= 0; i
--, key
--) {
278 learnkeys
[i
].sequence
= NULL
;
279 g_snprintf (buffer
, sizeof (buffer
), "%-16s", _(key
->longname
));
280 add_widget (learn_dlg
, learnkeys
[i
].button
= (Widget
*)
281 button_new (y
, x
, B_USER
+ i
, NARROW_BUTTON
, buffer
,
283 add_widget (learn_dlg
, learnkeys
[i
].label
= (Widget
*)
284 label_new (y
, x
+ 19, ""));
292 add_widget (learn_dlg
,
293 label_new (UY
+ 14, 5,
295 ("Press all the keys mentioned here. After you have done it, check")));
296 add_widget (learn_dlg
,
297 label_new (UY
+ 15, 5,
299 ("which keys are not marked with OK. Press space on the missing")));
300 add_widget (learn_dlg
,
301 label_new (UY
+ 16, 5,
303 ("key, or click with the mouse to define it. Move around with Tab.")));
306 static void learn_done (void)
308 destroy_dlg (learn_dlg
);
316 int profile_changed
= 0;
317 char *section
= g_strconcat ("terminal:", getenv ("TERM"), (char *) NULL
);
320 for (i
= 0; i
< learn_total
; i
++) {
321 if (learnkeys
[i
].sequence
!= NULL
) {
324 esc_str
= strutils_escape (learnkeys
[i
].sequence
, -1, ";\\", TRUE
);
326 mc_config_direct_set_string(mc_main_config
, section
,
327 key_name_conv_tab
[i
].name
, esc_str
);
333 /* On the one hand no good idea to save the complete setup but
334 * without 'Auto save setup' the new key-definitions will not be
335 * saved unless the user does an 'Options/Save Setup'.
336 * On the other hand a save-button that does not save anything to
337 * disk is much worse.
340 mc_config_save_file (mc_main_config
, NULL
);
345 void learn_keys (void)
347 int save_old_esc_mode
= old_esc_mode
;
348 int save_alternate_plus_minus
= alternate_plus_minus
;
350 old_esc_mode
= 0; /* old_esc_mode cannot work in learn keys dialog */
351 alternate_plus_minus
= 1; /* don't translate KP_ADD, KP_SUBTRACT and
352 KP_MULTIPLY to '+', '-' and '*' in
354 application_keypad_mode ();
359 old_esc_mode
= save_old_esc_mode
;
360 alternate_plus_minus
= save_alternate_plus_minus
;
362 if (!alternate_plus_minus
)
363 numeric_keypad_mode ();
365 switch (learn_dlg
->ret_value
) {