]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcollapsable.C
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insetcollapsable.C
index 3377fe3236961a420f6a960e04aa4ee6fb791a9c..2ea0f2f90849f8cb7054bd34af923db364f9cd47 100644 (file)
@@ -7,7 +7,7 @@
  * \author Jürgen Vigna
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
@@ -35,6 +35,7 @@
 #include "support/LOstream.h"
 
 using namespace lyx::support;
+using namespace lyx::graphics;
 
 using std::vector;
 using std::ostream;
@@ -44,17 +45,16 @@ using std::max;
 
 InsetCollapsable::InsetCollapsable(BufferParams const & bp, bool collapsed)
        : UpdatableInset(), collapsed_(collapsed), inset(bp),
-         button_length(0), button_top_y(0), button_bottom_y(0),
-         label("Label"),
+         button_dim(0, 0, 0, 0), label("Label"),
 #if 0
        autocollapse(false),
 #endif
-         oldWidth(0), in_update(false), first_after_edit(false)
+         in_update(false), first_after_edit(false)
 {
        inset.setOwner(this);
        inset.setAutoBreakRows(true);
-       inset.setDrawFrame(0, InsetText::ALWAYS);
-       inset.setFrameColor(0, LColor::collapsableframe);
+       inset.setDrawFrame(InsetText::ALWAYS);
+       inset.setFrameColor(LColor::collapsableframe);
        setInsetName("Collapsable");
 }
 
@@ -62,19 +62,18 @@ InsetCollapsable::InsetCollapsable(BufferParams const & bp, bool collapsed)
 InsetCollapsable::InsetCollapsable(InsetCollapsable const & in)
        : UpdatableInset(in), collapsed_(in.collapsed_),
          framecolor(in.framecolor), labelfont(in.labelfont), inset(in.inset),
-         button_length(0), button_top_y(0), button_bottom_y(0),
-         label(in.label),
+         button_dim(0, 0, 0, 0), label(in.label),
 #if 0
          autocollapse(in.autocollapse),
 #endif
-         oldWidth(0), in_update(false), first_after_edit(false)
+         in_update(false), first_after_edit(false)
 {
        inset.init(&(in.inset));
        inset.setOwner(this);
 }
 
 
