mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
76dc2c0d30
and moreover simplifies the code a lot. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23616 a592a061-630c-0410-9148-cb99ea01b6c8
99 lines
2.2 KiB
C++
99 lines
2.2 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 INSETLISTINGS_H
|
|
#define INSETLISTINGS_H
|
|
|
|
#include "LaTeXFeatures.h"
|
|
#include "InsetERT.h"
|
|
#include "InsetListingsParams.h"
|
|
#include "MailInset.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
/** A collapsable text inset for program listings.
|
|
*/
|
|
|
|
|
|
class InsetListings : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetListings(Buffer const &, InsetListingsParams const & par = InsetListingsParams());
|
|
///
|
|
~InsetListings();
|
|
///
|
|
InsetCode lyxCode() const { return LISTINGS_CODE; }
|
|
/// lstinline is inlined, normal listing is displayed
|
|
DisplayType display() const;
|
|
///
|
|
docstring name() const { return from_ascii("Listings"); }
|
|
// Update the counters of this inset and of its contents
|
|
void updateLabels(ParIterator const &);
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
void read(Lexer & lex);
|
|
///
|
|
docstring editMessage() const;
|
|
///
|
|
int latex(odocstream &, OutputParams const &) const;
|
|
///
|
|
void validate(LaTeXFeatures &) const;
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
///
|
|
InsetListingsParams const & params() const { return params_; }
|
|
///
|
|
InsetListingsParams & params() { return params_; }
|
|
private:
|
|
///
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
///
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
|
///
|
|
Inset * clone() const { return new InsetListings(*this); }
|
|
///
|
|
void setButtonLabel();
|
|
///
|
|
docstring getCaption(OutputParams const &) const;
|
|
///
|
|
InsetListingsParams params_;
|
|
};
|
|
|
|
|
|
class InsetListingsMailer : public MailInset {
|
|
public:
|
|
///
|
|
InsetListingsMailer(InsetListings & inset);
|
|
///
|
|
virtual Inset & inset() const { return inset_; }
|
|
///
|
|
virtual std::string const & name() const { return name_; }
|
|
///
|
|
virtual std::string const inset2string(Buffer const &) const;
|
|
///
|
|
static void string2params(std::string const &,
|
|
InsetListingsParams &);
|
|
///
|
|
static std::string const params2string(InsetListingsParams const &);
|
|
private:
|
|
///
|
|
static std::string const name_;
|
|
///
|
|
InsetListings & inset_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|