2 Editor dialogs for high level editing commands
4 Copyright (C) 2009 The Free Software Foundation, Inc.
7 Slava Zanko <slavazanko@gmail.com>, 2009.
9 This file is part of the Midnight Commander.
11 The Midnight Commander is free software; you can redistribute it
12 and/or modify it under the terms of the GNU General Public License as
13 published by the Free Software Foundation; either version 2 of the
14 License, or (at your option) any later version.
16 The Midnight Commander is distributed in the hope that it will be
17 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
18 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
29 #include "lib/global.h"
30 #include "lib/tty/tty.h"
31 #include "lib/skin.h" /* INPUT_COLOR */
32 #include "lib/tty/key.h"
33 #include "lib/search.h"
34 #include "lib/strutil.h"
35 #include "lib/widget.h"
36 #include "lib/charsets.h"
39 #include "src/history.h"
41 #include "src/editor/edit-widget.h"
42 #include "src/editor/etags.h"
43 #include "src/editor/editcmd_dialogs.h"
45 /*** global variables ****************************************************************************/
47 edit_search_options_t edit_search_options
= {
48 .type
= MC_SEARCH_T_NORMAL
,
51 .only_in_selection
= FALSE
,
53 .all_codepages
= FALSE
56 /*** file scope macro definitions ****************************************************************/
58 #define SEARCH_DLG_WIDTH 58
59 #define SEARCH_DLG_MIN_HEIGHT 13
60 #define SEARCH_DLG_HEIGHT_SUPPLY 3
62 #define REPLACE_DLG_WIDTH 58
63 #define REPLACE_DLG_MIN_HEIGHT 17
64 #define REPLACE_DLG_HEIGHT_SUPPLY 5
66 /*** file scope type declarations ****************************************************************/
68 /*** file scope variables ************************************************************************/
70 /*** file scope functions ************************************************************************/
71 /* --------------------------------------------------------------------------------------------- */
74 editcmd_dialog_raw_key_query_cb (struct Dlg_head
*h
, Widget
* sender
,
75 dlg_msg_t msg
, int parm
, void *data
)
84 return default_dlg_callback (h
, sender
, msg
, parm
, data
);
88 /* --------------------------------------------------------------------------------------------- */
89 /*** public functions ****************************************************************************/
90 /* --------------------------------------------------------------------------------------------- */
93 editcmd_dialog_replace_show (WEdit
* edit
, const char *search_default
, const char *replace_default
,
94 /*@out@ */ char **search_text
, /*@out@ */ char **replace_text
)
96 if ((search_default
== NULL
) || (*search_default
== '\0'))
97 search_default
= INPUT_LAST_TEXT
;
101 gchar
**list_of_types
= mc_search_get_types_strings_array (&num_of_types
);
102 int REPLACE_DLG_HEIGHT
= REPLACE_DLG_MIN_HEIGHT
+ num_of_types
- REPLACE_DLG_HEIGHT_SUPPLY
;
104 QuickWidget quick_widgets
[] = {
105 /* 0 */ QUICK_BUTTON (6, 10, 13, REPLACE_DLG_HEIGHT
, N_("&Cancel"), B_CANCEL
, NULL
),
106 /* 1 */ QUICK_BUTTON (2, 10, 13, REPLACE_DLG_HEIGHT
, N_("&OK"), B_ENTER
, NULL
),
108 /* 2 */ QUICK_CHECKBOX (33, REPLACE_DLG_WIDTH
, 11, REPLACE_DLG_HEIGHT
,
110 &edit_search_options
.all_codepages
),
112 /* 3 */ QUICK_CHECKBOX (33, REPLACE_DLG_WIDTH
, 10, REPLACE_DLG_HEIGHT
,
114 &edit_search_options
.whole_words
),
115 /* 4 */ QUICK_CHECKBOX (33, REPLACE_DLG_WIDTH
, 9, REPLACE_DLG_HEIGHT
,
117 &edit_search_options
.only_in_selection
),
118 /* 5 */ QUICK_CHECKBOX (33, REPLACE_DLG_WIDTH
, 8, REPLACE_DLG_HEIGHT
, N_("&Backwards"),
119 &edit_search_options
.backwards
),
120 /* 6 */ QUICK_CHECKBOX (33, REPLACE_DLG_WIDTH
, 7, REPLACE_DLG_HEIGHT
,
121 N_("Case &sensitive"),
122 &edit_search_options
.case_sens
),
123 /* 7 */ QUICK_RADIO (3, REPLACE_DLG_WIDTH
, 7, REPLACE_DLG_HEIGHT
,
124 num_of_types
, (const char **) list_of_types
,
125 (int *) &edit_search_options
.type
),
126 /* 8 */ QUICK_LABEL (3, REPLACE_DLG_WIDTH
, 4, REPLACE_DLG_HEIGHT
,
127 N_("Enter replacement string:")),
128 /* 9 */ QUICK_INPUT (3, REPLACE_DLG_WIDTH
, 5, REPLACE_DLG_HEIGHT
,
129 replace_default
, REPLACE_DLG_WIDTH
- 6, 0, "replace",
131 /* 10 */ QUICK_LABEL (3, REPLACE_DLG_WIDTH
, 2, REPLACE_DLG_HEIGHT
,
132 N_("Enter search string:")),
133 /* 11 */ QUICK_INPUT (3, REPLACE_DLG_WIDTH
, 3, REPLACE_DLG_HEIGHT
,
134 search_default
, REPLACE_DLG_WIDTH
- 6, 0,
135 MC_HISTORY_SHARED_SEARCH
, search_text
),
139 QuickDialog Quick_input
= {
140 REPLACE_DLG_WIDTH
, REPLACE_DLG_HEIGHT
, -1, -1, N_("Replace"),
141 "[Input Line Keys]", quick_widgets
, NULL
, FALSE
144 if (quick_dialog (&Quick_input
) != B_CANCEL
)
146 edit
->replace_mode
= 0;
150 *replace_text
= NULL
;
154 g_strfreev (list_of_types
);
158 /* --------------------------------------------------------------------------------------------- */
161 editcmd_dialog_search_show (WEdit
* edit
)
166 gchar
**list_of_types
= mc_search_get_types_strings_array (&num_of_types
);
167 int SEARCH_DLG_HEIGHT
= SEARCH_DLG_MIN_HEIGHT
+ num_of_types
- SEARCH_DLG_HEIGHT_SUPPLY
;
172 QuickWidget quick_widgets
[] = {
174 QUICK_BUTTON (6, 10, 11, SEARCH_DLG_HEIGHT
, N_("&Cancel"), B_CANCEL
, NULL
),
176 QUICK_BUTTON (4, 10, 11, SEARCH_DLG_HEIGHT
, N_("&Find all"), B_USER
, NULL
),
178 QUICK_BUTTON (2, 10, 11, SEARCH_DLG_HEIGHT
, N_("&OK"), B_ENTER
, NULL
),
181 QUICK_CHECKBOX (33, SEARCH_DLG_WIDTH
, 9, SEARCH_DLG_HEIGHT
, N_("All charsets"),
182 &edit_search_options
.all_codepages
),
185 QUICK_CHECKBOX (33, SEARCH_DLG_WIDTH
, 8, SEARCH_DLG_HEIGHT
, N_("&Whole words"),
186 &edit_search_options
.whole_words
),
188 QUICK_CHECKBOX (33, SEARCH_DLG_WIDTH
, 7, SEARCH_DLG_HEIGHT
, N_("In se&lection"),
189 &edit_search_options
.only_in_selection
),
191 QUICK_CHECKBOX (33, SEARCH_DLG_WIDTH
, 6, SEARCH_DLG_HEIGHT
, N_("&Backwards"),
192 &edit_search_options
.backwards
),
194 QUICK_CHECKBOX (33, SEARCH_DLG_WIDTH
, 5, SEARCH_DLG_HEIGHT
, N_("Case &sensitive"),
195 &edit_search_options
.case_sens
),
197 QUICK_RADIO (3, SEARCH_DLG_WIDTH
, 5, SEARCH_DLG_HEIGHT
,
198 num_of_types
, (const char **) list_of_types
,
199 (int *) &edit_search_options
.type
),
201 QUICK_INPUT (3, SEARCH_DLG_WIDTH
, 3, SEARCH_DLG_HEIGHT
,
202 INPUT_LAST_TEXT
, SEARCH_DLG_WIDTH
- 6, 0,
203 MC_HISTORY_SHARED_SEARCH
, &search_text
),
205 QUICK_LABEL (3, SEARCH_DLG_WIDTH
, 2, SEARCH_DLG_HEIGHT
, N_("Enter search string:")),
210 size_t last_checkbox
= 7;
212 size_t last_checkbox
= 6;
215 QuickDialog Quick_input
= {
216 SEARCH_DLG_WIDTH
, SEARCH_DLG_HEIGHT
, -1, -1, N_("Search"),
217 "[Input Line Keys]", quick_widgets
, NULL
, TRUE
221 char **list_of_types_nls
;
224 Quick_input
.title
= _(Quick_input
.title
);
226 for (i
= 0; i
< 3; i
++)
227 quick_widgets
[i
].u
.button
.text
= _(quick_widgets
[i
].u
.button
.text
);
229 for (i
= 3; i
<= last_checkbox
; i
++)
230 quick_widgets
[i
].u
.checkbox
.text
= _(quick_widgets
[i
].u
.checkbox
.text
);
232 quick_widgets
[10].u
.label
.text
= _(quick_widgets
[10].u
.label
.text
);
235 /* create copy of radio items to avoid memory leak */
236 list_of_types_nls
= g_new0 (char *, num_of_types
+ 1);
237 for (i
= 0; i
< num_of_types
; i
++)
238 list_of_types_nls
[i
] = g_strdup (_(list_of_types
[i
]));
239 g_strfreev (list_of_types
);
240 list_of_types
= list_of_types_nls
;
241 quick_widgets
[last_checkbox
+ 1].u
.radio
.items
= (const char **) list_of_types
;
244 /* calculate widget coordinates */
248 gchar
**radio
= list_of_types
;
249 int b0_len
, b1_len
, b2_len
;
250 const int button_gap
= 2;
252 /* length of radiobuttons */
253 while (*radio
!= NULL
)
255 len
= max (len
, str_term_width1 (*radio
));
258 /* length of checkboxes */
259 for (i
= 3; i
<= last_checkbox
; i
++)
260 len
= max (len
, str_term_width1 (quick_widgets
[i
].u
.checkbox
.text
) + 4);
262 /* preliminary dialog width */
263 dlg_width
= max (len
* 2, str_term_width1 (Quick_input
.title
)) + 4;
265 /* length of buttons */
266 b0_len
= str_term_width1 (quick_widgets
[0].u
.button
.text
) + 3;
267 b1_len
= str_term_width1 (quick_widgets
[1].u
.button
.text
) + 3;
268 b2_len
= str_term_width1 (quick_widgets
[2].u
.button
.text
) + 5; /* default button */
269 len
= b0_len
+ b1_len
+ b2_len
+ button_gap
* 2;
272 Quick_input
.xlen
= max (SEARCH_DLG_WIDTH
, max (dlg_width
, len
+ 6));
274 /* correct widget coordinates */
275 for (i
= 0; i
< sizeof (quick_widgets
) / sizeof (quick_widgets
[0]); i
++)
276 quick_widgets
[i
].x_divisions
= Quick_input
.xlen
;
278 /* checkbox positions */
279 for (i
= 3; i
<= last_checkbox
; i
++)
280 quick_widgets
[i
].relative_x
= Quick_input
.xlen
/ 2 + 2;
282 quick_widgets
[last_checkbox
+ 2].u
.input
.len
= Quick_input
.xlen
- 6;
283 /* button positions */
284 quick_widgets
[2].relative_x
= Quick_input
.xlen
/ 2 - len
/ 2;
285 quick_widgets
[1].relative_x
= quick_widgets
[2].relative_x
+ b2_len
+ button_gap
;
286 quick_widgets
[0].relative_x
= quick_widgets
[1].relative_x
+ b1_len
+ button_gap
;
289 dialog_result
= quick_dialog (&Quick_input
);
291 g_strfreev (list_of_types
);
293 if ((dialog_result
== B_CANCEL
) || (search_text
== NULL
) || (search_text
[0] == '\0'))
295 g_free (search_text
);
299 if (dialog_result
== B_USER
)
300 search_create_bookmark
= TRUE
;
306 tmp
= str_convert_to_input (search_text
);
309 g_free (search_text
);
310 search_text
= g_string_free (tmp
, FALSE
);
315 g_free (edit
->last_search_string
);
316 edit
->last_search_string
= search_text
;
317 mc_search_free (edit
->search
);
319 edit
->search
= mc_search_new (edit
->last_search_string
, -1);
320 if (edit
->search
!= NULL
)
322 edit
->search
->search_type
= edit_search_options
.type
;
323 edit
->search
->is_all_charsets
= edit_search_options
.all_codepages
;
324 edit
->search
->is_case_sensitive
= edit_search_options
.case_sens
;
325 edit
->search
->whole_words
= edit_search_options
.whole_words
;
326 edit
->search
->search_fn
= edit_search_cmd_callback
;
329 return (edit
->search
!= NULL
);
332 /* --------------------------------------------------------------------------------------------- */
333 /* gets a raw key from the keyboard. Passing cancel = 1 draws
334 a cancel button thus allowing c-c etc. Alternatively, cancel = 0
335 will return the next key pressed. ctrl-a (=B_CANCEL), ctrl-g, ctrl-c,
336 and Esc are cannot returned */
339 editcmd_dialog_raw_key_query (const char *heading
, const char *query
, int cancel
)
341 int w
= str_term_width1 (query
) + 7;
343 struct Dlg_head
*raw_dlg
=
344 create_dlg (TRUE
, 0, 0, 7, w
, dialog_colors
, editcmd_dialog_raw_key_query_cb
,
345 NULL
, heading
, DLG_CENTER
| DLG_TRYUP
| DLG_WANT_TAB
);
346 add_widget (raw_dlg
, input_new (3 - cancel
, w
- 5, input_get_default_colors (),
347 2, "", 0, INPUT_COMPLETE_DEFAULT
));
348 add_widget (raw_dlg
, label_new (3 - cancel
, 2, query
));
350 add_widget (raw_dlg
, button_new (4, w
/ 2 - 5, B_CANCEL
, NORMAL_BUTTON
, _("Cancel"), 0));
351 w
= run_dlg (raw_dlg
);
352 destroy_dlg (raw_dlg
);
355 if (w
== XCTRL ('g') || w
== XCTRL ('c') || w
== ESC_CHAR
|| w
== B_CANCEL
)
362 /* --------------------------------------------------------------------------------------------- */
363 /* let the user select its preferred completion */
366 editcmd_dialog_completion_show (WEdit
* edit
, int max_len
, int word_len
,
367 struct selection
*compl, int num_compl
)
370 int start_x
, start_y
, offset
, i
;
373 WListbox
*compl_list
;
374 int compl_dlg_h
; /* completion dialog height */
375 int compl_dlg_w
; /* completion dialog width */
377 /* calculate the dialog metrics */
378 compl_dlg_h
= num_compl
+ 2;
379 compl_dlg_w
= max_len
+ 4;
380 start_x
= edit
->curs_col
+ edit
->start_col
- (compl_dlg_w
/ 2) +
381 EDIT_TEXT_HORIZONTAL_OFFSET
+ option_line_state_width
;
382 start_y
= edit
->curs_row
+ EDIT_TEXT_VERTICAL_OFFSET
+ 1;
386 if (compl_dlg_w
> COLS
)
388 if (compl_dlg_h
> LINES
- 2)
389 compl_dlg_h
= LINES
- 2;
391 offset
= start_x
+ compl_dlg_w
- COLS
;
394 offset
= start_y
+ compl_dlg_h
- LINES
;
396 start_y
-= (offset
+ 1);
398 /* create the dialog */
400 create_dlg (TRUE
, start_y
, start_x
, compl_dlg_h
, compl_dlg_w
,
401 dialog_colors
, NULL
, "[Completion]", NULL
, DLG_COMPACT
);
403 /* create the listbox */
404 compl_list
= listbox_new (1, 1, compl_dlg_h
- 2, compl_dlg_w
- 2, FALSE
, NULL
);
407 add_widget (compl_dlg
, compl_list
);
409 /* fill the listbox with the completions */
410 for (i
= num_compl
- 1; i
>= 0; i
--) /* reverse order */
411 listbox_add_item (compl_list
, LISTBOX_APPEND_AT_END
, 0, (char *) compl[i
].text
, NULL
);
413 /* pop up the dialog and apply the choosen completion */
414 if (run_dlg (compl_dlg
) == B_ENTER
)
416 listbox_get_current (compl_list
, &curr
, NULL
);
420 GString
*temp
, *temp2
;
421 temp
= g_string_new ("");
422 for (curr
+= word_len
; *curr
; curr
++)
423 g_string_append_c (temp
, *curr
);
425 temp2
= str_convert_to_input (temp
->str
);
427 if (temp2
&& temp2
->len
)
429 g_string_free (temp
, TRUE
);
433 g_string_free (temp2
, TRUE
);
434 for (curr
= temp
->str
; *curr
; curr
++)
435 edit_insert (edit
, *curr
);
436 g_string_free (temp
, TRUE
);
438 for (curr
+= word_len
; *curr
; curr
++)
439 edit_insert (edit
, *curr
);
444 /* destroy dialog before return */
445 destroy_dlg (compl_dlg
);
448 /* --------------------------------------------------------------------------------------------- */
449 /* let the user select where function definition */
452 editcmd_dialog_select_definition_show (WEdit
* edit
, char *match_expr
, int max_len
, int word_len
,
453 etags_hash_t
* def_hash
, int num_lines
)
456 int start_x
, start_y
, offset
, i
;
458 etags_hash_t
*curr_def
= NULL
;
461 int def_dlg_h
; /* dialog height */
462 int def_dlg_w
; /* dialog width */
463 char *label_def
= NULL
;
466 /* calculate the dialog metrics */
467 def_dlg_h
= num_lines
+ 2;
468 def_dlg_w
= max_len
+ 4;
469 start_x
= edit
->curs_col
+ edit
->start_col
- (def_dlg_w
/ 2) +
470 EDIT_TEXT_HORIZONTAL_OFFSET
+ option_line_state_width
;
471 start_y
= edit
->curs_row
+ EDIT_TEXT_VERTICAL_OFFSET
+ 1;
475 if (def_dlg_w
> COLS
)
477 if (def_dlg_h
> LINES
- 2)
478 def_dlg_h
= LINES
- 2;
480 offset
= start_x
+ def_dlg_w
- COLS
;
483 offset
= start_y
+ def_dlg_h
- LINES
;
485 start_y
-= (offset
+ 1);
487 /* create the dialog */
488 def_dlg
= create_dlg (TRUE
, start_y
, start_x
, def_dlg_h
, def_dlg_w
,
489 dialog_colors
, NULL
, "[Definitions]", match_expr
, DLG_COMPACT
);
491 /* create the listbox */
492 def_list
= listbox_new (1, 1, def_dlg_h
- 2, def_dlg_w
- 2, FALSE
, NULL
);
495 add_widget (def_dlg
, def_list
);
497 /* fill the listbox with the completions */
498 for (i
= 0; i
< num_lines
; i
++)
501 g_strdup_printf ("%s -> %s:%ld", def_hash
[i
].short_define
, def_hash
[i
].filename
,
503 listbox_add_item (def_list
, LISTBOX_APPEND_AT_END
, 0, label_def
, &def_hash
[i
]);
507 /* pop up the dialog and apply the choosen completion */
508 if (run_dlg (def_dlg
) == B_ENTER
)
510 char *tmp_curr_def
= (char *) curr_def
;
513 listbox_get_current (def_list
, &curr
, (void **) &tmp_curr_def
);
514 curr_def
= (etags_hash_t
*) tmp_curr_def
;
517 if (!edit_query_dialog2
519 _("Current text was modified without a file save.\n"
520 "Continue discards these changes."), _("C&ontinue"), _("&Cancel")))
522 edit
->force
|= REDRAW_COMPLETELY
;
531 if (curr
&& do_moveto
)
533 if (edit_stack_iterator
+ 1 < MAX_HISTORY_MOVETO
)
535 g_free (edit_history_moveto
[edit_stack_iterator
].filename
);
538 edit_history_moveto
[edit_stack_iterator
].filename
=
539 g_strdup_printf ("%s/%s", edit
->dir
, edit
->filename
);
543 edit_history_moveto
[edit_stack_iterator
].filename
= g_strdup (edit
->filename
);
545 edit_history_moveto
[edit_stack_iterator
].line
= edit
->start_line
+
547 edit_stack_iterator
++;
548 g_free (edit_history_moveto
[edit_stack_iterator
].filename
);
549 edit_history_moveto
[edit_stack_iterator
].filename
=
550 g_strdup ((char *) curr_def
->fullpath
);
551 edit_history_moveto
[edit_stack_iterator
].line
= curr_def
->line
;
552 edit_reload_line (edit
, edit_history_moveto
[edit_stack_iterator
].filename
,
553 edit_history_moveto
[edit_stack_iterator
].line
);
558 /* clear definition hash */
559 for (i
= 0; i
< MAX_DEFINITIONS
; i
++)
561 g_free (def_hash
[i
].filename
);
564 /* destroy dialog before return */
565 destroy_dlg (def_dlg
);
568 /* --------------------------------------------------------------------------------------------- */
571 editcmd_dialog_replace_prompt_show (WEdit
* edit
, char *from_text
, char *to_text
, int xpos
,
582 char *repl_from
, *repl_to
;
583 char tmp
[BUF_MEDIUM
];
585 QuickWidget quick_widgets
[] = {
586 /* 0 */ QUICK_BUTTON (44, dlg_width
, 6, dlg_height
, N_("&Cancel"), B_CANCEL
, NULL
),
587 /* 1 */ QUICK_BUTTON (29, dlg_width
, 6, dlg_height
, N_("&Skip"), B_SKIP_REPLACE
, NULL
),
588 /* 2 */ QUICK_BUTTON (21, dlg_width
, 6, dlg_height
, N_("A&ll"), B_REPLACE_ALL
, NULL
),
589 /* 3 */ QUICK_BUTTON (4, dlg_width
, 6, dlg_height
, N_("&Replace"), B_ENTER
, NULL
),
590 /* 4 */ QUICK_LABEL (3, dlg_width
, 2, dlg_height
, NULL
),
591 /* 5 */ QUICK_LABEL (3, dlg_width
, 3, dlg_height
, N_("Replace with:")),
592 /* 6 */ QUICK_LABEL (3, dlg_width
, 4, dlg_height
, NULL
),
597 for (i
= 0; i
< 4; i
++)
598 quick_widgets
[i
].u
.button
.text
= _(quick_widgets
[i
].u
.button
.text
);
601 /* calculate button positions */
604 for (i
= 3; i
> -1; i
--)
606 quick_widgets
[i
].relative_x
= btn_pos
;
607 btn_pos
+= str_term_width1 (quick_widgets
[i
].u
.button
.text
) + 5;
608 if (i
== 3) /* default button */
612 dlg_width
= btn_pos
+ 2;
614 /* correct widget coordinates */
615 for (i
= 0; i
< 7; i
++)
616 quick_widgets
[i
].x_divisions
= dlg_width
;
618 g_snprintf (tmp
, sizeof (tmp
), "\"%s\"", from_text
);
619 repl_from
= g_strdup (str_fit_to_term (tmp
, dlg_width
- 7, J_LEFT
));
621 g_snprintf (tmp
, sizeof (tmp
), "\"%s\"", to_text
);
622 repl_to
= g_strdup (str_fit_to_term (tmp
, dlg_width
- 7, J_LEFT
));
624 quick_widgets
[4].u
.label
.text
= repl_from
;
625 quick_widgets
[6].u
.label
.text
= repl_to
;
628 xpos
= (edit
->num_widget_columns
- dlg_width
) / 2;
631 ypos
= edit
->num_widget_lines
* 2 / 3;
634 QuickDialog Quick_input
= {
635 dlg_width
, dlg_height
, 0, 0, N_("Confirm replace"),
636 "[Input Line Keys]", quick_widgets
, NULL
, FALSE
639 /* Sometimes menu can hide replaced text. I don't like it */
640 if ((edit
->curs_row
>= ypos
- 1) && (edit
->curs_row
<= ypos
+ dlg_height
- 1))
643 Quick_input
.ypos
= ypos
;
644 Quick_input
.xpos
= xpos
;
646 retval
= quick_dialog (&Quick_input
);
654 /* --------------------------------------------------------------------------------------------- */