-bool InsetCollapsable::insertInset(BufferView * bv, Inset * in)
+bool InsetCollapsable::insertInset(BufferView * bv, InsetOld * in)
 {
        if (!insetAllowed(in->lyxCode())) {
                lyxerr << "InsetCollapsable::InsertInset: "
@@ -85,14 +84,14 @@ bool InsetCollapsable::insertInset(BufferView * bv, Inset * in)
 }
 
 
-void InsetCollapsable::write(Buffer const * buf, ostream & os) const
+void InsetCollapsable::write(Buffer const & buf, ostream & os) const
 {
        os << "collapsed " << (collapsed_ ? "true" : "false") << "\n";
        inset.writeParagraphData(buf, os);
 }
 
 
-void InsetCollapsable::read(Buffer const * buf, LyXLex & lex)
+void InsetCollapsable::read(Buffer const & buf, LyXLex & lex)
 {
        if (lex.isOK()) {
                lex.next();
@@ -114,7 +113,6 @@ void InsetCollapsable::read(Buffer const * buf, LyXLex & lex)
 void InsetCollapsable::dimension_collapsed(Dimension & dim) const
 {
        font_metrics::buttonText(label, labelfont, dim.wid, dim.asc, dim.des);
-       dim.wid += 2 * TEXT_TO_INSET_OFFSET;
 }
 
 
@@ -128,19 +126,21 @@ int InsetCollapsable::height_collapsed() const
 
 void InsetCollapsable::metrics(MetricsInfo & mi, Dimension & dim) const
 {
+       //lyxerr << "InsetCollapsable::metrics:  width: " << mi.base.textwidth << endl;
        dimension_collapsed(dim);
-       if (collapsed_)
-               return;
-       Dimension insetdim;
-       inset.metrics(mi, insetdim);
-       dim.des += insetdim.height() + TEXT_TO_BOTTOM_OFFSET;
-       dim.wid = max(dim.wid, insetdim.wid);
+       if (!collapsed_) {
+               Dimension insetdim;
+               inset.metrics(mi, insetdim);
+               dim.des += insetdim.height() + TEXT_TO_BOTTOM_OFFSET;
+               dim.wid = max(dim.wid, insetdim.wid);
+       }
+       dim_ = dim;
 }
 
 
 void InsetCollapsable::draw_collapsed(PainterInfo & pi, int x, int y) const
 {
-       pi.pain.buttonText(x + TEXT_TO_INSET_OFFSET, y, label, labelfont);
+       pi.pain.buttonText(x, y, label, labelfont);
 }
 
 
@@ -149,16 +149,14 @@ void InsetCollapsable::draw(PainterInfo & pi, int x, int y, bool inlined) const
        Assert(pi.base.bv);
        cache(pi.base.bv);
 
-       if (nodraw())
-               return;
-
        Dimension dim_collapsed;
        dimension_collapsed(dim_collapsed);
 
-       int const aa    = ascent(pi.base.bv, pi.base.font);
-       button_length   = dim_collapsed.width();
-       button_top_y    = -aa;
-       button_bottom_y = -aa + dim_collapsed.height();
+       int const aa  = ascent();
+       button_dim.x1 = 0;
+       button_dim.x2 = dim_collapsed.width();
+       button_dim.y1 = -aa;
+       button_dim.y2 = -aa + dim_collapsed.height();
 
        if (!isOpen()) {
                draw_collapsed(pi, x, y);
@@ -179,9 +177,7 @@ void InsetCollapsable::draw(PainterInfo & pi, int x, int y, bool inlined) const
                inset.draw(pi, x, y);
        } else {
                draw_collapsed(pi, old_x, bl);
-               int const yy = bl + dim_collapsed.descent()
-                       + inset.ascent(pi.base.bv, pi.base.font);
-               inset.draw(pi, x, yy);
+               inset.draw(pi, x, bl + dim_collapsed.descent() + inset.ascent());
        }
 }
 
@@ -193,7 +189,7 @@ void InsetCollapsable::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-Inset::EDITABLE InsetCollapsable::editable() const
+InsetOld::EDITABLE InsetCollapsable::editable() const
 {
        return collapsed_ ? IS_EDITABLE : HIGHLY_EDITABLE;
 }
@@ -220,10 +216,8 @@ void InsetCollapsable::insetUnlock(BufferView * bv)
 
 FuncRequest InsetCollapsable::adjustCommand(FuncRequest const & cmd)
 {
-       LyXFont font(LyXFont::ALL_SANE);
        FuncRequest cmd1 = cmd;
-       cmd1.y = ascent(cmd.view(), font) + cmd.y -
-           (height_collapsed() + inset.ascent(cmd.view(), font));
+       cmd1.y = ascent() + cmd.y - (height_collapsed() + inset.ascent());
        return cmd1;
 }
 
@@ -235,94 +229,80 @@ void InsetCollapsable::lfunMouseRelease(FuncRequest const & cmd)
 
        if (collapsed_ && cmd.button() != mouse_button::button3) {
                collapsed_ = false;
-               inset.setUpdateStatus(bv, InsetText::FULL);
                bv->updateInset(this);
                bv->buffer()->markDirty();
                return;
        }
 
-       if ((cmd.button() != mouse_button::button3) && (cmd.x < button_length) &&
-           (cmd.y >= button_top_y) && (cmd.y <= button_bottom_y))
-       {
+       if (cmd.button() != mouse_button::button3 && hitButton(cmd)) {
                if (collapsed_) {
                        collapsed_ = false;
-                       inset.setUpdateStatus(bv, InsetText::FULL);
-                       bv->updateInset(this);
-                       bv->buffer()->markDirty();
                } else {
                        collapsed_ = true;
                        bv->unlockInset(this);
-                       bv->updateInset(this);
-                       bv->buffer()->markDirty();
                }
-       } else if (!collapsed_ && (cmd.y > button_bottom_y)) {
-               ret = (inset.localDispatch(adjustCommand(cmd)) == DISPATCHED);
+               bv->updateInset(this);
+               bv->buffer()->markDirty();
+               lyxerr << "InsetCollapsable::lfunMouseRelease\n";
+       } else if (!collapsed_ && cmd.y > button_dim.y2) {
+               ret = inset.localDispatch(adjustCommand(cmd)) == DISPATCHED;
        }
        if (cmd.button() == mouse_button::button3 && !ret)
                showInsetDialog(bv);
 }
 
 
-int InsetCollapsable::latex(Buffer const * buf, ostream & os,
+int InsetCollapsable::latex(Buffer const & buf, ostream & os,
                            LatexRunParams const & runparams) const
 {
        return inset.latex(buf, os, runparams);
 }
 
 
-int InsetCollapsable::ascii(Buffer const * buf, ostream & os, int ll) const
+int InsetCollapsable::ascii(Buffer const & buf, ostream & os, int ll) const
 {
        return inset.ascii(buf, os, ll);
 }
 
 
-int InsetCollapsable::linuxdoc(Buffer const * buf, ostream & os) const
+int InsetCollapsable::linuxdoc(Buffer const & buf, ostream & os) const
 {
        return inset.linuxdoc(buf, os);
 }
 
 
-int InsetCollapsable::docbook(Buffer const * buf, ostream & os, bool mixcont) const
+int InsetCollapsable::docbook(Buffer const & buf, ostream & os, bool mixcont) const
 {
        return inset.docbook(buf, os, mixcont);
 }
 
 
-void InsetCollapsable::update(BufferView * bv, bool reinit)
+bool InsetCollapsable::hitButton(FuncRequest const & cmd) const
 {
-       if (in_update) {
-               if (reinit && owner()) {
-                       owner()->update(bv, true);
-               }
-               return;
-       }
-       in_update = true;
-       inset.update(bv, reinit);
-       if (reinit && owner()) {
-               owner()->update(bv, true);
-       }
-       in_update = false;
+       return button_dim.contained(cmd.x, cmd.y);
 }
 
 
-Inset::RESULT InsetCollapsable::localDispatch(FuncRequest const & cmd)
+InsetOld::RESULT InsetCollapsable::localDispatch(FuncRequest const & cmd)
 {
-       //lyxerr << "InsetCollapsable::localDispatch: " << cmd.action << "\n";
+       //lyxerr << "InsetCollapsable::localDispatch: "
+       //      << cmd.action << " '" << cmd.argument << "'\n";
        BufferView * bv = cmd.view();
        switch (cmd.action) {
                case LFUN_INSET_EDIT: {
                        if (!cmd.argument.empty()) {
                                UpdatableInset::localDispatch(cmd);
                                if (collapsed_) {
+                                       lyxerr << "branch collapsed_" << endl;
                                        collapsed_ = false;
                                        if (bv->lockInset(this)) {
-                                               inset.setUpdateStatus(bv, InsetText::FULL);
                                                bv->updateInset(this);
                                                bv->buffer()->markDirty();
                                                inset.localDispatch(cmd);
                                                first_after_edit = true;
                                        }
                                } else {
+                                       lyxerr << "branch not collapsed_" << endl;
                                        if (bv->lockInset(this))
                                                inset.localDispatch(cmd);
                                }
@@ -351,12 +331,10 @@ Inset::RESULT InsetCollapsable::localDispatch(FuncRequest const & cmd)
                                FuncRequest cmd1 = cmd;
                                if (!bv->lockInset(this))
                                        return DISPATCHED;
-                               if (cmd.y <= button_bottom_y) {
+                               if (cmd.y <= button_dim.y2) {
                                        cmd1.y = 0;
                                } else {
-                                       LyXFont font(LyXFont::ALL_SANE);
-                                       cmd1.y = ascent(bv, font) + cmd.y -
-                                               (height_collapsed() + inset.ascent(bv, font));
+                                       cmd1.y = ascent() + cmd.y - (height_collapsed() + inset.ascent());
                                }
                                inset.localDispatch(cmd);
                        }
@@ -364,12 +342,12 @@ Inset::RESULT InsetCollapsable::localDispatch(FuncRequest const & cmd)
                }
 
                case LFUN_MOUSE_PRESS:
-                       if (!collapsed_ && cmd.y > button_bottom_y)
+                       if (!collapsed_ && cmd.y > button_dim.y2)
                                inset.localDispatch(adjustCommand(cmd));
                        return DISPATCHED;
 
                case LFUN_MOUSE_MOTION:
-                       if (!collapsed_ && cmd.y > button_bottom_y)
+                       if (!collapsed_ && cmd.y > button_dim.y2)
                                inset.localDispatch(adjustCommand(cmd));
                        return DISPATCHED;
 
@@ -406,14 +384,6 @@ bool InsetCollapsable::unlockInsetInInset(BufferView * bv, UpdatableInset * in,
 }
 
 
-bool InsetCollapsable::updateInsetInInset(BufferView * bv, Inset *in)
-{
-       if (in == this)
-               return true;
-       return inset.updateInsetInInset(bv, in);
-}
-
-
 int InsetCollapsable::insetInInsetY() const
 {
        return inset.insetInInsetY() - (top_baseline - inset.y());
@@ -441,13 +411,13 @@ void InsetCollapsable::getCursorPos(BufferView * bv, int & x, int & y) const
 UpdatableInset * InsetCollapsable::getLockingInset() const
 {
        UpdatableInset * in = inset.getLockingInset();
-       if (const_cast<InsetText *>(&inset) == in)
+       if (&inset == in)
                return const_cast<InsetCollapsable *>(this);
        return in;
 }
 
 
-UpdatableInset * InsetCollapsable::getFirstLockingInsetOfType(Inset::Code c)
+UpdatableInset * InsetCollapsable::getFirstLockingInsetOfType(InsetOld::Code c)
 {
        if (c == lyxCode())
                return this;
@@ -475,26 +445,12 @@ void InsetCollapsable::deleteLyXText(BufferView * bv, bool recursive) const
 }
 
 
-void InsetCollapsable::resizeLyXText(BufferView * bv, bool force) const
-{
-       inset.resizeLyXText(bv, force);
-       LyXFont font(LyXFont::ALL_SANE);
-       oldWidth = width(bv, font);
-}
-
-
 void InsetCollapsable::getLabelList(std::vector<string> & list) const
 {
        inset.getLabelList(list);
 }
 
 
-bool InsetCollapsable::nodraw() const
-{
-       return inset.nodraw();
-}
-
-
 int InsetCollapsable::scroll(bool recursive) const
 {
        int sx = UpdatableInset::scroll(false);
@@ -518,7 +474,7 @@ LyXCursor const & InsetCollapsable::cursor(BufferView * bv) const
 }
 
 
-Inset * InsetCollapsable::getInsetFromID(int id_arg) const
+InsetOld * InsetCollapsable::getInsetFromID(int id_arg) const
 {
        if (id_arg == id())
                return const_cast<InsetCollapsable *>(this);
@@ -528,7 +484,8 @@ Inset * InsetCollapsable::getInsetFromID(int id_arg) const
 
 void InsetCollapsable::open(BufferView * bv)
 {
-       if (!collapsed_) return;
+       if (!collapsed_)
+               return;
 
        collapsed_ = false;
        bv->updateInset(this);
@@ -541,7 +498,7 @@ void InsetCollapsable::close(BufferView * bv) const
                return;
 
        collapsed_ = true;
-       bv->updateInset(const_cast<InsetCollapsable *>(this));
+       bv->updateInset(this);
 }
 
 
@@ -604,7 +561,7 @@ InsetCollapsable::selectNextWordToSpellcheck(BufferView * bv, float & value) con
 }
 
 
-void InsetCollapsable::addPreview(grfx::PreviewLoader & loader) const
+void InsetCollapsable::addPreview(PreviewLoader & loader) const
 {
        inset.addPreview(loader);
 }