2003-02-17 17:12:50 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file insetbase.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author none
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-02-17 17:12:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INSETBASE_H
|
|
|
|
#define INSETBASE_H
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
#include <string>
|
2003-02-18 11:47:16 +00:00
|
|
|
#include <vector>
|
2003-07-27 15:52:05 +00:00
|
|
|
#include <memory>
|
2003-02-18 11:47:16 +00:00
|
|
|
|
2003-09-18 20:18:39 +00:00
|
|
|
class Buffer;
|
2003-03-10 13:33:39 +00:00
|
|
|
class BufferView;
|
2004-01-30 11:41:12 +00:00
|
|
|
class CursorSlice;
|
2004-01-15 11:58:35 +00:00
|
|
|
class DispatchResult;
|
2003-02-18 11:47:16 +00:00
|
|
|
class FuncRequest;
|
2004-02-20 17:19:53 +00:00
|
|
|
class FuncStatus;
|
2004-01-15 11:58:35 +00:00
|
|
|
class LaTeXFeatures;
|
2004-01-20 14:25:24 +00:00
|
|
|
class LCursor;
|
2004-01-26 10:13:15 +00:00
|
|
|
class LyXLex;
|
|
|
|
class LyXText;
|
2004-01-15 11:58:35 +00:00
|
|
|
class MathInset;
|
2003-05-30 06:48:24 +00:00
|
|
|
class MetricsInfo;
|
2003-06-02 10:03:27 +00:00
|
|
|
class Dimension;
|
2003-05-30 06:48:24 +00:00
|
|
|
class PainterInfo;
|
2004-01-26 10:13:15 +00:00
|
|
|
class OutputParams;
|
2004-01-15 11:58:35 +00:00
|
|
|
class UpdatableInset;
|
2003-02-17 17:12:50 +00:00
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
namespace lyx { namespace graphics { class PreviewLoader; } }
|
|
|
|
|
|
|
|
|
2004-01-30 11:41:12 +00:00
|
|
|
|
2003-02-17 17:12:50 +00:00
|
|
|
/// Common base class to all insets
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
// Do not add _any_ (non-static) data members as this would inflate
|
|
|
|
// everything storing large quantities of insets. Mathed e.g. would
|
|
|
|
// suffer.
|
|
|
|
|
2003-02-17 17:12:50 +00:00
|
|
|
class InsetBase {
|
|
|
|
public:
|
2003-06-02 10:03:27 +00:00
|
|
|
///
|
2004-01-13 12:28:35 +00:00
|
|
|
typedef ptrdiff_t difference_type;
|
2003-06-02 10:03:27 +00:00
|
|
|
/// short of anything else reasonable
|
2004-01-13 12:28:35 +00:00
|
|
|
typedef size_t size_type;
|
2003-02-18 11:47:16 +00:00
|
|
|
/// type for cell indices
|
2004-01-13 12:28:35 +00:00
|
|
|
typedef size_t idx_type;
|
2003-02-18 11:47:16 +00:00
|
|
|
/// type for cursor positions
|
2004-01-13 12:28:35 +00:00
|
|
|
typedef ptrdiff_t pos_type;
|
2003-02-18 11:47:16 +00:00
|
|
|
/// type for row numbers
|
2004-01-13 12:28:35 +00:00
|
|
|
typedef size_t row_type;
|
2003-02-18 11:47:16 +00:00
|
|
|
/// type for column numbers
|
2004-01-13 12:28:35 +00:00
|
|
|
typedef size_t col_type;
|
2003-02-18 11:47:16 +00:00
|
|
|
|
2003-06-16 11:49:38 +00:00
|
|
|
/// virtual base class destructor
|
|
|
|
virtual ~InsetBase() {}
|
|
|
|
/// replicate ourselves
|
2003-07-25 17:11:25 +00:00
|
|
|
virtual std::auto_ptr<InsetBase> clone() const = 0;
|
2003-06-16 11:49:38 +00:00
|
|
|
|
2004-01-15 11:58:35 +00:00
|
|
|
/// identification as math inset
|
|
|
|
virtual MathInset * asMathInset() { return 0; }
|
|
|
|
/// identification as non-math inset
|
|
|
|
virtual UpdatableInset * asUpdatableInset() { return 0; }
|
2004-04-03 08:37:12 +00:00
|
|
|
/// true for 'math' math inset, but not for e.g. mbox
|
2004-02-25 14:39:14 +00:00
|
|
|
virtual bool inMathed() const { return false; }
|
2004-01-15 11:58:35 +00:00
|
|
|
|
2003-02-18 11:47:16 +00:00
|
|
|
// the real dispatcher
|
2004-03-18 12:53:43 +00:00
|
|
|
void dispatch(LCursor & cur, FuncRequest & cmd);
|
2004-02-20 17:19:53 +00:00
|
|
|
/// do we want to handle this event?
|
|
|
|
virtual bool getStatus(LCursor & cur, FuncRequest const & cmd,
|
2004-03-18 13:57:20 +00:00
|
|
|
FuncStatus & status) const;
|
2003-02-18 11:47:16 +00:00
|
|
|
|
2003-11-04 12:36:59 +00:00
|
|
|
/// cursor enters
|
2004-01-20 14:25:24 +00:00
|
|
|
virtual void edit(LCursor & cur, bool left);
|
2003-11-04 12:36:59 +00:00
|
|
|
/// cursor enters
|
2004-02-13 13:51:12 +00:00
|
|
|
virtual InsetBase * editXY(LCursor & cur, int x, int y);
|
2003-11-04 12:36:59 +00:00
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
/// compute the size of the object returned in dim
|
|
|
|
virtual void metrics(MetricsInfo & mi, Dimension & dim) const = 0;
|
|
|
|
/// draw inset and update (xo, yo)-cache
|
2003-05-30 06:48:24 +00:00
|
|
|
virtual void draw(PainterInfo & pi, int x, int y) const = 0;
|
2004-02-02 17:32:56 +00:00
|
|
|
/// draw inset selection if necessary
|
|
|
|
virtual void drawSelection(PainterInfo &, int, int) const {}
|
2004-01-30 11:41:12 +00:00
|
|
|
///
|
|
|
|
virtual bool editing(BufferView * bv) const;
|
|
|
|
/// draw four angular markers
|
|
|
|
void drawMarkers(PainterInfo & pi, int x, int y) const;
|
|
|
|
/// draw two angular markers
|
|
|
|
void drawMarkers2(PainterInfo & pi, int x, int y) const;
|
|
|
|
/// add space for markers
|
|
|
|
void metricsMarkers(Dimension & dim, int framesize = 1) const;
|
|
|
|
/// add space for markers
|
|
|
|
void metricsMarkers2(Dimension & dim, int framesize = 1) const;
|
2004-01-16 10:55:19 +00:00
|
|
|
/// last drawn position for 'important' insets
|
2004-01-30 11:41:12 +00:00
|
|
|
virtual int xo() const { return 0; }
|
2004-01-16 10:55:19 +00:00
|
|
|
/// last drawn position for 'important' insets
|
2004-01-30 11:41:12 +00:00
|
|
|
virtual int yo() const { return 0; }
|
|
|
|
/// set x/y drawing position cache if available
|
|
|
|
virtual void setPosCache(PainterInfo const &, int, int) const {}
|
|
|
|
/// do we cover screen position x/y?
|
|
|
|
virtual bool covers(int x, int y) const;
|
|
|
|
/// get the screen positions of the cursor (see note in cursor.C)
|
|
|
|
virtual void getCursorPos(CursorSlice const & cur, int & x, int & y) const;
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
/// is this an inset that can be moved into?
|
|
|
|
virtual bool isActive() const { return nargs() > 0; }
|
|
|
|
/// Where should we go when we press the up or down cursor key?
|
|
|
|
virtual bool idxUpDown(LCursor & cur, bool up) const;
|
|
|
|
/// Where should we go when we press the up or down cursor key?
|
|
|
|
virtual bool idxUpDown2(LCursor & cur, bool up) const;
|
|
|
|
/// Move one cell to the left
|
|
|
|
virtual bool idxLeft(LCursor &) const { return false; }
|
|
|
|
/// Move one cell to the right
|
|
|
|
virtual bool idxRight(LCursor &) const { return false; }
|
|
|
|
|
|
|
|
/// Move one physical cell up
|
|
|
|
virtual bool idxNext(LCursor &) const { return false; }
|
|
|
|
/// Move one physical cell down
|
|
|
|
virtual bool idxPrev(LCursor &) const { return false; }
|
|
|
|
|
|
|
|
/// Target pos when we enter the inset from the left by pressing "Right"
|
|
|
|
virtual bool idxFirst(LCursor &) const { return false; }
|
|
|
|
/// Target pos when we enter the inset from the right by pressing "Left"
|
|
|
|
virtual bool idxLast(LCursor &) const { return false; }
|
|
|
|
|
|
|
|
/// Delete a cell and move cursor
|
|
|
|
virtual bool idxDelete(idx_type &) { return false; }
|
|
|
|
/// pulls cell after pressing erase
|
|
|
|
virtual void idxGlue(idx_type) {}
|
|
|
|
// returns list of cell indices that are "between" from and to for
|
|
|
|
// selection purposes
|
|
|
|
virtual bool idxBetween(idx_type idx, idx_type from, idx_type to) const;
|
|
|
|
|
|
|
|
/// to which column belongs a cell with a given index?
|
|
|
|
virtual col_type col(idx_type) const { return 0; }
|
|
|
|
/// to which row belongs a cell with a given index?
|
|
|
|
virtual row_type row(idx_type) const { return 0; }
|
|
|
|
/// cell idex corresponding to row and column;
|
|
|
|
virtual idx_type index(row_type row, col_type col) const;
|
|
|
|
/// any additional x-offset when drawing a cell?
|
|
|
|
virtual int cellXOffset(idx_type) const { return 0; }
|
|
|
|
/// any additional y-offset when drawing a cell?
|
|
|
|
virtual int cellYOffset(idx_type) const { return 0; }
|
2004-04-03 08:37:12 +00:00
|
|
|
/// number of embedded cells
|
|
|
|
virtual size_t nargs() const { return 0; }
|
|
|
|
/// number of rows in gridlike structures
|
|
|
|
virtual size_t nrows() const { return 0; }
|
|
|
|
/// number of columns in gridlike structures
|
|
|
|
virtual size_t ncols() const { return 0; }
|
2004-01-26 10:13:15 +00:00
|
|
|
/// is called when the cursor leaves this inset
|
2004-04-05 16:39:52 +00:00
|
|
|
virtual void notifyCursorLeaves(LCursor &) {}
|
2004-01-20 14:25:24 +00:00
|
|
|
|
|
|
|
/// request "external features"
|
|
|
|
virtual void validate(LaTeXFeatures &) const {}
|
|
|
|
/// Appends \c list with all labels found within this inset.
|
|
|
|
virtual void getLabelList(Buffer const &,
|
|
|
|
std::vector<std::string> & /* list */) const {}
|
2004-01-26 10:13:15 +00:00
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
/// describe content if cursor inside
|
|
|
|
virtual void infoize(std::ostream &) const {}
|
|
|
|
/// describe content if cursor behind
|
|
|
|
virtual void infoize2(std::ostream &) const {}
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
/// plain ascii output
|
|
|
|
virtual int plaintext(Buffer const &, std::ostream & os,
|
|
|
|
OutputParams const &) const;
|
|
|
|
/// linuxdoc output
|
|
|
|
virtual int linuxdoc(Buffer const &, std::ostream & os,
|
|
|
|
OutputParams const &) const;
|
|
|
|
/// docbook output
|
|
|
|
virtual int docbook(Buffer const &, std::ostream & os,
|
|
|
|
OutputParams const &) const;
|
|
|
|
|
|
|
|
///
|
|
|
|
enum EDITABLE {
|
|
|
|
///
|
|
|
|
NOT_EDITABLE = 0,
|
|
|
|
///
|
|
|
|
IS_EDITABLE,
|
|
|
|
///
|
|
|
|
HIGHLY_EDITABLE
|
|
|
|
};
|
|
|
|
/// what appears in the minibuffer when opening
|
|
|
|
virtual std::string const editMessage() const;
|
|
|
|
///
|
|
|
|
virtual EDITABLE editable() const;
|
|
|
|
/// can we go further down on mouse click?
|
|
|
|
virtual bool descendable() const { return false; }
|
|
|
|
///
|
|
|
|
virtual bool isTextInset() const { return false; }
|
|
|
|
/// return true if the inset should be removed automatically
|
|
|
|
virtual bool autoDelete() const;
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
/** This is not quite the correct place for this enum. I think
|
|
|
|
the correct would be to let each subclass of Inset declare
|
|
|
|
its own enum code. Actually the notion of an InsetOld::Code
|
|
|
|
should be avoided, but I am not sure how this could be done
|
|
|
|
in a cleaner way. */
|
|
|
|
enum Code {
|
|
|
|
///
|
|
|
|
NO_CODE, // 0
|
|
|
|
///
|
|
|
|
TOC_CODE, // do these insets really need a code? (ale)
|
|
|
|
///
|
|
|
|
QUOTE_CODE,
|
|
|
|
///
|
|
|
|
MARK_CODE,
|
|
|
|
///
|
|
|
|
REF_CODE,
|
|
|
|
///
|
|
|
|
URL_CODE, // 5
|
|
|
|
///
|
|
|
|
HTMLURL_CODE,
|
|
|
|
///
|
|
|
|
SEPARATOR_CODE,
|
|
|
|
///
|
|
|
|
ENDING_CODE,
|
|
|
|
///
|
|
|
|
LABEL_CODE,
|
|
|
|
///
|
|
|
|
NOTE_CODE, // 10
|
|
|
|
///
|
|
|
|
ACCENT_CODE,
|
|
|
|
///
|
|
|
|
MATH_CODE,
|
|
|
|
///
|
|
|
|
INDEX_CODE,
|
|
|
|
///
|
|
|
|
INCLUDE_CODE,
|
|
|
|
///
|
|
|
|
GRAPHICS_CODE, // 15
|
|
|
|
///
|
|
|
|
BIBITEM_CODE,
|
|
|
|
///
|
|
|
|
BIBTEX_CODE,
|
|
|
|
///
|
|
|
|
TEXT_CODE,
|
|
|
|
///
|
|
|
|
ERT_CODE,
|
|
|
|
///
|
|
|
|
FOOT_CODE, // 20
|
|
|
|
///
|
|
|
|
MARGIN_CODE,
|
|
|
|
///
|
|
|
|
FLOAT_CODE,
|
|
|
|
///
|
|
|
|
WRAP_CODE,
|
|
|
|
///
|
|
|
|
SPACE_CODE, // 25
|
|
|
|
///
|
|
|
|
SPECIALCHAR_CODE,
|
|
|
|
///
|
|
|
|
TABULAR_CODE,
|
|
|
|
///
|
|
|
|
EXTERNAL_CODE,
|
|
|
|
#if 0
|
|
|
|
///
|
|
|
|
THEOREM_CODE,
|
|
|
|
#endif
|
|
|
|
///
|
|
|
|
CAPTION_CODE,
|
|
|
|
///
|
|
|
|
MATHMACRO_CODE, // 30
|
|
|
|
///
|
|
|
|
ERROR_CODE,
|
|
|
|
///
|
|
|
|
CITE_CODE,
|
|
|
|
///
|
|
|
|
FLOAT_LIST_CODE,
|
|
|
|
///
|
|
|
|
INDEX_PRINT_CODE,
|
|
|
|
///
|
|
|
|
OPTARG_CODE, // 35
|
|
|
|
///
|
|
|
|
ENVIRONMENT_CODE,
|
|
|
|
///
|
|
|
|
HFILL_CODE,
|
|
|
|
///
|
|
|
|
NEWLINE_CODE,
|
|
|
|
///
|
|
|
|
LINE_CODE,
|
|
|
|
///
|
|
|
|
BRANCH_CODE, // 40
|
|
|
|
///
|
|
|
|
BOX_CODE,
|
|
|
|
///
|
|
|
|
CHARSTYLE_CODE,
|
|
|
|
///
|
|
|
|
VSPACE_CODE,
|
|
|
|
///
|
2004-04-13 06:27:29 +00:00
|
|
|
MATHMACROARG_CODE
|
2004-01-20 14:25:24 +00:00
|
|
|
};
|
2004-03-30 12:36:33 +00:00
|
|
|
|
|
|
|
/** returns the Code corresponding to the \c name.
|
|
|
|
* Eg, translate("branch") == BRANCH_CODE
|
|
|
|
*/
|
|
|
|
static Code translate(std::string const & name);
|
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
/// returns true the inset can hold an inset of given type
|
|
|
|
virtual bool insetAllowed(Code) const { return false; }
|
|
|
|
// if this inset has paragraphs should they be output all as default
|
|
|
|
// paragraphs with "Standard" layout?
|
|
|
|
virtual bool forceDefaultParagraphs(InsetBase const *) const { return false; }
|
|
|
|
///
|
|
|
|
virtual std::string const & getInsetName() const;
|
|
|
|
/// used to toggle insets
|
|
|
|
// is the inset open?
|
|
|
|
virtual bool isOpen() const { return false; }
|
|
|
|
/// open the inset
|
|
|
|
virtual void open() {}
|
|
|
|
/// close the inset
|
|
|
|
virtual void close() {}
|
|
|
|
// should this inset be handled like a normal charater
|
|
|
|
virtual bool isChar() const { return false; }
|
|
|
|
// is this equivalent to a letter?
|
|
|
|
virtual bool isLetter() const { return false; }
|
|
|
|
// is this equivalent to a space (which is BTW different from
|
|
|
|
// a line separator)?
|
|
|
|
virtual bool isSpace() const { return false; }
|
|
|
|
// should we have a non-filled line before this inset?
|
|
|
|
virtual bool display() const { return false; }
|
|
|
|
// should we break lines after this inset?
|
|
|
|
virtual bool isLineSeparator() const { return false; }
|
2004-02-02 17:32:56 +00:00
|
|
|
/// dumps content to lyxerr
|
|
|
|
virtual void dump() const;
|
2004-01-26 10:13:15 +00:00
|
|
|
///
|
|
|
|
virtual void write(Buffer const &, std::ostream &) const {}
|
|
|
|
///
|
|
|
|
virtual void read(Buffer const &, LyXLex &) {}
|
|
|
|
/// returns the number of rows (\n's) of generated tex code.
|
|
|
|
virtual int latex(Buffer const &, std::ostream &,
|
|
|
|
OutputParams const &) const { return 0; }
|
|
|
|
/// returns true to override begin and end inset in file
|
|
|
|
virtual bool directWrite() const;
|
|
|
|
///
|
|
|
|
virtual bool allowSpellCheck() const { return false; }
|
|
|
|
|
|
|
|
/// if this insets owns text cells (e.g. InsetText) return cell num
|
|
|
|
virtual LyXText * getText(int /*num*/) const { return 0; }
|
|
|
|
|
|
|
|
/** Adds a LaTeX snippet to the Preview Loader for transformation
|
|
|
|
* into a bitmap image. Does not start the laoding process.
|
|
|
|
*
|
|
|
|
* Most insets have no interest in this capability, so the method
|
|
|
|
* defaults to empty.
|
|
|
|
*/
|
|
|
|
virtual void addPreview(lyx::graphics::PreviewLoader &) const {}
|
|
|
|
protected:
|
|
|
|
// the real dispatcher
|
2004-03-18 12:53:43 +00:00
|
|
|
virtual void priv_dispatch(LCursor & cur, FuncRequest & cmd);
|
2004-01-26 10:13:15 +00:00
|
|
|
public:
|
2004-01-20 14:25:24 +00:00
|
|
|
/// returns LyX code associated with the inset. Used for TOC, ...)
|
2004-01-26 10:13:15 +00:00
|
|
|
virtual Code lyxCode() const { return NO_CODE; }
|
|
|
|
|
|
|
|
/// -1: text mode, 1: math mode, 0 undecided
|
|
|
|
enum mode_type {UNDECIDED_MODE, TEXT_MODE, MATH_MODE};
|
|
|
|
/// return text or mathmode if that is possible to determine
|
|
|
|
virtual mode_type currentMode() const { return UNDECIDED_MODE; }
|
2004-01-20 14:25:24 +00:00
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
/// is this inset allowed within a font change?
|
|
|
|
virtual bool noFontChange() const { return false; }
|
|
|
|
|
|
|
|
///
|
|
|
|
virtual void markErased();
|
|
|
|
/// pretty arbitrary
|
|
|
|
virtual int width() const { return 10; }
|
|
|
|
/// pretty arbitrary
|
|
|
|
virtual int ascent() const { return 10; }
|
|
|
|
/// pretty arbitrary
|
|
|
|
virtual int descent() const { return 10; }
|
2003-02-17 17:12:50 +00:00
|
|
|
};
|
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns true if pointer argument is valid
|
|
|
|
* and points to an editable inset
|
|
|
|
*/
|
|
|
|
bool isEditableInset(InsetBase const * inset);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* returns true if pointer argument is valid
|
|
|
|
* and points to a highly editable inset
|
|
|
|
*/
|
|
|
|
bool isHighlyEditableInset(InsetBase const * inset);
|
|
|
|
|
2003-02-17 17:12:50 +00:00
|
|
|
#endif
|