X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCollapsible.cpp;h=20e595ff32e22ed0371a58e913afc4969e75e9eb;hb=110f8f67ac1afe9892dad5566d1c697044427cf0;hp=76b0bc72f3918d2ef903ac4e2a574f29bd88b708;hpb=f17f5617e05ea8a7f179586cc16c5bb05a0e9e2d;p=lyx.git diff --git a/src/insets/InsetCollapsible.cpp b/src/insets/InsetCollapsible.cpp index 76b0bc72f3..20e595ff32 100644 --- a/src/insets/InsetCollapsible.cpp +++ b/src/insets/InsetCollapsible.cpp @@ -15,15 +15,19 @@ #include "InsetCollapsible.h" #include "Buffer.h" +#include "BufferParams.h" #include "BufferView.h" +#include "CutAndPaste.h" #include "Cursor.h" #include "Dimension.h" +#include "Format.h" #include "FuncRequest.h" #include "FuncStatus.h" #include "InsetLayout.h" #include "Lexer.h" #include "MetricsInfo.h" #include "OutputParams.h" +#include "TextClass.h" #include "TocBackend.h" #include "frontends/FontMetrics.h" @@ -35,6 +39,7 @@ #include "support/lassert.h" #include "support/lstrings.h" #include "support/RefChanger.h" +#include "support/TempFile.h" using namespace std; @@ -55,7 +60,18 @@ InsetCollapsible::InsetCollapsible(InsetCollapsible const & rhs) : InsetText(rhs), status_(rhs.status_), labelstring_(rhs.labelstring_) -{} +{ + tempfile_.reset(); +} + + +InsetCollapsible & InsetCollapsible::operator=(InsetCollapsible const & that) +{ + if (&that == this) + return *this; + *this = InsetCollapsible(that); + return *this; +} InsetCollapsible::~InsetCollapsible() @@ -141,6 +157,28 @@ void InsetCollapsible::read(Lexer & lex) setButtonLabel(); } +int InsetCollapsible::topOffset(BufferView const * bv) const +{ + switch (geometry(*bv)) { + case Corners: + case SubLabel: + return 0; + default: + return InsetText::topOffset(bv); + } +} + +int InsetCollapsible::bottomOffset(BufferView const * bv) const +{ + switch (geometry(*bv)) { + case Corners: + case SubLabel: + return InsetText::bottomOffset(bv) / 4; + default: + return InsetText::bottomOffset(bv); + } +} + Dimension InsetCollapsible::dimensionCollapsed(BufferView const & bv) const { @@ -148,7 +186,7 @@ Dimension InsetCollapsible::dimensionCollapsed(BufferView const & bv) const FontInfo labelfont(getLabelfont()); labelfont.realize(sane_font); theFontMetrics(labelfont).buttonText( - buttonLabel(bv), TEXT_TO_INSET_OFFSET, dim.wid, dim.asc, dim.des); + buttonLabel(bv), Inset::textOffset(&bv), dim.wid, dim.asc, dim.des); return dim; } @@ -169,8 +207,6 @@ void InsetCollapsible::metrics(MetricsInfo & mi, Dimension & dim) const break; case Corners: InsetText::metrics(mi, dim); - dim.des -= 3; - dim.asc -= 1; break; case SubLabel: { InsetText::metrics(mi, dim); @@ -205,7 +241,7 @@ void InsetCollapsible::metrics(MetricsInfo & mi, Dimension & dim) const dim.des = max(dim.des - textdim.asc + dim.asc, textdim.des); dim.asc = textdim.asc; } else { - dim.des += textdim.height() + TEXT_TO_INSET_OFFSET; + dim.des += textdim.height() + topOffset(mi.base.bv); dim.wid = max(dim.wid, textdim.wid); } } @@ -248,11 +284,11 @@ void InsetCollapsible::draw(PainterInfo & pi, int x, int y) const labelfont.realize(pi.base.font); pi.pain.buttonText(x, y, buttonLabel(bv), labelfont, view_[&bv].mouse_hover_ ? Color_buttonhoverbg : Color_buttonbg, - Color_buttonframe, TEXT_TO_INSET_OFFSET); + Color_buttonframe, Inset::textOffset(pi.base.bv)); // Draw the change tracking cue on the label, unless RowPainter already // takes care of it. if (canPaintChange(bv)) - pi.change_.paintCue(pi, x, y, x + dimc.width(), labelfont); + pi.change.paintCue(pi, x, y, x + dimc.width(), labelfont); } else { view_[&bv].button_dim_.x1 = 0; view_[&bv].button_dim_.y1 = 0; @@ -276,8 +312,8 @@ void InsetCollapsible::draw(PainterInfo & pi, int x, int y) const } // Do not draw the cue for INSERTED -- it is already in the button and // that's enough. - Changer cdummy = (pi.change_.type == Change::INSERTED) - ? make_change(pi.change_, Change()) + Changer cdummy = (pi.change.type == Change::INSERTED) + ? make_change(pi.change, Change()) : Changer(); InsetText::draw(pi, textx, texty); break; @@ -296,21 +332,19 @@ void InsetCollapsible::draw(PainterInfo & pi, int x, int y) const // We will take care of the frame and the change tracking cue // ourselves, below. { - Changer cdummy = make_change(pi.change_, Change()); + Changer cdummy = make_change(pi.change, Change()); const_cast(this)->setDrawFrame(false); InsetText::draw(pi, textx, texty); const_cast(this)->setDrawFrame(true); } int desc = textdim.descent(); - if (g == Corners) - desc -= 3; // Colour the frame according to the change type. (Like for tables.) - Color colour = pi.change_.changed() ? pi.change_.color() + Color colour = pi.change.changed() ? pi.change.color() : Color_foreground; - const int xx1 = x + TEXT_TO_INSET_OFFSET - 1; - const int xx2 = x + textdim.wid - TEXT_TO_INSET_OFFSET + 1; + const int xx1 = x + leftOffset(pi.base.bv) - 1; + const int xx2 = x + textdim.wid - rightOffset(pi.base.bv) + 1; pi.pain.line(xx1, y + desc - 4, xx1, y + desc, colour); if (status_ == Open) @@ -329,7 +363,7 @@ void InsetCollapsible::draw(PainterInfo & pi, int x, int y) const // the label below the text. Can be toggled. if (g == SubLabel) { FontInfo font(getLabelfont()); - if (pi.change_.changed()) + if (pi.change.changed()) font.setPaintColor(colour); font.realize(sane_font); font.decSize(); @@ -337,7 +371,7 @@ void InsetCollapsible::draw(PainterInfo & pi, int x, int y) const int w = 0; int a = 0; int d = 0; - Color const col = pi.full_repaint ? Color_none : pi.backgroundColor(this); + Color const col = pi.full_repaint ? Color_none : pi.backgroundColor(); theFontMetrics(font).rectText(buttonLabel(bv), w, a, d); int const ww = max(textdim.wid, w); pi.pain.rectText(x + (ww - w) / 2, y + desc + a, @@ -355,8 +389,8 @@ void InsetCollapsible::draw(PainterInfo & pi, int x, int y) const } // Strike through the inset if deleted and not already handled by // RowPainter. - if (pi.change_.deleted() && canPaintChange(bv)) - pi.change_.paintCue(pi, xx1, y1, xx2, y + desc); + if (pi.change.deleted() && canPaintChange(bv)) + pi.change.paintCue(pi, xx1, y1, xx2, y + desc); break; } } @@ -393,6 +427,9 @@ void InsetCollapsible::cursorPos(BufferView const & bv, bool InsetCollapsible::editable() const { + if (tempfile_) + return false; + switch (decoration()) { case InsetLayout::CLASSIC: case InsetLayout::MINIMALISTIC: @@ -405,6 +442,9 @@ bool InsetCollapsible::editable() const bool InsetCollapsible::descendable(BufferView const & bv) const { + if (tempfile_) + return false; + return geometry(bv) != ButtonOnly; } @@ -437,8 +477,7 @@ docstring const InsetCollapsible::getNewLabel(docstring const & l) const if (paragraphs().size() > 1 || (i > 0 && j < p_siz)) { label << "..."; } - docstring const lbl = label.str(); - return lbl.empty() ? l : lbl; + return label.str().empty() ? l : label.str(); } @@ -454,7 +493,7 @@ Inset * InsetCollapsible::editXY(Cursor & cur, int x, int y) { //lyxerr << "InsetCollapsible: edit xy" << endl; if (geometry(cur.bv()) == ButtonOnly - || !editable() + || !descendable(cur.bv()) || (view_[&cur.bv()].button_dim_.contains(x, y) && geometry(cur.bv()) != NoButton)) return this; @@ -550,6 +589,41 @@ void InsetCollapsible::doDispatch(Cursor & cur, FuncRequest & cmd) cur.dispatched(); break; + case LFUN_INSET_EDIT: { + cur.push(*this); + text().selectAll(cur); + string const format = + cur.buffer()->params().documentClass().outputFormat(); + string const ext = theFormats().extension(format); + tempfile_.reset(new support::TempFile("ert_editXXXXXX." + ext)); + support::FileName const tempfilename = tempfile_->name(); + string const name = tempfilename.toFilesystemEncoding(); + ofdocstream os(name.c_str()); + os << cur.selectionAsString(false); + os.close(); + // Since we lock the inset while the external file is edited, + // we need to move the cursor outside and clear any selection inside + cur.clearSelection(); + cur.pop(); + cur.leaveInset(*this); + theFormats().edit(buffer(), tempfilename, format); + break; + } + case LFUN_INSET_END_EDIT: { + support::FileName const tempfilename = tempfile_->name(); + docstring const s = tempfilename.fileContents("UTF-8"); + cur.recordUndoInset(this); + cur.push(*this); + text().selectAll(cur); + cap::replaceSelection(cur); + cur.text()->insertStringAsLines(cur, s, cur.current_font); + // FIXME (gb) it crashes without this + cur.fixIfBroken(); + tempfile_.reset(); + cur.pop(); + break; + } + default: InsetText::doDispatch(cur, cmd); break; @@ -573,6 +647,14 @@ bool InsetCollapsible::getStatus(Cursor & cur, FuncRequest const & cmd, flag.setEnabled(false); return true; + case LFUN_INSET_EDIT: + flag.setEnabled(getLayout().editExternally() && tempfile_ == 0); + return true; + + case LFUN_INSET_END_EDIT: + flag.setEnabled(getLayout().editExternally() && tempfile_ != 0); + return true; + default: return InsetText::getStatus(cur, cmd, flag); } @@ -595,11 +677,15 @@ docstring InsetCollapsible::getLabel() const docstring const InsetCollapsible::buttonLabel(BufferView const & bv) const { + // indicate changed content in label (#8645) + // ✎ U+270E LOWER RIGHT PENCIL + docstring const indicator = (isChanged() && geometry(bv) == ButtonOnly) + ? docstring(1, 0x270E) : docstring(); InsetLayout const & il = getLayout(); docstring const label = getLabel(); if (!il.contentaslabel() || geometry(bv) != ButtonOnly) - return label; - return getNewLabel(label); + return indicator + label; + return indicator + getNewLabel(label); }