2003-02-17 17:12:50 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2007-04-29 13:39:47 +00:00
|
|
|
* \file Inset.h
|
2003-02-17 17:12:50 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2007-04-29 12:32:14 +00:00
|
|
|
* \author Alejandro Aguilar Sierra
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Jürgen Vigna
|
|
|
|
* \author Lars Gullik Bjønnes
|
2007-04-29 12:32:14 +00:00
|
|
|
* \author Matthias Ettrich
|
2003-02-17 17:12:50 +00:00
|
|
|
*
|
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
|
|
|
|
|
2007-10-25 12:41:02 +00:00
|
|
|
#include "ColorCode.h"
|
2007-10-13 09:04:52 +00:00
|
|
|
#include "InsetCode.h"
|
2008-09-13 10:10:01 +00:00
|
|
|
#include "Layout.h"
|
2007-10-13 09:04:52 +00:00
|
|
|
|
2007-11-01 22:17:22 +00:00
|
|
|
#include "support/strfwd.h"
|
2008-03-15 00:02:41 +00:00
|
|
|
#include "support/types.h"
|
2006-11-28 15:15:49 +00:00
|
|
|
|
2003-02-18 11:47:16 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
2006-10-20 09:29:19 +00:00
|
|
|
|
2007-08-20 17:04:36 +00:00
|
|
|
class BiblioInfo;
|
2003-09-18 20:18:39 +00:00
|
|
|
class Buffer;
|
2007-01-23 21:53:16 +00:00
|
|
|
class BufferParams;
|
2003-03-10 13:33:39 +00:00
|
|
|
class BufferView;
|
2007-08-30 18:03:17 +00:00
|
|
|
class Change;
|
2008-03-15 00:02:41 +00:00
|
|
|
class CompletionList;
|
2007-08-30 18:03:17 +00:00
|
|
|
class Cursor;
|
2004-01-30 11:41:12 +00:00
|
|
|
class CursorSlice;
|
2007-11-01 22:17:22 +00:00
|
|
|
class Dimension;
|
2008-02-22 20:45:18 +00:00
|
|
|
class DocIterator;
|
2003-02-18 11:47:16 +00:00
|
|
|
class FuncRequest;
|
2004-02-20 17:19:53 +00:00
|
|
|
class FuncStatus;
|
2007-11-02 21:27:41 +00:00
|
|
|
class InsetCollapsable;
|
2007-11-03 18:07:41 +00:00
|
|
|
class InsetIterator;
|
2007-08-13 12:13:17 +00:00
|
|
|
class InsetLayout;
|
2007-10-18 15:29:51 +00:00
|
|
|
class InsetList;
|
2006-09-16 18:11:38 +00:00
|
|
|
class InsetMath;
|
2008-04-11 12:02:10 +00:00
|
|
|
class InsetTabular;
|
2006-03-17 19:45:28 +00:00
|
|
|
class InsetText;
|
2004-01-15 11:58:35 +00:00
|
|
|
class LaTeXFeatures;
|
2007-04-26 11:30:54 +00:00
|
|
|
class Lexer;
|
2007-08-30 18:03:17 +00:00
|
|
|
class MathAtom;
|
2003-05-30 06:48:24 +00:00
|
|
|
class MetricsInfo;
|
2004-01-26 10:13:15 +00:00
|
|
|
class OutputParams;
|
2007-08-30 18:03:17 +00:00
|
|
|
class PainterInfo;
|
|
|
|
class ParConstIterator;
|
|
|
|
class ParIterator;
|
|
|
|
class Text;
|
2006-11-13 16:53:49 +00:00
|
|
|
class TocList;
|
2004-01-26 10:13:15 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace graphics { class PreviewLoader; }
|
2004-01-26 10:13:15 +00:00
|
|
|
|
2004-01-30 11:41:12 +00:00
|
|
|
|
2008-03-15 00:02:41 +00:00
|
|
|
/** returns the InsetCode corresponding to the \c name.
|
|
|
|
* Eg, insetCode("branch") == BRANCH_CODE
|
|
|
|
* Implemented in 'Inset.cpp'.
|
|
|
|
*/
|
|
|
|
InsetCode insetCode(std::string const & name);
|
|
|
|
/// the other way
|
|
|
|
std::string insetName(InsetCode);
|
|
|
|
|
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.
|
|
|
|
|
2007-05-31 12:30:17 +00:00
|
|
|
class Inset {
|
2003-02-17 17:12:50 +00:00
|
|
|
public:
|
2008-02-10 19:52:45 +00:00
|
|
|
///
|
2008-02-11 08:20:13 +00:00
|
|
|
enum EntryDirection {
|
|
|
|
ENTRY_DIRECTION_IGNORE,
|
|
|
|
ENTRY_DIRECTION_RIGHT,
|
|
|
|
ENTRY_DIRECTION_LEFT,
|
2008-02-10 19:52:45 +00:00
|
|
|
};
|
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
|
2007-05-31 12:30:17 +00:00
|
|
|
virtual ~Inset() {}
|
2003-06-16 11:49:38 +00:00
|
|
|
|
2008-02-23 22:32:33 +00:00
|
|
|
/// change associated Buffer
|
2008-03-02 18:14:12 +00:00
|
|
|
/// FIXME this should go.
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual void setBuffer(Buffer & buffer);
|
2008-02-23 22:32:33 +00:00
|
|
|
/// retrieve associated Buffer
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual Buffer & buffer();
|
|
|
|
virtual Buffer const & buffer() const;
|
2008-06-06 03:11:56 +00:00
|
|
|
/// This checks whether the Buffer * actually points to an open
|
|
|
|
/// Buffer. It might not if that Buffer has been closed.
|
|
|
|
bool isBufferValid() const;
|
2008-02-23 22:32:33 +00:00
|
|
|
|
2008-03-03 17:58:26 +00:00
|
|
|
/// initialize view for this inset.
|
2008-03-02 18:14:12 +00:00
|
|
|
/**
|
|
|
|
* This is typically used after this inset is created interactively.
|
|
|
|
* Intented purpose is to sanitize internal state with regard to current
|
2008-03-10 15:30:32 +00:00
|
|
|
* Buffer. The default implementation calls updateLabels(buffer()) is
|
|
|
|
* the inset is labeled.
|
|
|
|
*
|
|
|
|
* \sa isLabeled()
|
2008-03-02 18:14:12 +00:00
|
|
|
**/
|
2008-03-10 15:30:32 +00:00
|
|
|
virtual void initView();
|
|
|
|
/// \return true if this inset is labeled.
|
|
|
|
virtual bool isLabeled() const { return false; }
|
2008-03-02 18:14:12 +00:00
|
|
|
|
2004-01-15 11:58:35 +00:00
|
|
|
/// identification as math inset
|
2006-09-16 18:11:38 +00:00
|
|
|
virtual InsetMath * asInsetMath() { 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; }
|
2007-11-03 18:07:41 +00:00
|
|
|
/// is this inset based on the InsetText class?
|
|
|
|
virtual InsetText * asInsetText() { return 0; }
|
|
|
|
/// is this inset based on the InsetText class?
|
|
|
|
virtual InsetText const * asInsetText() const { return 0; }
|
2007-11-02 21:27:41 +00:00
|
|
|
/// is this inset based on the InsetCollapsable class?
|
|
|
|
virtual InsetCollapsable * asInsetCollapsable() { return 0; }
|
|
|
|
/// is this inset based on the InsetCollapsable class?
|
|
|
|
virtual InsetCollapsable const * asInsetCollapsable() const { return 0; }
|
2008-04-11 12:02:10 +00:00
|
|
|
/// is this inset based on the InsetTabular class?
|
|
|
|
virtual InsetTabular * asInsetTabular() { return 0; }
|
|
|
|
/// is this inset based on the InsetTabular class?
|
|
|
|
virtual InsetTabular const * asInsetTabular() const { return 0; }
|
2007-11-03 18:07:41 +00:00
|
|
|
|
2004-12-02 11:32:14 +00:00
|
|
|
/// the real dispatcher
|
2007-04-26 14:56:30 +00:00
|
|
|
void dispatch(Cursor & cur, FuncRequest & cmd);
|
2004-12-02 11:32:14 +00:00
|
|
|
/**
|
|
|
|
* \returns true if this function made a definitive decision on
|
|
|
|
* whether the inset wants to handle the request \p cmd or not.
|
|
|
|
* The result of this decision is put into \p status.
|
2005-04-13 09:43:58 +00:00
|
|
|
*
|
|
|
|
* Every request that is enabled in this method needs to be handled
|
|
|
|
* in doDispatch(). Normally we have a 1:1 relationship between the
|
|
|
|
* requests handled in getStatus() and doDispatch(), but there are
|
|
|
|
* some exceptions:
|
|
|
|
* - A request that is disabled in getStatus() does not need to
|
|
|
|
* appear in doDispatch(). It is guaranteed that doDispatch()
|
|
|
|
* is never called with this request.
|
2007-04-29 13:39:47 +00:00
|
|
|
* - A few requests are en- or disabled in Inset::getStatus().
|
2005-04-13 09:43:58 +00:00
|
|
|
* These need to be handled in the doDispatch() methods of the
|
2007-04-29 13:39:47 +00:00
|
|
|
* derived insets, since Inset::doDispatch() has not enough
|
2005-04-13 09:43:58 +00:00
|
|
|
* information to handle them.
|
2005-04-22 08:57:22 +00:00
|
|
|
* - LFUN_MOUSE_* need not to be handled in getStatus(), because these
|
|
|
|
* are dispatched directly
|
2004-12-02 11:32:14 +00:00
|
|
|
*/
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual bool getStatus(Cursor & 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
|
2008-02-10 19:52:45 +00:00
|
|
|
virtual void edit(Cursor & cur, bool front,
|
2008-02-11 08:20:13 +00:00
|
|
|
EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
|
2003-11-04 12:36:59 +00:00
|
|
|
/// cursor enters
|
2007-04-29 13:39:47 +00:00
|
|
|
virtual Inset * editXY(Cursor & 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
|
2006-11-28 15:15:49 +00:00
|
|
|
/// \retval true if metrics changed.
|
2007-09-21 20:39:47 +00:00
|
|
|
virtual void metrics(MetricsInfo & mi, Dimension & dim) const = 0;
|
2003-06-02 10:03:27 +00:00
|
|
|
/// 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 {}
|
2008-10-25 10:47:38 +00:00
|
|
|
/// draw inset background if the inset has an own background and a
|
|
|
|
/// selection is drawn by drawSelection.
|
|
|
|
virtual void drawBackground(PainterInfo &, int, int) const {}
|
2004-01-30 11:41:12 +00:00
|
|
|
///
|
2007-12-22 14:38:43 +00:00
|
|
|
virtual bool editing(BufferView const * bv) const;
|
2005-07-15 22:10:25 +00:00
|
|
|
///
|
|
|
|
virtual bool showInsetDialog(BufferView *) const { return false; }
|
2007-01-20 00:55:24 +00:00
|
|
|
|
|
|
|
/// draw inset decoration if necessary.
|
|
|
|
/// This can use \c drawMarkers() for example.
|
|
|
|
virtual void drawDecoration(PainterInfo &, int, int) const {}
|
2007-06-07 21:36:42 +00:00
|
|
|
/// 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;
|
2004-01-30 11:41:12 +00:00
|
|
|
/// 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
|
Move BufferView cached pointer out of LyXText:
* LyXText
- bv(), bv_owner, : deleted.
- These methods now need a (Buffer const &) argument: getFont(), applyOuterFont(), getLayoutFont(), getLabelFont(), setCharFont(), setLayout(), singleWidth(), leftMargin(), rightMargin(), computeRowMetrics(), isMainText(), spacing(), isRTL(), cursorX(), rowBreakPoint(), setRowWidth(), labelFill(), labelEnd().
- These methods now need a (BufferView const &) argument and are propably candidates for future removal when 1.6 is opened for development: redoParagraph(), x2pos(), getRowNearY(), getColumnNearX(), checkInsetHit(), setHeightOfRow().
- recUndo(): now need a LCursor argument.
* CoordCache::get(LyXText const *, pit_type):
- now const.
- use const_iterator instead of iterator.
* FontIterator:
- add (Buffer const &) argument to ctor
- buffer_: new const reference to applicable BufferView.
* InsetBase
- xo(), yo(), covers() and neverIndent() are now const.
* InsetText::setViewCache(): deleted
All other changes are due to the LyXText and InsetBase API changes.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15618 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-30 12:45:33 +00:00
|
|
|
int xo(BufferView const & bv) const;
|
2004-01-16 10:55:19 +00:00
|
|
|
/// last drawn position for 'important' insets
|
Move BufferView cached pointer out of LyXText:
* LyXText
- bv(), bv_owner, : deleted.
- These methods now need a (Buffer const &) argument: getFont(), applyOuterFont(), getLayoutFont(), getLabelFont(), setCharFont(), setLayout(), singleWidth(), leftMargin(), rightMargin(), computeRowMetrics(), isMainText(), spacing(), isRTL(), cursorX(), rowBreakPoint(), setRowWidth(), labelFill(), labelEnd().
- These methods now need a (BufferView const &) argument and are propably candidates for future removal when 1.6 is opened for development: redoParagraph(), x2pos(), getRowNearY(), getColumnNearX(), checkInsetHit(), setHeightOfRow().
- recUndo(): now need a LCursor argument.
* CoordCache::get(LyXText const *, pit_type):
- now const.
- use const_iterator instead of iterator.
* FontIterator:
- add (Buffer const &) argument to ctor
- buffer_: new const reference to applicable BufferView.
* InsetBase
- xo(), yo(), covers() and neverIndent() are now const.
* InsetText::setViewCache(): deleted
All other changes are due to the LyXText and InsetBase API changes.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15618 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-30 12:45:33 +00:00
|
|
|
int yo(BufferView const & bv) const;
|
2004-01-30 11:41:12 +00:00
|
|
|
/// set x/y drawing position cache if available
|
2007-04-29 12:32:14 +00:00
|
|
|
virtual void setPosCache(PainterInfo const &, int, int) const;
|
2007-09-23 22:39:49 +00:00
|
|
|
///
|
|
|
|
void setDimCache(MetricsInfo const &, Dimension const &) const;
|
2004-01-30 11:41:12 +00:00
|
|
|
/// do we cover screen position x/y?
|
Move BufferView cached pointer out of LyXText:
* LyXText
- bv(), bv_owner, : deleted.
- These methods now need a (Buffer const &) argument: getFont(), applyOuterFont(), getLayoutFont(), getLabelFont(), setCharFont(), setLayout(), singleWidth(), leftMargin(), rightMargin(), computeRowMetrics(), isMainText(), spacing(), isRTL(), cursorX(), rowBreakPoint(), setRowWidth(), labelFill(), labelEnd().
- These methods now need a (BufferView const &) argument and are propably candidates for future removal when 1.6 is opened for development: redoParagraph(), x2pos(), getRowNearY(), getColumnNearX(), checkInsetHit(), setHeightOfRow().
- recUndo(): now need a LCursor argument.
* CoordCache::get(LyXText const *, pit_type):
- now const.
- use const_iterator instead of iterator.
* FontIterator:
- add (Buffer const &) argument to ctor
- buffer_: new const reference to applicable BufferView.
* InsetBase
- xo(), yo(), covers() and neverIndent() are now const.
* InsetText::setViewCache(): deleted
All other changes are due to the LyXText and InsetBase API changes.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15618 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-30 12:45:33 +00:00
|
|
|
virtual bool covers(BufferView const & bv, int x, int y) const;
|
2007-04-26 14:56:30 +00:00
|
|
|
/// get the screen positions of the cursor (see note in Cursor.cpp)
|
2006-10-17 16:23:27 +00:00
|
|
|
virtual void cursorPos(BufferView const & bv,
|
|
|
|
CursorSlice const & sl, bool boundary, int & x, int & y) const;
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2007-10-25 09:19:26 +00:00
|
|
|
///
|
|
|
|
virtual bool isFreeSpacing() const { return false; }
|
|
|
|
///
|
|
|
|
virtual bool allowEmpty() const { return false; }
|
2007-11-05 23:44:47 +00:00
|
|
|
/// Force inset into LTR environment if surroundings are RTL?
|
|
|
|
virtual bool forceLTR() const { return false; }
|
2007-10-25 09:19:26 +00:00
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
/// Where should we go when we press the up or down cursor key?
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual bool idxUpDown(Cursor & cur, bool up) const;
|
2007-11-05 19:44:03 +00:00
|
|
|
/// Move one cell backwards
|
|
|
|
virtual bool idxBackward(Cursor &) const { return false; }
|
|
|
|
/// Move one cell forward
|
|
|
|
virtual bool idxForward(Cursor &) const { return false; }
|
2004-01-26 10:13:15 +00:00
|
|
|
|
2007-11-05 19:44:03 +00:00
|
|
|
/// Move to the next cell
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual bool idxNext(Cursor &) const { return false; }
|
2007-11-05 19:44:03 +00:00
|
|
|
/// Move to the previous cell
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual bool idxPrev(Cursor &) const { return false; }
|
2004-01-26 10:13:15 +00:00
|
|
|
|
2007-11-05 19:41:16 +00:00
|
|
|
/// Target pos when we enter the inset while moving forward
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual bool idxFirst(Cursor &) const { return false; }
|
2007-11-05 19:41:16 +00:00
|
|
|
/// Target pos when we enter the inset while moving backwards
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual bool idxLast(Cursor &) const { return false; }
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
/// Delete a cell and move cursor
|
|
|
|
virtual bool idxDelete(idx_type &) { return false; }
|
|
|
|
/// pulls cell after pressing erase
|
|
|
|
virtual void idxGlue(idx_type) {}
|
2005-04-13 09:43:58 +00:00
|
|
|
/// returns list of cell indices that are "between" from and to for
|
|
|
|
/// selection purposes
|
2004-01-26 10:13:15 +00:00
|
|
|
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; }
|
2008-03-12 00:19:07 +00:00
|
|
|
/// cell index corresponding to row and column;
|
2004-01-26 10:13:15 +00:00
|
|
|
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; }
|
2008-02-22 20:45:42 +00:00
|
|
|
/// Is called when the cursor leaves this inset.
|
|
|
|
/// Returns true if cursor is now invalid, e.g. if former
|
|
|
|
/// insets in higher cursor slices of \c old do not exist
|
|
|
|
/// anymore.
|
2008-11-15 17:11:01 +00:00
|
|
|
/// \c old is the old cursor, the last slice points to this.
|
2008-02-22 20:45:42 +00:00
|
|
|
/// \c cur is the new cursor. Use the update flags to cause a redraw.
|
|
|
|
virtual bool notifyCursorLeaves(Cursor const & /*old*/, Cursor & /*cur*/)
|
|
|
|
{ return false; }
|
2008-11-15 17:11:01 +00:00
|
|
|
/// Is called when the cursor enters this inset.
|
|
|
|
/// Returns true if cursor is now invalid, e.g. if former
|
|
|
|
/// insets in higher cursor slices of \c old do not exist
|
|
|
|
/// anymore.
|
|
|
|
/// \c cur is the new cursor, some slice points to this. Use the update flags to cause a redraw.
|
|
|
|
virtual bool notifyCursorEnters(Cursor & /*cur*/)
|
|
|
|
{ return false; }
|
2006-12-04 04:31:18 +00:00
|
|
|
/// is called when the mouse enter or leave this inset
|
|
|
|
/// return true if this inset needs repaint
|
2006-12-05 02:18:29 +00:00
|
|
|
virtual bool setMouseHover(bool) { return false; }
|
2007-06-07 21:36:42 +00:00
|
|
|
/// return true if this inset is hovered (under mouse)
|
|
|
|
/// This is by now only used by mathed to draw corners
|
|
|
|
/// (Inset::drawMarkers() and Inset::drawMarkers2()).
|
|
|
|
/// Other insets do not have to redefine this function to
|
|
|
|
/// return the correct status of mouseHovered.
|
|
|
|
virtual bool mouseHovered() const { return false; }
|
2004-01-20 14:25:24 +00:00
|
|
|
|
|
|
|
/// request "external features"
|
|
|
|
virtual void validate(LaTeXFeatures &) const {}
|
2004-01-26 10:13:15 +00:00
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
/// describe content if cursor inside
|
2006-10-22 10:15:23 +00:00
|
|
|
virtual void infoize(odocstream &) const {}
|
2004-01-20 14:25:24 +00:00
|
|
|
/// describe content if cursor behind
|
2006-10-22 10:15:23 +00:00
|
|
|
virtual void infoize2(odocstream &) const {}
|
2004-01-26 10:13:15 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
enum { PLAINTEXT_NEWLINE = 10000 };
|
2007-02-20 17:52:41 +00:00
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
/// plain text output in ucs4 encoding
|
2007-02-20 17:52:41 +00:00
|
|
|
/// return the number of characters; in case of multiple lines of
|
|
|
|
/// output, add PLAINTEXT_NEWLINE to the number of chars in the last line
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual int plaintext(odocstream &, OutputParams const &) const = 0;
|
2004-01-26 10:13:15 +00:00
|
|
|
/// docbook output
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual int docbook(odocstream & os, OutputParams const &) const;
|
2009-06-05 17:44:35 +00:00
|
|
|
/// LyX HTML output
|
|
|
|
virtual int xhtml(odocstream & os, OutputParams const &) const;
|
2005-11-25 14:40:34 +00:00
|
|
|
/// the string that is passed to the TOC
|
2008-11-10 22:45:14 +00:00
|
|
|
virtual void tocString(odocstream &) const {}
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
/// what appears in the minibuffer when opening
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual docstring editMessage() const;
|
2009-04-22 20:55:13 +00:00
|
|
|
/// can the contents of the inset be edited on screen ?
|
|
|
|
// true for InsetCollapsables (not ButtonOnly) (not InsetInfo), InsetText
|
|
|
|
virtual bool editable() const;
|
|
|
|
/// has the Inset settings that can be modified in a dialog ?
|
|
|
|
virtual bool hasSettings() const;
|
2004-01-26 10:13:15 +00:00
|
|
|
/// can we go further down on mouse click?
|
2009-04-22 20:55:13 +00:00
|
|
|
// true for InsetCaption, InsetCollapsables (not ButtonOnly), InsetTabular
|
2004-01-26 10:13:15 +00:00
|
|
|
virtual bool descendable() const { return false; }
|
2009-04-22 20:55:13 +00:00
|
|
|
/// is this an inset that can be moved into?
|
|
|
|
/// FIXME: merge with editable()
|
|
|
|
// true for InsetTabular & InsetText
|
|
|
|
virtual bool isActive() const { return nargs() > 0; }
|
|
|
|
|
2006-03-17 19:45:28 +00:00
|
|
|
/// does this contain text that can be change track marked in DVI?
|
|
|
|
virtual bool canTrackChanges() const { return false; }
|
2004-01-26 10:13:15 +00:00
|
|
|
/// return true if the inset should be removed automatically
|
|
|
|
virtual bool autoDelete() const;
|
|
|
|
|
2008-02-21 19:42:34 +00:00
|
|
|
/// Returns true if the inset supports completions.
|
|
|
|
virtual bool completionSupported(Cursor const &) const { return false; }
|
|
|
|
/// Returns true if the inset supports inline completions at the
|
|
|
|
/// cursor position. In this case the completion might be stored
|
|
|
|
/// in the BufferView's inlineCompletion property.
|
2008-02-21 20:04:17 +00:00
|
|
|
virtual bool inlineCompletionSupported(Cursor const & /*cur*/) const
|
|
|
|
{ return false; }
|
2008-02-21 19:42:34 +00:00
|
|
|
/// Return true if the inline completion should be automatic.
|
|
|
|
virtual bool automaticInlineCompletion() const { return true; }
|
|
|
|
/// Return true if the popup completion should be automatic.
|
|
|
|
virtual bool automaticPopupCompletion() const { return true; }
|
2008-03-16 17:07:10 +00:00
|
|
|
/// Return true if the cursor should indicate a completion.
|
|
|
|
virtual bool showCompletionCursor() const { return true; }
|
2008-02-21 19:42:34 +00:00
|
|
|
/// Returns completion suggestions at cursor position. Return an
|
|
|
|
/// null pointer if no completion is a available or possible.
|
2008-02-21 23:38:46 +00:00
|
|
|
/// The caller is responsible to free the returned object!
|
2008-02-22 21:11:19 +00:00
|
|
|
virtual CompletionList const * createCompletionList(Cursor const &) const
|
2008-02-21 23:36:02 +00:00
|
|
|
{ return 0; }
|
2008-02-21 19:42:34 +00:00
|
|
|
/// Returns the completion prefix to filter the suggestions for completion.
|
|
|
|
/// This is only called if completionList returned a non-null list.
|
2008-03-15 00:02:41 +00:00
|
|
|
virtual docstring completionPrefix(Cursor const &) const;
|
2008-02-21 19:42:34 +00:00
|
|
|
/// Do a completion at the cursor position. Return true on success.
|
|
|
|
/// The completion does not contain the prefix. If finished is true, the
|
|
|
|
/// completion is final. If finished is false, completion might only be
|
|
|
|
/// a partial completion.
|
2008-02-21 20:04:17 +00:00
|
|
|
virtual bool insertCompletion(Cursor & /*cur*/,
|
|
|
|
docstring const & /*completion*/, bool /*finished*/)
|
|
|
|
{ return false; }
|
2008-02-21 19:42:34 +00:00
|
|
|
/// Get the completion inset position and size
|
2008-02-21 20:04:17 +00:00
|
|
|
virtual void completionPosAndDim(Cursor const &, int & /*x*/, int & /*y*/,
|
|
|
|
Dimension & /*dim*/) const {}
|
2008-02-21 19:42:34 +00:00
|
|
|
|
2005-04-22 08:57:22 +00:00
|
|
|
/// returns true if the inset can hold an inset of given type
|
2007-10-13 09:04:52 +00:00
|
|
|
virtual bool insetAllowed(InsetCode) const { return false; }
|
Fix bug 4037 and related problems. The patch has been cleaned up a bit
from the one posted to the list.
The basic idea has two parts. First, we hard code an "empty layout"
(called PlainLayout, for want of a better name) in TextClass and read it
before doing anything else. It can therefore be customized by classes,
if they want---say, to make it left-aligned. Second, InsetText's are
divided into three types: (i) normal ones, that use the "default" layout
defined by the text class; (ii) highly restrictive ones, such as ERT and
(not quite an inset) table cells, which demand the empty layout; (iii)
middling ones, which default to an empty layout and use the empty layout
in place of the default. (This is so we don't get the same problem we
had with ERT in e.g. footnotes.) The type of inset is signaled by new
methods InsetText::forceEmptyLayout() and InsetText::useEmptyLayout().
(The latter might better be called: useEmptyLayoutInsteadOfDefault(),
but that's silly.) The old InsetText::forceDefaultParagraphs() has been
split into these, plus a new method InsetText::allowParagraphCustomization().
A lot of the changes just adapt to this change.
The other big change is in GuiToolbar: We want to show LyXDefault and
the "default" layout only when they're active.
There are a handful of places where I'm not entirely sure whether we
should be using forceEmptyLayout or !allowParagraphCustomization() or
both. The InsetCaption is one of these. These places, and some others,
are marked with FIXMEs, so I'd appreciate it if people would search
through the patch and let me know whether these need changing. If they
don't, the FIXMEs can be deleted.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22966 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-12 17:31:07 +00:00
|
|
|
/// should this inset use the empty layout by default rather than
|
|
|
|
/// the standard layout? (default: only if that is forced.)
|
2008-07-10 17:41:52 +00:00
|
|
|
virtual bool usePlainLayout() const { return forcePlainLayout(); }
|
Fix bug 4037 and related problems. The patch has been cleaned up a bit
from the one posted to the list.
The basic idea has two parts. First, we hard code an "empty layout"
(called PlainLayout, for want of a better name) in TextClass and read it
before doing anything else. It can therefore be customized by classes,
if they want---say, to make it left-aligned. Second, InsetText's are
divided into three types: (i) normal ones, that use the "default" layout
defined by the text class; (ii) highly restrictive ones, such as ERT and
(not quite an inset) table cells, which demand the empty layout; (iii)
middling ones, which default to an empty layout and use the empty layout
in place of the default. (This is so we don't get the same problem we
had with ERT in e.g. footnotes.) The type of inset is signaled by new
methods InsetText::forceEmptyLayout() and InsetText::useEmptyLayout().
(The latter might better be called: useEmptyLayoutInsteadOfDefault(),
but that's silly.) The old InsetText::forceDefaultParagraphs() has been
split into these, plus a new method InsetText::allowParagraphCustomization().
A lot of the changes just adapt to this change.
The other big change is in GuiToolbar: We want to show LyXDefault and
the "default" layout only when they're active.
There are a handful of places where I'm not entirely sure whether we
should be using forceEmptyLayout or !allowParagraphCustomization() or
both. The InsetCaption is one of these. These places, and some others,
are marked with FIXMEs, so I'd appreciate it if people would search
through the patch and let me know whether these need changing. If they
don't, the FIXMEs can be deleted.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22966 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-12 17:31:07 +00:00
|
|
|
/// if this inset has paragraphs should they be forced to use the
|
|
|
|
/// empty layout?
|
2008-07-10 17:41:52 +00:00
|
|
|
virtual bool forcePlainLayout(idx_type = 0) const { return false; }
|
Fix bug 4037 and related problems. The patch has been cleaned up a bit
from the one posted to the list.
The basic idea has two parts. First, we hard code an "empty layout"
(called PlainLayout, for want of a better name) in TextClass and read it
before doing anything else. It can therefore be customized by classes,
if they want---say, to make it left-aligned. Second, InsetText's are
divided into three types: (i) normal ones, that use the "default" layout
defined by the text class; (ii) highly restrictive ones, such as ERT and
(not quite an inset) table cells, which demand the empty layout; (iii)
middling ones, which default to an empty layout and use the empty layout
in place of the default. (This is so we don't get the same problem we
had with ERT in e.g. footnotes.) The type of inset is signaled by new
methods InsetText::forceEmptyLayout() and InsetText::useEmptyLayout().
(The latter might better be called: useEmptyLayoutInsteadOfDefault(),
but that's silly.) The old InsetText::forceDefaultParagraphs() has been
split into these, plus a new method InsetText::allowParagraphCustomization().
A lot of the changes just adapt to this change.
The other big change is in GuiToolbar: We want to show LyXDefault and
the "default" layout only when they're active.
There are a handful of places where I'm not entirely sure whether we
should be using forceEmptyLayout or !allowParagraphCustomization() or
both. The InsetCaption is one of these. These places, and some others,
are marked with FIXMEs, so I'd appreciate it if people would search
through the patch and let me know whether these need changing. If they
don't, the FIXMEs can be deleted.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22966 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-12 17:31:07 +00:00
|
|
|
/// if this inset has paragraphs should the user be allowed to
|
|
|
|
/// customize alignment, etc?
|
2008-03-19 16:21:33 +00:00
|
|
|
virtual bool allowParagraphCustomization(idx_type = 0) const { return true; }
|
2007-04-21 08:43:46 +00:00
|
|
|
/// Is the width forced to some value?
|
|
|
|
virtual bool hasFixedWidth() const { return false; }
|
2005-01-05 20:21:27 +00:00
|
|
|
|
2008-04-23 10:55:51 +00:00
|
|
|
/// Is the content of this inset part of the output document?
|
|
|
|
virtual bool producesOutput() const { return true; }
|
|
|
|
|
2007-12-25 18:53:38 +00:00
|
|
|
/// \return Tool tip for this inset.
|
|
|
|
/// This default implementation returns an empty string.
|
|
|
|
virtual docstring toolTip(BufferView const & bv, int x, int y) const;
|
2007-11-30 22:16:02 +00:00
|
|
|
|
2007-12-26 12:40:58 +00:00
|
|
|
/// \return Context menu identifier for this inset.
|
|
|
|
/// This default implementation returns an empty string.
|
|
|
|
virtual docstring contextMenu(BufferView const & bv, int x, int y) const;
|
|
|
|
|
2007-11-30 22:16:02 +00:00
|
|
|
// FIXME This should really disappear in favor of
|
|
|
|
// docstring name() const { return from_ascii(insetName(lyxCode()))); }
|
|
|
|
// There's no reason to be using different names in different places.
|
|
|
|
// But to do this we would need to change the file format, since the names
|
|
|
|
// used there don't correspond to what is used here.
|
2004-01-26 10:13:15 +00:00
|
|
|
///
|
2007-11-01 22:17:22 +00:00
|
|
|
virtual docstring name() const;
|
2007-08-13 12:13:17 +00:00
|
|
|
///
|
|
|
|
virtual InsetLayout const & getLayout(BufferParams const & bp) const;
|
2004-01-26 10:13:15 +00:00
|
|
|
/// used to toggle insets
|
2005-04-22 08:57:22 +00:00
|
|
|
/// is the inset open?
|
|
|
|
/// should this inset be handled like a normal charater
|
2004-01-26 10:13:15 +00:00
|
|
|
virtual bool isChar() const { return false; }
|
2005-04-22 08:57:22 +00:00
|
|
|
/// is this equivalent to a letter?
|
2004-01-26 10:13:15 +00:00
|
|
|
virtual bool isLetter() const { return false; }
|
2005-04-22 08:57:22 +00:00
|
|
|
/// is this equivalent to a space (which is BTW different from
|
|
|
|
/// a line separator)?
|
2004-01-26 10:13:15 +00:00
|
|
|
virtual bool isSpace() const { return false; }
|
*** File Format Change: UI and enhancement for InsetSpace ***
* src/insets/InsetSpace.{cpp,h}:
- merge in HFill inset, add support for dotfill, hrulefill,
hspace and hspace*
* src/insets/InsetHFill.{cpp,h}:
- remove
* src/frontends/qt4/GuiHSpace.{cpp,h}:
* src/frontends/qt4/ui/HSpaceUi.ui:
* src/frontends/qt4/GuiView:
- new GUI for Space insets.
* src/insets/Inset.{cpp,h}:
* src/insets/InsetCode.h:
* src/insets/InsetCollapsable.cpp:
* src/insets/InsetCommandParams.cpp:
- remove HFILL_CODE and LFUN_HFILL_INSERT, add SPACE_CODE where necessary,
new Inset member isStretchableSpace() to indicate HFill and friends.
* Buffer.cpp:
- increase format to 319
* lib/lyx2lyx/LyX.py:
* lib/lyx2lyx/lyx_1_6.py:
- conversion/reversion routines
* development/FORMAT:
- document file format change
* src/Makefile.am:
* src/frontends/qt4/Makefile.am:
* development/scons/scons_manifest.py:
- deal with UI changes.
* src/LyXAction.cpp:
- remove LFUN_HFILL_INSERT
* src/LyXFunc.cpp:
- handle space dialog.
* src/factory.cpp:
* src/Paragraph.cpp (isHFill):
* src/Text.cpp:
* src/Text3.cpp:
* src/TextMetrics.cpp:
- adapt to changes
* lib/ui/classic.ui:
* lib/ui/stdmenus.ui:
- add HSpace dialog, remove HFill.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23787 a592a061-630c-0410-9148-cb99ea01b6c8
2008-03-17 09:23:43 +00:00
|
|
|
/// is this an expandible space (rubber length)?
|
|
|
|
virtual bool isStretchableSpace() const { return false; }
|
2007-05-18 14:32:29 +00:00
|
|
|
|
|
|
|
enum DisplayType {
|
|
|
|
Inline = 0,
|
|
|
|
AlignLeft,
|
|
|
|
AlignCenter,
|
|
|
|
AlignRight
|
|
|
|
};
|
2007-05-28 22:27:45 +00:00
|
|
|
|
2005-04-22 08:57:22 +00:00
|
|
|
/// should we have a non-filled line before this inset?
|
2007-05-18 14:32:29 +00:00
|
|
|
virtual DisplayType display() const { return Inline; }
|
2008-09-13 10:10:01 +00:00
|
|
|
///
|
|
|
|
virtual LyXAlignment contentAlignment() const { return LYX_ALIGN_NONE; }
|
2005-04-22 08:57:22 +00:00
|
|
|
/// should we break lines after this inset?
|
2004-01-26 10:13:15 +00:00
|
|
|
virtual bool isLineSeparator() const { return false; }
|
2005-09-10 06:51:58 +00:00
|
|
|
/// should paragraph indendation be ommitted in any case?
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual bool neverIndent() const { return false; }
|
2004-02-02 17:32:56 +00:00
|
|
|
/// dumps content to lyxerr
|
|
|
|
virtual void dump() const;
|
2005-04-22 08:57:22 +00:00
|
|
|
/// write inset in .lyx format
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual void write(std::ostream &) const {}
|
2005-04-22 08:57:22 +00:00
|
|
|
/// read inset in .lyx format
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual void read(Lexer &) {}
|
2007-01-09 19:25:40 +00:00
|
|
|
/** Export the inset to LaTeX.
|
|
|
|
* Don't use a temporary stringstream if the final output is
|
|
|
|
* supposed to go to a file.
|
|
|
|
* \sa Buffer::writeLaTeXSource for the reason.
|
|
|
|
* \return the number of rows (\n's) of generated LaTeX code.
|
|
|
|
*/
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual int latex(odocstream &, OutputParams const &) const { return 0; }
|
2004-01-26 10:13:15 +00:00
|
|
|
/// 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
|
2007-04-29 23:33:02 +00:00
|
|
|
virtual Text * getText(int /*num*/) const { return 0; }
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
/** 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.
|
|
|
|
*/
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual void addPreview(graphics::PreviewLoader &) const {}
|
2008-09-26 15:53:15 +00:00
|
|
|
|
|
|
|
/** Classifies the unicode characters appearing in a math inset
|
|
|
|
* depending on whether they are to be translated as latex
|
|
|
|
* math/text commands or used as math symbols without translation.
|
|
|
|
*
|
|
|
|
* Only math insets have interest in this classification, so the
|
|
|
|
* method defaults to empty.
|
|
|
|
*/
|
|
|
|
virtual void initUnicodeMath() const {}
|
|
|
|
|
2007-01-07 17:54:26 +00:00
|
|
|
/// Add an entry to the TocList
|
2007-06-05 17:24:11 +00:00
|
|
|
/// pit is the ParConstIterator of the paragraph containing the inset
|
2008-05-13 08:23:44 +00:00
|
|
|
virtual void addToToc(DocIterator const &) {}
|
2007-08-14 16:50:51 +00:00
|
|
|
/// Fill keys with BibTeX information
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const {}
|
2007-08-14 16:50:51 +00:00
|
|
|
/// Update the counters of this inset and of its contents
|
2008-02-27 20:43:16 +00:00
|
|
|
virtual void updateLabels(ParIterator const &) {}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2007-11-17 15:32:12 +00:00
|
|
|
/// Updates the inset's dialog
|
|
|
|
virtual Buffer const * updateFrontend() const;
|
2007-08-14 16:50:51 +00:00
|
|
|
|
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, ...)
|
2007-10-13 09:04:52 +00:00
|
|
|
virtual InsetCode lyxCode() const { return NO_CODE; }
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
/// -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-08-14 19:55:00 +00:00
|
|
|
/// returns whether this inset is allowed in other insets of given mode
|
|
|
|
virtual bool allowedIn(mode_type) const { return true; }
|
2005-12-17 15:03:41 +00:00
|
|
|
/**
|
|
|
|
* Is this inset allowed within a font change?
|
|
|
|
*
|
|
|
|
* FIXME: noFontChange means currently that the font change is closed
|
|
|
|
* in LaTeX before the inset, and that the contents of the inset
|
|
|
|
* will be in default font. This should be changed so that the inset
|
|
|
|
* changes the font again.
|
|
|
|
*/
|
2004-01-26 10:13:15 +00:00
|
|
|
virtual bool noFontChange() const { return false; }
|
|
|
|
|
2006-10-20 09:29:19 +00:00
|
|
|
/// set the change for the entire inset
|
2006-10-20 10:35:07 +00:00
|
|
|
virtual void setChange(Change const &) {}
|
2006-10-24 06:11:45 +00:00
|
|
|
/// accept the changes within the inset
|
2007-01-24 19:02:41 +00:00
|
|
|
virtual void acceptChanges(BufferParams const &) {};
|
2006-10-24 21:38:47 +00:00
|
|
|
/// reject the changes within the inset
|
2007-01-24 19:02:41 +00:00
|
|
|
virtual void rejectChanges(BufferParams const &) {};
|
2006-04-05 23:56:29 +00:00
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
///
|
|
|
|
virtual Dimension const dimension(BufferView const &) const;
|
2005-07-14 17:30:24 +00:00
|
|
|
///
|
2005-07-17 01:13:36 +00:00
|
|
|
int scroll() const { return 0; }
|
|
|
|
///
|
2007-10-25 12:41:02 +00:00
|
|
|
virtual ColorCode backgroundColor() const;
|
2007-04-22 21:40:10 +00:00
|
|
|
///
|
2005-07-14 17:30:24 +00:00
|
|
|
enum CollapseStatus {
|
|
|
|
Collapsed,
|
|
|
|
Open
|
|
|
|
};
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual void setStatus(Cursor &, CollapseStatus) {}
|
2007-04-29 12:32:14 +00:00
|
|
|
//
|
|
|
|
enum { TEXT_TO_INSET_OFFSET = 4 };
|
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
protected:
|
2008-07-23 12:13:41 +00:00
|
|
|
/// Constructors
|
|
|
|
Inset() : buffer_(0) {}
|
|
|
|
Inset(Inset const &) : buffer_(0) {}
|
2007-05-31 12:30:17 +00:00
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
/// replicate ourselves
|
2007-10-18 15:29:51 +00:00
|
|
|
friend class InsetList;
|
2007-08-30 18:03:17 +00:00
|
|
|
friend class MathAtom;
|
|
|
|
virtual Inset * clone() const = 0;
|
|
|
|
|
2005-05-09 17:29:22 +00:00
|
|
|
/** The real dispatcher.
|
2007-04-26 14:56:30 +00:00
|
|
|
* Gets normally called from Cursor::dispatch(). Cursor::dispatch()
|
2005-05-09 17:29:22 +00:00
|
|
|
* assumes the common case of 'LFUN handled, need update'.
|
2007-04-26 14:56:30 +00:00
|
|
|
* This has to be overriden by calling Cursor::undispatched() or
|
|
|
|
* Cursor::noUpdate() if appropriate.
|
2005-05-09 17:29:22 +00:00
|
|
|
* If you need to call the dispatch method of some inset directly
|
|
|
|
* you may have to explicitly request an update at that place. Don't
|
|
|
|
* do it in doDispatch(), since that causes nested updates when
|
2007-04-26 14:56:30 +00:00
|
|
|
* called from Cursor::dispatch(), and these can lead to crashes.
|
2005-05-09 17:29:22 +00:00
|
|
|
* \sa getStatus
|
|
|
|
*/
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2008-02-23 22:32:33 +00:00
|
|
|
|
|
|
|
Buffer * buffer_;
|
2003-02-17 17:12:50 +00:00
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|
|
|
|
|
2003-02-17 17:12:50 +00:00
|
|
|
#endif
|