mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
996505c2ae
as to allow us to call the routine when we are preparing for output and so to do certain things we might not want to do every time. This is an abuse of updateLabels(), in a way, but updateLabels() long ago became the general recurse-through-the-Buffer routine, and to implement the sort of thing I want to do here in validate(), say, much of the code in updateLabels()---in particular, the counter-update code---would have to be duplicated. So I believe this is the best, and easiest, way to go. Actual use of the new argument will follow. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32318 a592a061-630c-0410-9148-cb99ea01b6c8
89 lines
2.2 KiB
C++
89 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 INSET_LISTINGS_H
|
|
#define INSET_LISTINGS_H
|
|
|
|
#include "LaTeXFeatures.h"
|
|
#include "InsetERT.h"
|
|
#include "InsetListingsParams.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// InsetListings
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
/// A collapsable text inset for program listings.
|
|
class InsetListings : public InsetCollapsable
|
|
{
|
|
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; }
|
|
///
|
|
bool noFontChange() const { return true; }
|
|
///
|
|
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 &, bool);
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
void read(Lexer & lex);
|
|
///
|
|
int latex(odocstream &, OutputParams const &) const;
|
|
///
|
|
docstring xhtml(odocstream &, OutputParams const &) const;
|
|
///
|
|
void validate(LaTeXFeatures &) const;
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
///
|
|
InsetListingsParams const & params() const { return params_; }
|
|
///
|
|
InsetListingsParams & params() { return params_; }
|
|
///
|
|
docstring contextMenu(BufferView const & bv, int x, int y) 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;
|
|
///
|
|
docstring getCaption(OutputParams const &) const;
|
|
|
|
///
|
|
InsetListingsParams params_;
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // INSET_LISTINGS_H
|