]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbutton.C
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetbutton.C
index 704890110e61a92352973960d2e2d1efb7862e2a..796d46d9a8dbf952c1c97274c7a7b7d3902459df 100644 (file)
-/* This file is part of
- * ======================================================
+/**
+ * \file insetbutton.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Asger Alstrup Nielsen
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 2000-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "insetbutton.h"
 #include "debug.h"
+#include "dimension.h"
 #include "BufferView.h"
+#include "funcrequest.h"
+#include "frontends/LyXView.h"
 #include "frontends/Painter.h"
 #include "support/LAssert.h"
 #include "lyxfont.h"
-#include "font.h"
+#include "metricsinfo.h"
+#include "frontends/font_metrics.h"
 
 using std::ostream;
 using std::endl;
 
 
-int InsetButton::ascent(BufferView * bv, LyXFont const &) const
+void InsetButton::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       lyx::Assert(bv);
+       lyx::Assert(mi.base.bv);
 
        LyXFont font(LyXFont::ALL_SANE);
        font.decSize();
 
-       int width;
-       int ascent;
-       int descent;
-       string const s = getScreenLabel(bv->buffer());
+       string const s = getScreenLabel(mi.base.bv->buffer());
 
-       if (editable()) {
-               lyxfont::buttonText(s, font, width, ascent, descent);
-       } else {
-               lyxfont::rectText(s, font, width, ascent, descent);
-       }
+       if (editable())
+               font_metrics::buttonText(s, font, dim.wid, dim.asc, dim.des);
+       else
+               font_metrics::rectText(s, font, dim.wid, dim.asc, dim.des);
 
-       return ascent;
+       dim.wid += 4;
 }
 
 
-int InsetButton::descent(BufferView * bv, LyXFont const &) const
+void InsetButton::draw(PainterInfo & pi, int x, int y) const
 {
-       lyx::Assert(bv);
+       lyx::Assert(pi.base.bv);
+       cache(pi.base.bv);
 
+       // Draw it as a box with the LaTeX text
        LyXFont font(LyXFont::ALL_SANE);
-       font.decSize();
+       font.setColor(LColor::command).decSize();
 
-       int width;
-       int ascent;
-       int descent;
-       string const s = getScreenLabel(bv->buffer());
+       string const s = getScreenLabel(pi.base.bv->buffer());
 
        if (editable()) {
-               lyxfont::buttonText(s, font, width, ascent, descent);
+               pi.pain.buttonText(x + 2, y, s, font);
        } else {
-               lyxfont::rectText(s, font, width, ascent, descent);
+               pi.pain.rectText(x + 2, y, s, font,
+                             LColor::commandbg, LColor::commandframe);
        }
-
-       return descent;
 }
 
 
-int InsetButton::width(BufferView * bv, LyXFont const &) const
+void InsetButton::cache(BufferView * bv) const
 {
-       lyx::Assert(bv);
-
-       LyXFont font(LyXFont::ALL_SANE);
-       font.decSize();
-
-       int width;
-       int ascent;
-       int descent;
-       string const s = getScreenLabel(bv->buffer());
-
-       if (editable()) {
-               lyxfont::buttonText(s, font, width, ascent, descent);
-       } else {
-               lyxfont::rectText(s, font, width, ascent, descent);
-       }
-
-       return width + 4;
+       view_ = bv->owner()->view();
 }
 
 
-void InsetButton::draw(BufferView * bv, LyXFont const &,
-                       int baseline, float & x, bool) const
+#warning Shouldnt this really return a shared_ptr<BufferView>? (Lgb)
+BufferView * InsetButton::view() const
 {
-       lyx::Assert(bv);
-
-       Painter & pain = bv->painter();
-       // Draw it as a box with the LaTeX text
-       LyXFont font(LyXFont::ALL_SANE);
-       font.setColor(LColor::command).decSize();
+       return view_.lock().get();
+}
 
-       string const s = getScreenLabel(bv->buffer());
 
-       if (editable()) {
-               pain.buttonText(int(x) + 2, baseline, s, font);
-       } else {
-               pain.rectText(int(x) + 2, baseline, s, font,
-                             LColor::commandbg, LColor::commandframe);
-       }
-
-       x += width(bv, font);
+dispatch_result InsetButton::localDispatch(FuncRequest const & cmd)
+{
+       return Inset::localDispatch(cmd);
 }