Home
last modified time | relevance | path

Searched refs:help_ctx (Results 1 – 15 of 15) sorted by relevance

/dports/devel/py-knack/knack-0.8.2/knack/
H A Dhelp.py124 def __init__(self, help_ctx, delimiters): # pylint: disable=too-many-statements argument
126 self.help_ctx = help_ctx
138 direct_deprecate_info = resolve_deprecate_info(help_ctx.cli_ctx, delimiters)
158 direct_preview_info = resolve_preview_info(help_ctx.cli_ctx, delimiters)
171 if delimiters in help_ctx.cli_ctx.invocation.commands_loader.command_table:
242 def __init__(self, help_ctx, delimiters, parser): argument
244 super().__init__(help_ctx, delimiters)
251 … child = (help_ctx.group_help_cls(self.help_ctx, delimiters, options) if options.is_group()
252 else help_ctx.help_cls(self.help_ctx, delimiters))
266 def __init__(self, help_ctx, delimiters, parser): argument
[all …]
/dports/security/xca/xca-2.4.0/widgets/
H A DHelp.cpp76 void Help::register_ctxhelp_button(QDialog *dlg, const QString &help_ctx) const in register_ctxhelp_button()
81 if (!buttonBox || help_ctx.isEmpty()) in register_ctxhelp_button()
86 buttonBox->setProperty("help_ctx", QVariant(help_ctx)); in register_ctxhelp_button()
89 if (url_by_ctx(help_ctx).count() == 0) { in register_ctxhelp_button()
90 qWarning() << "Unknown help context: " << help_ctx; in register_ctxhelp_button()
H A DXcaDialog.h28 QString desc, QString help_ctx = QString())
35 mainwin->helpdlg->register_ctxhelp_button(this, help_ctx);
H A DHelp.h28 const QString &help_ctx) const;
H A DExportDialog.cpp24 QList<exportType> types, const QString &help_ctx) in ExportDialog() argument
34 mainwin->helpdlg->register_ctxhelp_button(this, help_ctx); in ExportDialog()
H A DExportDialog.h64 const QString &help_ctx = QString());
/dports/sysutils/py-azure-cli-core/azure-cli-core-2.29.2/azure/cli/core/
H A Dfile_util.py16 help_ctx = cli_ctx.help_cls(cli_ctx)
33 help_ctx.update_loaders_with_help_file_contents(cmd.split())
34 help_file = CliGroupHelpFile(help_ctx, cmd, parser) if _is_group(parser) \
35 else CliCommandHelpFile(help_ctx, cmd, parser)
H A D_help_loaders.py26 def __init__(self, help_ctx=None): argument
27 self.help_ctx = help_ctx
182 cmd_loader_map_ref = self.help_ctx.cli_ctx.invocation.commands_loader.cmd_to_loader_map
194 cmd_loader_map_ref = self.help_ctx.cli_ctx.invocation.commands_loader.cmd_to_loader_map
H A D_help.py258 def __init__(self, help_ctx, delimiters): argument
260 super(CliHelpFile, self).__init__(help_ctx, delimiters)
272 return self.help_ctx.cli_ctx.cloud.profile in supported_profiles
276 return self.help_ctx.cli_ctx.cloud.profile not in unsupported_profiles
304 … ordered_loaders = sorted(self.help_ctx.versioned_loaders.values(), key=lambda ldr: ldr.version)
318 def __init__(self, help_ctx, delimiters, parser): argument
319 super(CliCommandHelpFile, self).__init__(help_ctx, delimiters, parser)
/dports/misc/mc/mc-4.8.27/lib/widget/
H A Ddialog.h65 const char *help_ctx; /* Name of the help entry */ member
103 const char *help_ctx, const char *title);
H A Ddialog.c162 ev_help_t event_data = { NULL, h->help_ctx }; in dlg_execute_cmd()
399 widget_mouse_cb_fn mouse_callback, const char *help_ctx, const char *title) in dlg_create() argument
427 new_d->help_ctx = help_ctx; in dlg_create()
/dports/misc/mc-nox11/mc-4.8.27/lib/widget/
H A Ddialog.h65 const char *help_ctx; /* Name of the help entry */ member
103 const char *help_ctx, const char *title);
H A Ddialog.c162 ev_help_t event_data = { NULL, h->help_ctx }; in dlg_execute_cmd()
399 widget_mouse_cb_fn mouse_callback, const char *help_ctx, const char *title) in dlg_create() argument
427 new_d->help_ctx = help_ctx; in dlg_create()
/dports/emulators/dps8m/dps8m-572f79bb4f0f84a8b16c3892c894c2b9ed64b458/src/simh/
H A Dsim_defs.h342 void *help_ctx; /* Context available to help routines */ member
H A Dsim_tmxr.c2784 TMXR *mux = (TMXR *)dptr->help_ctx; in tmxr_attach_help()