mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
1f58d53deb
Later, this can be replaces by a backpointer approach, as proposed at bugzilla (note that there are already similar cases such as InComment or InTableCell, so a backpointer approach would need to adapt the OutputParams methos anyway). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28382 a592a061-630c-0410-9148-cb99ea01b6c8
96 lines
2.4 KiB
C++
96 lines
2.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetCaption.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSETCAPTION_H
|
|
#define INSETCAPTION_H
|
|
|
|
#include "InsetText.h"
|
|
|
|
namespace lyx {
|
|
|
|
/** A caption inset
|
|
*/
|
|
class InsetCaption : public InsetText {
|
|
public:
|
|
///
|
|
InsetCaption(Buffer const &);
|
|
///
|
|
std::string const & type() const { return type_; }
|
|
/// return the mandatory argument (LaTeX format) only
|
|
int getArgument(odocstream & os, OutputParams const &) const;
|
|
/// return the optional argument(s) only
|
|
int getOptArg(odocstream & os, OutputParams const &) const;
|
|
/// return the caption text
|
|
int getCaptionText(odocstream & os, OutputParams const &) const;
|
|
private:
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
void read(Lexer & lex);
|
|
///
|
|
DisplayType display() const { return AlignCenter; }
|
|
///
|
|
bool neverIndent() const { return true; }
|
|
///
|
|
InsetCode lyxCode() const { return CAPTION_CODE; }
|
|
///
|
|
docstring editMessage() const;
|
|
///
|
|
void cursorPos(BufferView const & bv,
|
|
CursorSlice const & sl, bool boundary, int & x, int & y) const;
|
|
///
|
|
bool descendable() const { return true; }
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
void edit(Cursor & cur, bool front, EntryDirection entry_from);
|
|
///
|
|
Inset * editXY(Cursor & cur, int x, int y);
|
|
///
|
|
bool insetAllowed(InsetCode code) const;
|
|
///
|
|
bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
|
|
// Update the counters of this inset and of its contents
|
|
void updateLabels(ParIterator const &);
|
|
///
|
|
int latex(odocstream & os, OutputParams const &) const;
|
|
///
|
|
int plaintext(odocstream & os, OutputParams const & runparams) const;
|
|
///
|
|
int docbook(odocstream & os, OutputParams const & runparams) const;
|
|
///
|
|
void setCustomLabel(docstring const & label);
|
|
///
|
|
void addToToc(DocIterator const &);
|
|
///
|
|
virtual bool forcePlainLayout(idx_type = 0) const { return true; }
|
|
/// Captions don't accept alignment, spacing, etc.
|
|
virtual bool allowParagraphCustomization(idx_type = 0) const { return false; }
|
|
///
|
|
Inset * clone() const { return new InsetCaption(*this); }
|
|
|
|
///
|
|
mutable docstring full_label_;
|
|
///
|
|
mutable int labelwidth_;
|
|
///
|
|
std::string type_;
|
|
///
|
|
docstring custom_label_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|