]> 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 811c1317ebddc225e4ac7e26d8ed9ff338aa34b4..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>
@@ -25,6 +25,7 @@
 #include "WordLangTuple.h"
 #include "funcrequest.h"
 #include "buffer.h"
+#include "metricsinfo.h"
 
 #include "frontends/font_metrics.h"
 #include "frontends/Painter.h"
@@ -33,6 +34,9 @@
 #include "support/LAssert.h"
 #include "support/LOstream.h"
 
+using namespace lyx::support;
+using namespace lyx::graphics;
+
 using std::vector;
 using std::ostream;
 using std::endl;
@@ -41,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");
 }
 
@@ -59,34 +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);
 }
 
 
-// InsetCollapsable::InsetCollapsable(InsetCollapsable const & in, bool same_id)
-//     : UpdatableInset(in, same_id), 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),
-// #if 0
-//       autocollapse(in.autocollapse),
-// #endif
-//       oldWidth(0), in_update(false), first_after_edit(false)
-// {
-//     inset.init(&(in.inset), same_id);
-//     inset.setOwner(this);
-// }
-
-
-bool InsetCollapsable::insertInset(BufferView * bv, Inset * in)
+bool InsetCollapsable::insertInset(BufferView * bv, InsetOld * in)
 {
        if (!insetAllowed(in->lyxCode())) {
                lyxerr << "InsetCollapsable::InsertInset: "
@@ -97,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();
@@ -125,98 +112,84 @@ void InsetCollapsable::read(Buffer const * buf, LyXLex & lex)
 
 void InsetCollapsable::dimension_collapsed(Dimension & dim) const
 {
-       font_metrics::buttonText(label, labelfont, dim.w, dim.a, dim.d);
-       dim.w += 2 * TEXT_TO_INSET_OFFSET;
+       font_metrics::buttonText(label, labelfont, dim.wid, dim.asc, dim.des);
 }
 
 
 int InsetCollapsable::height_collapsed() const
 {
        Dimension dim;
-       font_metrics::buttonText(label, labelfont, dim.w, dim.a, dim.d);
-       return dim.a + dim.d;
+       font_metrics::buttonText(label, labelfont, dim.wid, dim.asc, dim.des);
+       return dim.asc + dim.des;
 }
 
 
-void InsetCollapsable::dimension(BufferView * bv, LyXFont const & font,
-       Dimension & dim) 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.dimension(bv, font, insetdim);
-       dim.d += insetdim.height() + TEXT_TO_BOTTOM_OFFSET;
-       dim.w = max(dim.w, insetdim.width());
+       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(Painter & pain,
-                                     int baseline, float & x) const
+void InsetCollapsable::draw_collapsed(PainterInfo & pi, int x, int y) const
 {
-       pain.buttonText(int(x) + TEXT_TO_INSET_OFFSET,
-                       baseline, label, labelfont);
-       Dimension dim;
-       dimension_collapsed(dim);
-       x += dim.w;
+       pi.pain.buttonText(x, y, label, labelfont);
 }
 
 
-void InsetCollapsable::draw(BufferView * bv, LyXFont const & f,
-                            int baseline, float & x, bool inlined) const
+void InsetCollapsable::draw(PainterInfo & pi, int x, int y, bool inlined) const
 {
-       lyx::Assert(bv);
-       cache(bv);
-
-       if (nodraw())
-               return;
+       Assert(pi.base.bv);
+       cache(pi.base.bv);
 
        Dimension dim_collapsed;
        dimension_collapsed(dim_collapsed);
 
-       Painter & pain = bv->painter();
-
-       button_length   = dim_collapsed.width();
-       button_top_y    = -ascent(bv, f);
-       button_bottom_y = -ascent(bv, f) + 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(pain, baseline, x);
+               draw_collapsed(pi, x, y);
                return;
        }
 
-       float old_x = x;
+       int old_x = x;
 
        if (!owner())
                x += scroll();
 
-       top_x = int(x);
-       top_baseline = baseline;
+       top_x = x;
+       top_baseline = y;
 
-       int const bl = baseline - ascent(bv, f) + dim_collapsed.ascent();
+       int const bl = y - aa + dim_collapsed.ascent();
 
        if (inlined) {
-               inset.draw(bv, f, baseline, x);
+               inset.draw(pi, x, y);
        } else {
-               draw_collapsed(pain, bl, old_x);
-               int const yy = bl + dim_collapsed.descent() + inset.ascent(bv, f);
-               inset.draw(bv, f, yy, x);
-               // contained inset may be shorter than the button
-               if (x < top_x + button_length + TEXT_TO_INSET_OFFSET)
-                       x = top_x + button_length + TEXT_TO_INSET_OFFSET;
+               draw_collapsed(pi, old_x, bl);
+               inset.draw(pi, x, bl + dim_collapsed.descent() + inset.ascent());
        }
 }
 
 
-void InsetCollapsable::draw(BufferView * bv, LyXFont const & f,
-                           int baseline, float & x) const
+void InsetCollapsable::draw(PainterInfo & pi, int x, int y) const
 {
        // by default, we are not inlined-drawing
-       draw(bv, f, baseline, x, false);
+       draw(pi, x, y, false);
 }
 
 
-Inset::EDITABLE InsetCollapsable::editable() const
+InsetOld::EDITABLE InsetCollapsable::editable() const
 {
        return collapsed_ ? IS_EDITABLE : HIGHLY_EDITABLE;
 }
@@ -243,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;
 }
 
@@ -258,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);
                                }
@@ -374,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);
                        }
@@ -387,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;
 
@@ -429,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());
@@ -464,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;
@@ -498,23 +445,9 @@ 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);
-}
-
-
-vector<string> const InsetCollapsable::getLabelList() const
-{
-       return inset.getLabelList();
-}
-
-
-bool InsetCollapsable::nodraw() const
+void InsetCollapsable::getLabelList(std::vector<string> & list) const
 {
-       return inset.nodraw();
+       inset.getLabelList(list);
 }
 
 
@@ -541,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);
@@ -551,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);
@@ -564,7 +498,7 @@ void InsetCollapsable::close(BufferView * bv) const
                return;
 
        collapsed_ = true;
-       bv->updateInset(const_cast<InsetCollapsable *>(this));
+       bv->updateInset(this);
 }
 
 
@@ -627,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);
 }