1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
/**
* @file
* Pattern Selection Dialog
*
* @authors
* Copyright (C) 2019 Pietro Cerutti <gahr@gahr.ch>
* Copyright (C) 2020-2024 Richard Russon <rich@flatcap.org>
* Copyright (C) 2023-2024 Tóth János <gomba007@gmail.com>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page pattern_dlg_pattern Pattern Selection Dialog
*
* The Pattern Selection Dialog lets the user select a pattern.
*
* This is a @ref gui_simple
*
* ## Windows
*
* | Name | Type | See Also |
* | :----------------------- | :------------- | :------------ |
* | Pattern Selection Dialog | WT_DLG_PATTERN | dlg_pattern() |
*
* **Parent**
* - @ref gui_dialog
*
* **Children**
* - See: @ref gui_simple
*
* ## Data
* - #Menu
* - #Menu::mdata
* - #PatternEntry
*
* The @ref gui_simple holds a Menu. The Pattern Selection Dialog stores its
* data (#PatternEntry) in Menu::mdata.
*
* ## Events
*
* Once constructed, it is controlled by the following events:
*
* | Event Type | Handler |
* | :---------- | :------------------------ |
* | #NT_CONFIG | pattern_config_observer() |
* | #NT_WINDOW | pattern_window_observer() |
*
* The Pattern Selection Dialog doesn't have any specific colours, so it
* doesn't need to support #NT_COLOR.
*
* The Pattern Selection Dialog does not implement MuttWindow::recalc() or
* MuttWindow::repaint().
*
* Some other events are handled by the @ref gui_simple.
*/
#include "config.h"
#include <stdbool.h>
#include <stddef.h>
#include "private.h"
#include "mutt/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "gui/lib.h"
#include "lib.h"
#include "expando/lib.h"
#include "key/lib.h"
#include "menu/lib.h"
#include "expando.h"
#include "functions.h"
#include "mutt_logging.h"
#include "pattern_data.h"
/// Help Bar for the Pattern selection dialog
static const struct Mapping PatternHelp[] = {
// clang-format off
{ N_("Exit"), OP_EXIT },
{ N_("Select"), OP_GENERIC_SELECT_ENTRY },
{ N_("Help"), OP_HELP },
{ NULL, 0 },
// clang-format on
};
/**
* pattern_make_entry - Create a Pattern for the Menu - Implements Menu::make_entry() - @ingroup menu_make_entry
*
* @sa $pattern_format
*/
static int pattern_make_entry(struct Menu *menu, int line, int max_cols, struct Buffer *buf)
{
struct PatternData *pd = menu->mdata;
struct PatternEntry *entry = ARRAY_GET(&pd->entries, line);
const bool c_arrow_cursor = cs_subset_bool(menu->sub, "arrow_cursor");
if (c_arrow_cursor)
{
const char *const c_arrow_string = cs_subset_string(menu->sub, "arrow_string");
if (max_cols > 0)
max_cols -= (mutt_strwidth(c_arrow_string) + 1);
}
const struct Expando *c_pattern_format = cs_subset_expando(NeoMutt->sub, "pattern_format");
return expando_filter(c_pattern_format, PatternRenderCallbacks, entry,
MUTT_FORMAT_ARROWCURSOR, max_cols, NeoMutt->env, buf);
}
/**
* create_pattern_entries - Create the Pattern Entries
* @param pea Pattern Entry Array to fill
*/
static void create_pattern_entries(struct PatternEntryArray *pea)
{
int num_entries = 0;
while (Flags[num_entries].tag != 0)
num_entries++;
/* Add three more hard-coded entries */
ARRAY_RESERVE(pea, num_entries + 3);
struct Buffer *buf = buf_pool_get();
struct PatternEntry entry = { 0 };
for (int i = 0; Flags[i].tag != '\0'; i++)
{
entry.num = i + 1;
buf_printf(buf, "~%c", Flags[i].tag);
entry.tag = buf_strdup(buf);
switch (Flags[i].eat_arg)
{
case EAT_REGEX:
/* L10N:
Pattern Completion Menu argument type: a regular expression
*/
buf_add_printf(buf, " %s", _("EXPR"));
break;
case EAT_RANGE:
case EAT_MESSAGE_RANGE:
/* L10N:
Pattern Completion Menu argument type: a numeric range.
Used by ~m, ~n, ~X, ~z.
*/
buf_add_printf(buf, " %s", _("RANGE"));
break;
case EAT_DATE:
/* L10N:
Pattern Completion Menu argument type: a date range
Used by ~d, ~r.
*/
buf_add_printf(buf, " %s", _("DATERANGE"));
break;
case EAT_QUERY:
/* L10N:
Pattern Completion Menu argument type: a query
Used by ~I.
*/
buf_add_printf(buf, " %s", _("QUERY"));
break;
default:
break;
}
entry.expr = buf_strdup(buf);
entry.desc = mutt_str_dup(_(Flags[i].desc));
ARRAY_ADD(pea, entry);
}
/* Add struct MuttThread patterns manually.
* Note we allocated 3 extra slots for these above. */
/* L10N:
Pattern Completion Menu argument type: a nested pattern.
Used by ~(), ~<(), ~>().
*/
const char *patternstr = _("PATTERN");
entry.num = ARRAY_SIZE(pea) + 1;
entry.tag = mutt_str_dup("~()");
buf_printf(buf, "~(%s)", patternstr);
entry.expr = buf_strdup(buf);
// L10N: Pattern Completion Menu description for ~()
entry.desc = mutt_str_dup(_("messages in threads containing messages matching PATTERN"));
ARRAY_ADD(pea, entry);
entry.num = ARRAY_SIZE(pea) + 1;
entry.tag = mutt_str_dup("~<()");
buf_printf(buf, "~<(%s)", patternstr);
entry.expr = buf_strdup(buf);
// L10N: Pattern Completion Menu description for ~<()
entry.desc = mutt_str_dup(_("messages whose immediate parent matches PATTERN"));
ARRAY_ADD(pea, entry);
entry.num = ARRAY_SIZE(pea) + 1;
entry.tag = mutt_str_dup("~>()");
buf_printf(buf, "~>(%s)", patternstr);
entry.expr = buf_strdup(buf);
// L10N: Pattern Completion Menu description for ~>()
entry.desc = mutt_str_dup(_("messages having an immediate child matching PATTERN"));
ARRAY_ADD(pea, entry);
buf_pool_release(&buf);
}
/**
* pattern_config_observer - Notification that a Config Variable has changed - Implements ::observer_t - @ingroup observer_api
*
* The Address Book Window is affected by changes to `$sort_pattern`.
*/
static int pattern_config_observer(struct NotifyCallback *nc)
{
if (nc->event_type != NT_CONFIG)
return 0;
if (!nc->global_data || !nc->event_data)
return -1;
struct EventConfig *ev_c = nc->event_data;
if (!mutt_str_equal(ev_c->name, "pattern_format"))
return 0;
struct Menu *menu = nc->global_data;
menu_queue_redraw(menu, MENU_REDRAW_FULL);
mutt_debug(LL_DEBUG5, "config done, request WA_RECALC, MENU_REDRAW_FULL\n");
return 0;
}
/**
* pattern_window_observer - Notification that a Window has changed - Implements ::observer_t - @ingroup observer_api
*
* This function is triggered by changes to the windows.
*
* - Delete (this window): clean up the resources held by the Help Bar
*/
static int pattern_window_observer(struct NotifyCallback *nc)
{
if (nc->event_type != NT_WINDOW)
return 0;
if (!nc->global_data || !nc->event_data)
return -1;
if (nc->event_subtype != NT_WINDOW_DELETE)
return 0;
struct MuttWindow *win_menu = nc->global_data;
struct EventWindow *ev_w = nc->event_data;
if (ev_w->win != win_menu)
return 0;
struct Menu *menu = win_menu->wdata;
notify_observer_remove(NeoMutt->sub->notify, pattern_config_observer, menu);
notify_observer_remove(win_menu->notify, pattern_window_observer, win_menu);
mutt_debug(LL_DEBUG5, "window delete done\n");
return 0;
}
/**
* dlg_pattern - Show menu to select a Pattern - @ingroup gui_dlg
* @param buf Buffer for the selected Pattern
* @retval true A selection was made
*
* The Select Pattern Dialog shows the user a help page of Patterns.
* They can select one to auto-complete some functions, e.g. `<limit>`
*/
bool dlg_pattern(struct Buffer *buf)
{
struct PatternData *pd = pattern_data_new();
struct SimpleDialogWindows sdw = simple_dialog_new(MENU_GENERIC, WT_DLG_PATTERN, PatternHelp);
create_pattern_entries(&pd->entries);
struct Menu *menu = sdw.menu;
pd->menu = menu;
pd->buf = buf;
menu->mdata = pd;
menu->mdata_free = pattern_data_free;
menu->make_entry = pattern_make_entry;
menu->max = ARRAY_SIZE(&pd->entries);
// L10N: Pattern completion menu title
sbar_set_title(sdw.sbar, _("Patterns"));
// NT_COLOR is handled by the SimpleDialog
notify_observer_add(NeoMutt->sub->notify, NT_CONFIG, pattern_config_observer, menu);
notify_observer_add(menu->win->notify, NT_WINDOW, pattern_window_observer, menu->win);
struct MuttWindow *old_focus = window_set_focus(menu->win);
// ---------------------------------------------------------------------------
// Event Loop
int op = OP_NULL;
do
{
menu_tagging_dispatcher(menu->win, op);
window_redraw(NULL);
op = km_dokey(MENU_DIALOG, GETCH_NO_FLAGS);
mutt_debug(LL_DEBUG1, "Got op %s (%d)\n", opcodes_get_name(op), op);
if (op < 0)
continue;
if (op == OP_NULL)
{
km_error_key(MENU_GENERIC);
continue;
}
mutt_clear_error();
int rc = pattern_function_dispatcher(sdw.dlg, op);
if (rc == FR_UNKNOWN)
rc = menu_function_dispatcher(menu->win, op);
if (rc == FR_UNKNOWN)
rc = global_function_dispatcher(menu->win, op);
} while (!pd->done);
// ---------------------------------------------------------------------------
bool rc = pd->selection;
window_set_focus(old_focus);
simple_dialog_free(&sdw.dlg);
return rc;
}
|