mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-17 02:05:48 +00:00
c466baaa5b
The current spelling is not strictly wrong, but flagged as unusual or historical by some authorities. It is also found fault with many spell checkers. Thus we decided to move to the more standard "-ible" form once and for all. See #10678 for discussion This part covers the most tricky part: the internal naming. Translations and layouts will follow. This will all also all be backported to 2.3.x, for the sake of backwards compatibility (cherry-picking).
162 lines
5.2 KiB
C++
162 lines
5.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetInfo.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Bo Peng
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_INFO_H
|
|
#define INSET_INFO_H
|
|
|
|
#include "InsetCollapsible.h"
|
|
|
|
namespace lyx {
|
|
|
|
class Cursor;
|
|
|
|
/* InsetInfo displays shortcuts, lyxrc, package and textclass
|
|
availability and menu information in a non-editable boxed InsetText.
|
|
|
|
Output of such an inset may vary from system to system, depending
|
|
on LyX and LaTeX configurations. Two LyX help files, LaTeXConfig.lyx
|
|
and Shortcuts.lyx make heavy use of this inset. The former uses it
|
|
to display the availability of packages and textclasses, the latter
|
|
uses it to display currently used shortcuts.
|
|
|
|
This inset has two arguments: the type and argument of the information. The
|
|
screen and latex output is the content of the information. An InsetInfo can
|
|
have type "shortcuts", "shortcut", "lyxrc", "package", "textclass", "menu",
|
|
or "buffer". Arguments and outputs vary by type.
|
|
|
|
shortcuts: argument of this type of InsetInfo is the name of the LFUN such as
|
|
"math-insert \alpha". The syntax is the same as what is used in the bind
|
|
and ui files. The output of this inset is all shortcuts for this LFUN
|
|
separated by comma.
|
|
|
|
shortcut: the same as shortcuts, but only output the last shortcut.
|
|
|
|
lyxrc: argument is the name of the rc entry such as "bind_file". Look in
|
|
src/LyXRC.h for available entries. The output is the content of this RC
|
|
entry.
|
|
|
|
package: argument is the name of a latex package such as "listings". The
|
|
output is "yes" or "no", indicating the availability of this package.
|
|
|
|
textclass: argument is the name a textclass such as "article". The output is
|
|
"yes" or "no", indicating the availability of this textclass.
|
|
|
|
menu: argument is the name of the LFUN such as "paste". The syntax is the same
|
|
as what is used in the bind and ui files. The output is the menu item that
|
|
triggers this LFUN. For example, "File > Paste", where '>' is actually
|
|
\lyxarrow (an InsetSpecialChar).
|
|
|
|
icon: argument is the name of the LFUN such as "paste". The syntax is the same
|
|
as what is used in the bind and ui files. The output is the icon use in
|
|
the toolbar for this LFUN. Alternatively, argument can be the icon path
|
|
without extension specified with respect to the images directory.
|
|
|
|
buffer: argument can be one of "name", "path", "class". This inset output the
|
|
filename, path, and textclass of this buffer.
|
|
|
|
lyxinfo: argument must (presently) be "version". This inset outputs information
|
|
about the version of LyX currently in use.
|
|
|
|
There is currently no GUI, no menu entry for this inset. A user can define a
|
|
shortcut for "info-insert" (e.g. C-S-I), and
|
|
|
|
1. input the type and argument of this inset, e.g. "menu paste", in
|
|
the work area.
|
|
2. select the text and run "info-insert" (e.g. press C-S-I).
|
|
|
|
An alternative method is to enter command "info-insert type arg" in
|
|
the command buffer (view->Toolbar->Command Buffer).
|
|
|
|
*/
|
|
|
|
class InsetInfo : public InsetCollapsible {
|
|
public:
|
|
enum info_type {
|
|
UNKNOWN_INFO, // Invalid type
|
|
SHORTCUTS_INFO, // Keyboard shortcuts
|
|
SHORTCUT_INFO, // Keyboard shortcut
|
|
LYXRC_INFO, // RC entry
|
|
PACKAGE_INFO, // Availability of package
|
|
TEXTCLASS_INFO, // Availability of textclass
|
|
MENU_INFO, // Which menu item is used for certain function
|
|
ICON_INFO, // which toolbar icon is used for certain function
|
|
BUFFER_INFO, // Buffer related information
|
|
LYX_INFO // LyX version information
|
|
};
|
|
|
|
///
|
|
InsetInfo(Buffer * buf, std::string const & info = std::string());
|
|
///
|
|
InsetCode lyxCode() const { return INFO_CODE; }
|
|
///
|
|
docstring layoutName() const;
|
|
///
|
|
Inset * editXY(Cursor & cur, int x, int y);
|
|
/** FIXME: we would like to do that, but then InsetText::updateBuffer breaks
|
|
* on info insets. Do we need to run this method on InsetInfo contents?
|
|
* Having a InsetInfo that hides an InsetText is really annoying, actually.
|
|
*/
|
|
///bool isActive() const { return false; }
|
|
///
|
|
bool editable() const { return false; }
|
|
///
|
|
bool hasSettings() const { return true; }
|
|
///
|
|
void read(Lexer & lex);
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
std::string infoType() const;
|
|
///
|
|
std::string infoName() const { return name_; }
|
|
///
|
|
bool validateModifyArgument(docstring const & argument) const;
|
|
///
|
|
bool showInsetDialog(BufferView * bv) const;
|
|
///
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
|
///
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
///
|
|
void setInfo(std::string const & info);
|
|
///
|
|
void updateBuffer(ParIterator const & it, UpdateType utype);
|
|
///
|
|
docstring toolTip(BufferView const & bv, int x, int y) const;
|
|
///
|
|
std::string contextMenu(BufferView const &, int, int) const;
|
|
///
|
|
std::string contextMenuName() const;
|
|
/// should paragraph indendation be omitted in any case?
|
|
bool neverIndent() const { return true; }
|
|
|
|
private:
|
|
///
|
|
virtual Inset * clone() const { return new InsetInfo(*this); }
|
|
///
|
|
void error(std::string const & err);
|
|
///
|
|
void setText(docstring const & str);
|
|
// make sure that the other version of setText is still available.
|
|
using InsetCollapsible::setText;
|
|
///
|
|
bool initialized_;
|
|
///
|
|
info_type type_;
|
|
///
|
|
std::string name_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|