2 Internal file viewer for the Midnight Commander
3 Callback function for some actions (hotkeys, menu)
5 Copyright (C) 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003,
6 2004, 2005, 2006, 2007, 2009, 2011
7 The Free Software Foundation, Inc.
10 Miguel de Icaza, 1994, 1995, 1998
11 Janne Kukonlehto, 1994, 1995
13 Joseph M. Hinkle, 1996
16 Roland Illig <roland.illig@gmx.de>, 2004, 2005
17 Slava Zanko <slavazanko@google.com>, 2009
18 Andrew Borodin <aborodin@vmail.ru>, 2009
19 Ilia Maslakov <il.smind@gmail.com>, 2009
21 This file is part of the Midnight Commander.
23 The Midnight Commander is free software: you can redistribute it
24 and/or modify it under the terms of the GNU General Public License as
25 published by the Free Software Foundation, either version 3 of the License,
26 or (at your option) any later version.
28 The Midnight Commander is distributed in the hope that it will be useful,
29 but WITHOUT ANY WARRANTY; without even the implied warranty of
30 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 GNU General Public License for more details.
33 You should have received a copy of the GNU General Public License
34 along with this program. If not, see <http://www.gnu.org/licenses/>.
38 The functions in this section can be bound to hotkeys. They are all
39 of the same type (taking a pointer to mcview_t as parameter and
40 returning void). TODO: In the not-too-distant future, these commands
41 will become fully configurable, like they already are in the
42 internal editor. By convention, all the function names end in
51 #include "lib/global.h"
53 #include "lib/tty/tty.h"
54 #include "lib/tty/key.h" /* is_idle() */
55 #include "lib/lock.h" /* lock_file() */
57 #include "lib/widget.h"
59 #include "lib/charsets.h"
61 #include "lib/event.h" /* mc_event_raise() */
63 #include "src/filemanager/layout.h"
64 #include "src/filemanager/cmd.h"
65 #include "src/filemanager/midnight.h" /* current_panel */
67 #include "src/history.h"
68 #include "src/execute.h"
69 #include "src/keybind-defaults.h"
74 /*** global variables ****************************************************************************/
76 /*** file scope macro definitions ****************************************************************/
78 /*** file scope type declarations ****************************************************************/
80 /*** file scope variables ************************************************************************/
82 /*** file scope functions ************************************************************************/
83 /* --------------------------------------------------------------------------------------------- */
87 mcview_search (mcview_t
* view
)
89 if (mcview_dialog_search (view
))
90 mcview_do_search (view
);
93 /* --------------------------------------------------------------------------------------------- */
96 mcview_continue_search_cmd (mcview_t
* view
)
98 if (view
->last_search_string
!= NULL
)
100 mcview_do_search (view
);
104 /* find last search string in history */
106 history
= history_get (MC_HISTORY_SHARED_SEARCH
);
107 if (history
!= NULL
&& history
->data
!= NULL
)
109 view
->last_search_string
= (gchar
*) g_strdup (history
->data
);
110 history
= g_list_first (history
);
111 g_list_foreach (history
, (GFunc
) g_free
, NULL
);
112 g_list_free (history
);
114 view
->search
= mc_search_new (view
->last_search_string
, -1);
115 view
->search_nroff_seq
= mcview_nroff_seq_new (view
);
119 /* if not... then ask for an expression */
120 g_free (view
->last_search_string
);
121 view
->last_search_string
= NULL
;
122 mcview_search (view
);
126 view
->search
->search_type
= mcview_search_options
.type
;
127 view
->search
->is_all_charsets
= mcview_search_options
.all_codepages
;
128 view
->search
->is_case_sensitive
= mcview_search_options
.case_sens
;
129 view
->search
->whole_words
= mcview_search_options
.whole_words
;
130 view
->search
->search_fn
= mcview_search_cmd_callback
;
131 view
->search
->update_fn
= mcview_search_update_cmd_callback
;
133 mcview_do_search (view
);
138 /* if not... then ask for an expression */
139 g_free (view
->last_search_string
);
140 view
->last_search_string
= NULL
;
141 mcview_search (view
);
146 /* --------------------------------------------------------------------------------------------- */
149 mcview_hook (void *v
)
151 mcview_t
*view
= (mcview_t
*) v
;
154 /* If the user is busy typing, wait until he finishes to update the
158 if (!hook_present (idle_hook
, mcview_hook
))
159 add_hook (&idle_hook
, mcview_hook
, v
);
163 delete_hook (&idle_hook
, mcview_hook
);
165 if (get_current_type () == view_listing
)
166 panel
= current_panel
;
167 else if (get_other_type () == view_listing
)
174 mcview_load (view
, 0, panel
->dir
.list
[panel
->selected
].fname
, 0);
175 mcview_display (view
);
178 /* --------------------------------------------------------------------------------------------- */
181 mcview_handle_editkey (mcview_t
* view
, int key
)
183 struct hexedit_change_node
*node
;
186 /* Has there been a change at this position? */
187 node
= view
->change_list
;
188 while ((node
!= NULL
) && (node
->offset
!= view
->hex_cursor
))
191 if (!view
->hexview_in_text
)
194 unsigned int hexvalue
= 0;
196 if (key
>= '0' && key
<= '9')
197 hexvalue
= 0 + (key
- '0');
198 else if (key
>= 'A' && key
<= 'F')
199 hexvalue
= 10 + (key
- 'A');
200 else if (key
>= 'a' && key
<= 'f')
201 hexvalue
= 10 + (key
- 'a');
203 return MSG_NOT_HANDLED
;
206 byte_val
= node
->value
;
208 mcview_get_byte (view
, view
->hex_cursor
, &byte_val
);
210 if (view
->hexedit_lownibble
)
211 byte_val
= (byte_val
& 0xf0) | (hexvalue
);
213 byte_val
= (byte_val
& 0x0f) | (hexvalue
<< 4);
218 if (key
< 256 && ((key
== '\n') || is_printable (key
)))
221 return MSG_NOT_HANDLED
;
224 if ((view
->filename_vpath
!= NULL
)
225 && (*(vfs_path_get_last_path_str (view
->filename_vpath
)) != '\0')
226 && (view
->change_list
== NULL
))
227 view
->locked
= lock_file (view
->filename_vpath
);
231 node
= g_new (struct hexedit_change_node
, 1);
232 node
->offset
= view
->hex_cursor
;
233 node
->value
= byte_val
;
234 mcview_enqueue_change (&view
->change_list
, node
);
237 node
->value
= byte_val
;
240 mcview_move_right (view
, 1);
245 /* --------------------------------------------------------------------------------------------- */
248 mcview_load_next_prev_init (mcview_t
* view
)
250 if (mc_global
.mc_run_mode
!= MC_RUN_VIEWER
)
252 /* get file list from current panel. Update it each time */
253 view
->dir
= ¤t_panel
->dir
;
254 view
->dir_count
= ¤t_panel
->count
;
255 view
->dir_idx
= ¤t_panel
->selected
;
257 else if (view
->dir
== NULL
)
259 /* Run from command line */
260 /* Run 1st time. Load/get directory */
262 /* TODO: check mtime of directory to reload it */
269 /* load directory where requested file is */
270 view
->dir
= g_new0 (dir_list
, 1);
271 view
->dir_count
= g_new (int, 1);
272 view
->dir_idx
= g_new (int, 1);
274 *view
->dir_count
= do_load_dir (view
->workdir_vpath
, view
->dir
, (sortfn
*) sort_name
, FALSE
,
277 full_fname
= vfs_path_to_str (view
->filename_vpath
);
278 fname
= x_basename (full_fname
);
279 fname_len
= strlen (fname
);
281 /* search current file in the list */
282 for (i
= 0; i
!= *view
->dir_count
; i
++)
284 const file_entry
*fe
= &view
->dir
->list
[i
];
286 if (fname_len
== fe
->fnamelen
&& strncmp (fname
, fe
->fname
, fname_len
) == 0)
296 /* --------------------------------------------------------------------------------------------- */
299 mcview_scan_for_file (mcview_t
* view
, int direction
)
303 for (i
= *view
->dir_idx
+ direction
; i
!= *view
->dir_idx
; i
+= direction
)
306 i
= *view
->dir_count
- 1;
307 if (i
== *view
->dir_count
)
309 if (!S_ISDIR (view
->dir
->list
[i
].st
.st_mode
))
316 /* --------------------------------------------------------------------------------------------- */
319 mcview_load_next_prev (mcview_t
* view
, int direction
)
322 int *dir_count
, *dir_idx
;
326 mcview_load_next_prev_init (view
);
327 mcview_scan_for_file (view
, direction
);
331 dir_count
= view
->dir_count
;
332 dir_idx
= view
->dir_idx
;
334 view
->dir_count
= NULL
;
335 view
->dir_idx
= NULL
;
336 vfile
= vfs_path_append_new (view
->workdir_vpath
, dir
->list
[*dir_idx
].fname
, (char *) NULL
);
337 file
= vfs_path_to_str (vfile
);
338 vfs_path_free (vfile
);
341 mcview_load (view
, NULL
, file
, 0);
344 view
->dir_count
= dir_count
;
345 view
->dir_idx
= dir_idx
;
347 view
->dpy_bbar_dirty
= FALSE
; /* FIXME */
351 /* --------------------------------------------------------------------------------------------- */
354 mcview_execute_cmd (mcview_t
* view
, unsigned long command
)
356 int res
= MSG_HANDLED
;
362 ev_help_t event_data
= { NULL
, "[Internal File Viewer]" };
363 mc_event_raise (MCEVENT_GROUP_CORE
, "help", &event_data
);
367 /* Toggle between wrapped and unwrapped view */
368 mcview_toggle_wrap_mode (view
);
371 /* Toggle between hexview and hexedit mode */
372 mcview_toggle_hexedit_mode (view
);
375 /* Toggle between hex view and text view */
376 mcview_toggle_hex_mode (view
);
382 if (mcview_dialog_goto (view
, &addr
))
385 mcview_moveto_offset (view
, addr
);
388 message (D_ERROR
, _("Warning"), _("Invalid value"));
395 mcview_hexedit_save_changes (view
);
398 mcview_search (view
);
400 case CK_SearchForward
:
401 mcview_search_options
.backwards
= FALSE
;
402 mcview_search (view
);
404 case CK_SearchBackward
:
405 mcview_search_options
.backwards
= TRUE
;
406 mcview_search (view
);
409 mcview_toggle_magic_mode (view
);
412 mcview_toggle_nroff_mode (view
);
414 case CK_ToggleNavigation
:
415 view
->hexview_in_text
= !view
->hexview_in_text
;
419 mcview_moveto_bol (view
);
422 mcview_moveto_eol (view
);
425 mcview_move_left (view
, 1);
428 mcview_move_right (view
, 1);
432 mcview_move_left (view
, 10);
436 mcview_move_right (view
, 10);
438 case CK_SearchContinue
:
439 mcview_continue_search_cmd (view
);
441 case CK_SearchForwardContinue
:
442 mcview_search_options
.backwards
= FALSE
;
443 mcview_continue_search_cmd (view
);
445 case CK_SearchBackwardContinue
:
446 mcview_search_options
.backwards
= TRUE
;
447 mcview_continue_search_cmd (view
);
450 mcview_display_toggle_ruler (view
);
453 mcview_move_up (view
, 1);
456 mcview_move_down (view
, 1);
459 mcview_move_up (view
, (view
->data_area
.height
+ 1) / 2);
461 case CK_HalfPageDown
:
462 mcview_move_down (view
, (view
->data_area
.height
+ 1) / 2);
465 mcview_move_up (view
, view
->data_area
.height
);
468 mcview_move_down (view
, view
->data_area
.height
);
471 mcview_moveto_top (view
);
474 mcview_moveto_bottom (view
);
479 case CK_BookmarkGoto
:
480 view
->marks
[view
->marker
] = view
->dpy_start
;
483 view
->dpy_start
= view
->marks
[view
->marker
];
487 case CK_SelectCodepage
:
488 mcview_select_encoding (view
);
494 /* Does not work in panel mode */
495 if (!mcview_is_in_panel (view
))
496 mcview_load_next_prev (view
, command
== CK_FileNext
? 1 : -1);
499 if (!mcview_is_in_panel (view
))
500 dlg_stop (WIDGET (view
)->owner
);
503 /* don't close viewer due to SIGINT */
506 res
= MSG_NOT_HANDLED
;
511 /* --------------------------------------------------------------------------------------------- */
514 mcview_handle_key (mcview_t
* view
, int key
)
516 unsigned long command
;
519 key
= convert_from_input_c (key
);
524 if (view
->hexedit_mode
&& (mcview_handle_editkey (view
, key
) == MSG_HANDLED
))
527 command
= keybind_lookup_keymap_command (viewer_hex_map
, key
);
528 if ((command
!= CK_IgnoreKey
) && (mcview_execute_cmd (view
, command
) == MSG_HANDLED
))
532 command
= keybind_lookup_keymap_command (viewer_map
, key
);
533 if ((command
!= CK_IgnoreKey
) && (mcview_execute_cmd (view
, command
) == MSG_HANDLED
))
536 #ifdef MC_ENABLE_DEBUGGING_CODE
538 { /* mnemonic: "test" */
539 mcview_ccache_dump (view
);
543 if (key
>= '0' && key
<= '9')
544 view
->marker
= key
- '0';
547 return MSG_NOT_HANDLED
;
551 /* --------------------------------------------------------------------------------------------- */
554 mcview_adjust_size (WDialog
* h
)
559 /* Look up the viewer and the buttonbar, we assume only two widgets here */
560 view
= (mcview_t
*) find_widget_type (h
, mcview_callback
);
561 b
= find_buttonbar (h
);
563 widget_set_size (WIDGET (view
), 0, 0, LINES
- 1, COLS
);
564 widget_set_size (WIDGET (b
), LINES
- 1, 0, 1, COLS
);
566 mcview_compute_areas (view
);
567 mcview_update_bytes_per_line (view
);
571 /* --------------------------------------------------------------------------------------------- */
572 /*** public functions ****************************************************************************/
573 /* --------------------------------------------------------------------------------------------- */
576 mcview_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
578 mcview_t
*view
= (mcview_t
*) w
;
581 mcview_compute_areas (view
);
582 mcview_update_bytes_per_line (view
);
587 if (mcview_is_in_panel (view
))
588 add_hook (&select_file_hook
, mcview_hook
, view
);
590 view
->dpy_bbar_dirty
= TRUE
;
594 mcview_display (view
);
599 mcview_place_cursor (view
);
603 i
= mcview_handle_key (view
, parm
);
604 mcview_update (view
);
608 i
= mcview_execute_cmd (view
, parm
);
609 mcview_update (view
);
613 view
->dpy_bbar_dirty
= TRUE
;
614 mcview_update (view
);
618 if (mcview_is_in_panel (view
))
620 delete_hook (&select_file_hook
, mcview_hook
);
622 if (mc_global
.midnight_shutdown
)
623 mcview_ok_to_quit (view
);
629 return widget_default_callback (w
, sender
, msg
, parm
, data
);
633 /* --------------------------------------------------------------------------------------------- */
636 mcview_dialog_callback (Widget
* w
, Widget
* sender
, widget_msg_t msg
, int parm
, void *data
)
638 WDialog
*h
= DIALOG (w
);
644 mcview_adjust_size (h
);
650 return mcview_execute_cmd (NULL
, parm
);
651 /* message from buttonbar */
652 if (sender
== WIDGET (find_buttonbar (h
)))
655 return send_message (data
, NULL
, MSG_ACTION
, parm
, NULL
);
657 view
= (mcview_t
*) find_widget_type (h
, mcview_callback
);
658 return mcview_execute_cmd (view
, parm
);
660 return MSG_NOT_HANDLED
;
663 view
= (mcview_t
*) find_widget_type (h
, mcview_callback
);
664 h
->state
= DLG_ACTIVE
; /* don't stop the dialog before final decision */
665 if (mcview_ok_to_quit (view
))
666 h
->state
= DLG_CLOSED
;
668 mcview_update (view
);
672 return dlg_default_callback (w
, sender
, msg
, parm
, data
);
676 /* --------------------------------------------------------------------------------------------- */