mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
f924ef2966
This is currently only relevant fo InsetListings, which falls back to a fixed-width encoding under specific conditions. It is now possible to query the inset about that and report the correct encoding in DocIterator::getEncoding. Addresses the second part of #10995
92 lines
2.3 KiB
C++
92 lines
2.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetListings.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_LISTINGS_H
|
|
#define INSET_LISTINGS_H
|
|
|
|
#include "InsetListingsParams.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class LaTeXFeatures;
|
|
struct TexString;
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// InsetListings
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
/// A captionable and collapsible text inset for program listings.
|
|
class InsetListings : public InsetCaptionable
|
|
{
|
|
public:
|
|
///
|
|
InsetListings(Buffer *, InsetListingsParams const & par = InsetListingsParams());
|
|
///
|
|
~InsetListings();
|
|
///
|
|
static void string2params(std::string const &, InsetListingsParams &);
|
|
///
|
|
static std::string params2string(InsetListingsParams const &);
|
|
private:
|
|
///
|
|
bool isLabeled() const { return true; }
|
|
/// false is needed since listings do their own font handling.
|
|
bool inheritFont() const { return false; }
|
|
///
|
|
InsetCode lyxCode() const { return LISTINGS_CODE; }
|
|
/// lstinline is inlined, normal listing is displayed
|
|
DisplayType display() const;
|
|
///
|
|
docstring layoutName() const;
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
void read(Lexer & lex);
|
|
///
|
|
void latex(otexstream &, OutputParams const &) const;
|
|
///
|
|
docstring xhtml(XHTMLStream &, OutputParams const &) const;
|
|
///
|
|
void validate(LaTeXFeatures &) const;
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
///
|
|
InsetListingsParams const & params() const { return params_; }
|
|
///
|
|
InsetListingsParams & params() { return params_; }
|
|
///
|
|
std::string contextMenuName() const;
|
|
///
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
///
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
|
///
|
|
Inset * clone() const { return new InsetListings(*this); }
|
|
///
|
|
docstring const buttonLabel(BufferView const & bv) const;
|
|
///
|
|
TexString getCaption(OutputParams const &) const;
|
|
///
|
|
bool insetAllowed(InsetCode c) const { return c == CAPTION_CODE || c == QUOTE_CODE; }
|
|
///
|
|
Encoding const * forcedEncoding(Encoding const *, Encoding const *) const;
|
|
|
|
///
|
|
InsetListingsParams params_;
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // INSET_LISTINGS_H
|