X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInset.cpp;h=0257ed0c45f1c56dad489b94ccbda9811dc89e2d;hb=705302f6dee4e4be9ea46213aa1b0cc18be0cfb0;hp=00a6bb938a5891782abc9422ad2a9d843307ca30;hpb=b6a63bfce81819ae0edf3dded0e02c4439e27f90;p=lyx.git diff --git a/src/insets/Inset.cpp b/src/insets/Inset.cpp index 00a6bb938a..0257ed0c45 100644 --- a/src/insets/Inset.cpp +++ b/src/insets/Inset.cpp @@ -31,6 +31,7 @@ #include "output_xhtml.h" #include "Text.h" #include "TextClass.h" +#include "TocBackend.h" #include "frontends/Application.h" #include "frontends/Painter.h" @@ -94,6 +95,9 @@ static void build_translator() insetnames[FLOAT_CODE] = InsetName("float", _("Float")); insetnames[WRAP_CODE] = InsetName("wrap"); insetnames[SPECIALCHAR_CODE] = InsetName("specialchar"); + insetnames[IPA_CODE] = InsetName("ipa"); + insetnames[IPACHAR_CODE] = InsetName("ipachar"); + insetnames[IPADECO_CODE] = InsetName("ipadeco"); insetnames[TABULAR_CODE] = InsetName("tabular", _("Table")); insetnames[EXTERNAL_CODE] = InsetName("external"); insetnames[CAPTION_CODE] = InsetName("caption"); @@ -113,7 +117,7 @@ static void build_translator() insetnames[MATH_MACROARG_CODE] = InsetName("mathmacroarg"); insetnames[LISTINGS_CODE] = InsetName("listings"); insetnames[INFO_CODE] = InsetName("info", _("Info")); - insetnames[COLLAPSABLE_CODE] = InsetName("collapsable"); + insetnames[COLLAPSIBLE_CODE] = InsetName("collapsible"); insetnames[NEWPAGE_CODE] = InsetName("newpage"); insetnames[SCRIPT_CODE] = InsetName("script"); insetnames[CELL_CODE] = InsetName("tablecell"); @@ -169,7 +173,6 @@ static void build_translator() insetnames[MATH_UNDERSET_CODE] = InsetName("mathunderset"); insetnames[MATH_UNKNOWN_CODE] = InsetName("mathunknown"); insetnames[MATH_XARROW_CODE] = InsetName("mathxarrow"); - insetnames[MATH_XYARROW_CODE] = InsetName("mathxyarrow"); insetnames[MATH_XYMATRIX_CODE] = InsetName("mathxymatrix"); insetnames[MATH_DIAGRAM_CODE] = InsetName("mathdiagram"); insetnames[MATH_MACRO_CODE] = InsetName("mathmacro"); @@ -184,6 +187,12 @@ void Inset::setBuffer(Buffer & buffer) } +void Inset::resetBuffer() +{ + buffer_ = nullptr; +} + + Buffer & Inset::buffer() { if (!buffer_) { @@ -191,9 +200,9 @@ Buffer & Inset::buffer() string const iname = insetName(lyxCode()); LYXERR0("Inset: " << this << " LyX Code: " << lyxCode() << " name: " << iname); - s << "LyX Code: " << lyxCode() << " name: " << iname; - LASSERT(false, /**/); - throw ExceptionMessage(BufferException, + s << "LyX Code: " << lyxCode() << " name: " << from_ascii(iname); + LATTEST(false); + throw ExceptionMessage(BufferException, from_ascii("Inset::buffer_ member not initialized!"), s.str()); } return *buffer_; @@ -214,7 +223,7 @@ bool Inset::isBufferLoaded() const bool Inset::isBufferValid() const { - return buffer_ + return buffer_ && (isBufferLoaded() || buffer_->isClone()); } @@ -225,7 +234,7 @@ docstring Inset::layoutName() const } -bool Inset::isFreeSpacing() const +bool Inset::isFreeSpacing() const { return getLayout().isFreeSpacing(); } @@ -255,7 +264,7 @@ docstring Inset::toolTip(BufferView const &, int, int) const } -void Inset::forToc(docstring &, size_t) const +void Inset::forOutliner(docstring &, size_t const, bool const) const { } @@ -289,14 +298,14 @@ InsetCode insetCode(string const & name) } -string insetName(InsetCode c) +string insetName(InsetCode c) { build_translator(); return insetnames[c].name; } -docstring insetDisplayName(InsetCode c) +docstring insetDisplayName(InsetCode c) { build_translator(); return insetnames[c].display_name; @@ -307,7 +316,7 @@ void Inset::dispatch(Cursor & cur, FuncRequest & cmd) { if (buffer_ == 0) { lyxerr << "Unassigned buffer_ member in Inset::dispatch()" << std::endl; - lyxerr << "LyX Code: " << lyxCode() << " name: " + lyxerr << "LyX Code: " << lyxCode() << " name: " << insetName(lyxCode()) << std::endl; } else if (cur.buffer() != buffer_) lyxerr << "cur.buffer() != buffer_ in Inset::dispatch()" << std::endl; @@ -347,7 +356,7 @@ void Inset::doDispatch(Cursor & cur, FuncRequest &cmd) // if the derived inset did not explicitly handle mouse_release, // we assume we request the settings dialog if (!cur.selection() && cmd.button() == mouse_button::button1 - && clickable(cmd.x(), cmd.y()) && hasSettings()) { + && clickable(cur.bv(), cmd.x(), cmd.y()) && hasSettings()) { FuncRequest tmpcmd(LFUN_INSET_SETTINGS); dispatch(cur, tmpcmd); } @@ -385,11 +394,6 @@ bool Inset::getStatus(Cursor &, FuncRequest const & cmd, // Allow modification of our data. // This needs to be handled in the doDispatch method of our // instantiatable children. - // FIXME: Why don't we let the insets determine whether this - // should be enabled or not ? Now we need this check for - // the tabular features. (vfr) - if (cmd.getArg(0) == "tabular") - return false; flag.setEnabled(true); return true; @@ -410,7 +414,7 @@ bool Inset::getStatus(Cursor &, FuncRequest const & cmd, } case LFUN_IN_MATHMACROTEMPLATE: - // By default we're not in a MathMacroTemplate inset + // By default we're not in a InsetMathMacroTemplate inset flag.setEnabled(false); return true; @@ -523,6 +527,16 @@ void Inset::metricsMarkers2(Dimension & dim, int framesize) const } +void Inset::drawBackground(PainterInfo & pi, int x, int y) const +{ + if (pi.full_repaint && backgroundColor(pi) == Color_none) + return; + Dimension const dim = dimension(*pi.base.bv); + pi.pain.fillRectangle(x, y - dim.asc, dim.wid, dim.asc + dim.des, + pi.backgroundColor(this)); +} + + void Inset::drawMarkers(PainterInfo & pi, int x, int y) const { ColorCode pen_color = mouseHovered(pi.base.bv) || editing(pi.base.bv)? @@ -536,24 +550,6 @@ void Inset::drawMarkers(PainterInfo & pi, int x, int y) const pi.pain.line(t, d - 3, t, d, pen_color); pi.pain.line(x, d, x + 3, d, pen_color); pi.pain.line(t - 3, d, t, d, pen_color); - setPosCache(pi, x, y); -} - - -void Inset::drawMarkers2(PainterInfo & pi, int x, int y) const -{ - ColorCode pen_color = mouseHovered(pi.base.bv) || editing(pi.base.bv)? - Color_mathframe : Color_mathcorners; - - drawMarkers(pi, x, y); - Dimension const dim = dimension(*pi.base.bv); - int const t = x + dim.width() - 1; - int const a = y - dim.ascent(); - pi.pain.line(x, a + 3, x, a, pen_color); - pi.pain.line(t, a + 3, t, a, pen_color); - pi.pain.line(x, a, x + 3, a, pen_color); - pi.pain.line(t - 3, a, t, a, pen_color); - setPosCache(pi, x, y); } @@ -614,19 +610,6 @@ ColorCode Inset::labelColor() const } -void Inset::setPosCache(PainterInfo const & pi, int x, int y) const -{ - //LYXERR("Inset: set position cache to " << x << " " << y); - pi.base.bv->coordCache().insets().add(this, x, y); -} - - -void Inset::setDimCache(MetricsInfo const & mi, Dimension const & dim) const -{ - mi.base.bv->coordCache().insets().add(this, dim); -} - - Buffer const * Inset::updateFrontend() const { //FIXME (Abdel 03/12/10): see bugs #6814 and #6949 @@ -639,7 +622,13 @@ Buffer const * Inset::updateFrontend() const } -docstring Inset::completionPrefix(Cursor const &) const +bool Inset::resetFontEdit() const +{ + return getLayout().resetsFont() || !inheritFont(); +} + + +docstring Inset::completionPrefix(Cursor const &) const { return docstring(); }