mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
601a8e0192
* buffer_funcs.cpp (updateLabels): new function taking a buffer and a ParIterator as arguments. This one is used to update labels into an InsetText. Cleanup the code to reset depth. Call setLabel for each paragraph, and then updateLabel on each inset it contains. (setCaptionLabels, setCaptions): removed. (setLabel): use Counters::current_float to make caption paragraphs labels. * insets/Inset.h (updateLabels): new virtual method, empty by default; this numbers the inset itself (if relevant) and then all the paragraphs it may contain. * insets/InsetText.cpp (updateLabels): basically calls lyx::updateLabels from buffer_func.cpp. * insets/InsetCaption.cpp (addToToc): use the label constructed by updateLabels. (computeFullLabel): removed. (metrics, plaintext): don't use computeFullLabel. (updateLabels): new method; set the label from Counters::current_float. * insets/InsetWrap.cpp (updateLabels): * insets/InsetFloat.cpp (updateLabel): new method; sets Counters::current_float to the float type. * insets/InsetBranch.cpp (updateLabels): new method; the numbering is reset afterwards if the branch is inactive. (bug 2671) * insets/InsetNote.cpp (updateLabels): new method; the numbering is reset after the underlying InsetText has been numbered. (bug 2671) * insets/InsetTabular.cpp (updateLabels): new method (also handles longtable) * insets/InsetListings.cpp (updateLabels): new method; mimics what is done for Floats (although Listings are not floats technically) * insets/InsetInclude.cpp (getScreenLabel): in the listings case, use the computed label. (updateLabels): new method; that either renumbers the child document or number the current listing. * LyXFunc.cpp (menuNew): do not updateLabels on empty documents (why do we do that at all?) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19482 a592a061-630c-0410-9148-cb99ea01b6c8
108 lines
2.5 KiB
C++
108 lines
2.5 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 InsetERT {
|
|
public:
|
|
///
|
|
InsetListings(BufferParams const &, InsetListingsParams const & par = InsetListingsParams());
|
|
///
|
|
~InsetListings();
|
|
///
|
|
Inset::Code lyxCode() const { return Inset::LISTINGS_CODE; }
|
|
/// lstinline is inlined, normal listing is displayed
|
|
virtual DisplayType display() const;
|
|
///
|
|
docstring name() const { return from_ascii("Listings"); }
|
|
// Update the counters of this inset and of its contents
|
|
virtual void updateLabels(Buffer const &, ParIterator const &);
|
|
///
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
|
///
|
|
void read(Buffer const & buf, Lexer & lex);
|
|
///
|
|
virtual docstring const editMessage() const;
|
|
///
|
|
int latex(Buffer const &, odocstream &, OutputParams const &) const;
|
|
///
|
|
void validate(LaTeXFeatures &) const;
|
|
///
|
|
bool metrics(MetricsInfo &, Dimension &) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
///
|
|
void getDrawFont(Font &) const;
|
|
///
|
|
InsetListingsParams const & params() const { return params_; }
|
|
///
|
|
InsetListingsParams & params() { return params_; }
|
|
protected:
|
|
InsetListings(InsetListings const &);
|
|
///
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
///
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
|
private:
|
|
virtual std::auto_ptr<Inset> doClone() const;
|
|
///
|
|
void init();
|
|
///
|
|
void setButtonLabel();
|
|
///
|
|
docstring getCaption(Buffer const &, 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
|