]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetminipage.C
Clean up InsetGraphics::Cache and rename as GraphicsInset.
[lyx.git] / src / insets / insetminipage.C
index 5cd5e8e3665fba7eab8afd974ab75b15e10a233a..f7cd3b4e7b3c30a45212dcd35158244ebfae049d 100644 (file)
@@ -1,27 +1,34 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 1998 The LyX Team.
+/**
+ * \file insetminipage.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *======================================================*/
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "insetminipage.h"
+#include "insettext.h"
+
+#include "BufferView.h"
+#include "debug.h"
+#include "dimension.h"
+#include "funcrequest.h"
 #include "gettext.h"
+#include "Lsstream.h"
 #include "lyxfont.h"
-#include "BufferView.h"
-#include "Painter.h"
+#include "lyxlex.h"
 #include "lyxtext.h"
-#include "insets/insettext.h"
+#include "Lsstream.h"
+
+#include "frontends/LyXView.h"
+#include "frontends/Dialogs.h"
+
 #include "support/LOstream.h"
-#include "debug.h"
 
 using std::ostream;
 using std::endl;
@@ -55,71 +62,325 @@ using std::endl;
 // have to output "" for minipages.
 // (Lgb)
 
-InsetMinipage::InsetMinipage()
-       : InsetCollapsable()
+InsetMinipage::InsetMinipage(BufferParams const & bp)
+       : InsetCollapsable(bp)
 {
        setLabel(_("minipage"));
        LyXFont font(LyXFont::ALL_SANE);
        font.decSize();
        font.decSize();
-       font.setColor(LColor::footnote);
+       font.setColor(LColor::collapsable);
        setLabelFont(font);
+#if 0
        setAutoCollapse(false);
+#endif
+
+#if 0
+#ifdef WITH_WARNINGS
+#warning Remove this color definitions before 1.2.0 final!
+#endif
+       // just for experimentation :)
+       setBackgroundColor(LColor::green);
+#endif
+
+       inset.setFrameColor(0, LColor::blue);
        setInsetName("Minipage");
 }
 
 
-void InsetMinipage::Write(Buffer const * buf, ostream & os) const 
+InsetMinipage::InsetMinipage(InsetMinipage const & in)
+       : InsetCollapsable(in), params_(in.params_)
+{}
+
+
+Inset * InsetMinipage::clone() const
+{
+       return new InsetMinipage(*this);
+}
+
+
+InsetMinipage::~InsetMinipage()
+{
+       InsetMinipageMailer mailer(*this);
+       mailer.hideDialog();
+}
+
+
+dispatch_result InsetMinipage::localDispatch(FuncRequest const & cmd)
+{
+       switch (cmd.action) {
+       case LFUN_INSET_MODIFY: {
+               InsetMinipage::Params params;
+               InsetMinipageMailer::string2params(cmd.argument, params);
+
+               params_.pos   = params.pos;
+               params_.width = params.width;
+
+               /* FIXME: I refuse to believe we have to live
+                * with ugliness like this ... */
+               LyXText * t = inset.getLyXText(cmd.view());
+               t->need_break_row = t->rows().begin();
+               t->fullRebreak();
+               inset.update(cmd.view(), true);
+               t->setCursorIntern(t->cursor.par(), t->cursor.pos());
+               cmd.view()->updateInset(this);
+               return DISPATCHED;
+       }
+
+       case LFUN_INSET_DIALOG_UPDATE:
+               InsetMinipageMailer(*this).updateDialog(cmd.view());
+               return DISPATCHED;
+
+       default:
+               return InsetCollapsable::localDispatch(cmd);
+       }
+}
+
+
+void InsetMinipage::Params::write(ostream & os) const
+{
+       os << "Minipage" << '\n'
+          << "position " << pos << '\n'
+          << "inner_position " << inner_pos << '\n'
+          << "height \"" << height.asString() << "\"\n"
+          << "width \"" << width.asString() << "\"\n";
+}
+
+
+void InsetMinipage::Params::read(LyXLex & lex)
+{
+       if (lex.isOK()) {
+               lex.next();
+               string const token = lex.getString();
+               if (token == "position") {
+                       lex.next();
+                       pos = static_cast<Position>(lex.getInteger());
+               } else {
+                       lyxerr << "InsetMinipage::Read: Missing 'position'-tag!"
+                                  << endl;
+                       // take countermeasures
+                       lex.pushToken(token);
+               }
+       }
+       if (lex.isOK()) {
+               lex.next();
+               string const token = lex.getString();
+               if (token == "inner_position") {
+                       lex.next();
+                       inner_pos = static_cast<InnerPosition>(lex.getInteger());
+               } else {
+                       lyxerr << "InsetMinipage::Read: Missing 'inner_position'-tag!"
+                                  << endl;
+                       // take countermeasures
+                       lex.pushToken(token);
+               }
+       }
+       if (lex.isOK()) {
+               lex.next();
+               string const token = lex.getString();
+               if (token == "height") {
+                       lex.next();
+                       height = LyXLength(lex.getString());
+               } else {
+                       lyxerr << "InsetMinipage::Read: Missing 'height'-tag!"
+                                  << endl;
+                       // take countermeasures
+                       lex.pushToken(token);
+               }
+       }
+       if (lex.isOK()) {
+               lex.next();
+               string const token = lex.getString();
+               if (token == "width") {
+                       lex.next();
+                       width = LyXLength(lex.getString());
+               } else {
+                       lyxerr << "InsetMinipage::Read: Missing 'width'-tag!"
+                                  << endl;
+                       // take countermeasures
+                       lex.pushToken(token);
+               }
+       }
+}
+
+
+void InsetMinipage::write(Buffer const * buf, ostream & os) const
+{
+       params_.write(os);
+       InsetCollapsable::write(buf, os);
+}
+
+
+void InsetMinipage::read(Buffer const * buf, LyXLex & lex)
 {
-       os << getInsetName() << "\n";
-       InsetCollapsable::Write(buf, os);
+       params_.read(lex);
+       InsetCollapsable::read(buf, lex);
 }
 
 
-Inset * InsetMinipage::Clone() const
+void InsetMinipage::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       InsetMinipage * result = new InsetMinipage;
-       result->inset->init(inset);
-       
-       result->collapsed = collapsed;
-       return result;
+       if (collapsed_)
+               dimension_collapsed(dim);
+       else {
+               Dimension d;
+               InsetCollapsable::metrics(mi, d);
+               switch (params_.pos) {
+               case top:
+                       dim.asc = d.asc;
+                       dim.des = d.des;
+                       break;
+               case center:
+                       dim.asc = d.ascent() + d.descent() / 2;
+                       dim.des = dim.asc;
+                       break;
+               case bottom:
+                       dim.asc = d.des;
+                       dim.des = d.asc;
+                       break;
+               }
+               dim.wid = d.wid;
+       }
 }
 
 
-char const * InsetMinipage::EditMessage() const
+string const InsetMinipage::editMessage() const
 {
        return _("Opened Minipage Inset");
 }
 
 
-int InsetMinipage::Latex(Buffer const * buf,
-                        ostream & os, bool fragile, bool fp) const
+int InsetMinipage::latex(Buffer const * buf, ostream & os,
+                        LatexRunParams const & runparams) const
 {
-       os << "\\begin{minipage}{\\columnwidth}%\n";
-       
-       int i = inset->Latex(buf, os, fragile, fp);
+       string s_pos;
+       switch (params_.pos) {
+       case top:
+               s_pos += 't';
+               break;
+       case center:
+               s_pos += 'c';
+               break;
+       case bottom:
+               s_pos += 'b';
+               break;
+       }
+       os << "\\begin{minipage}[" << s_pos << "]{"
+          << params_.width.asLatexString() << "}%\n";
+
+       int i = inset.latex(buf, os, runparams);
+
        os << "\\end{minipage}%\n";
-       
        return i + 2;
 }
 
 
-bool InsetMinipage::InsertInsetAllowed(Inset * in) const
+bool InsetMinipage::insetAllowed(Inset::Code code) const
 {
-       if ((in->LyxCode() == Inset::FLOAT_CODE) ||
-           (in->LyxCode() == Inset::MARGIN_CODE)) {
+       if (code == Inset::FLOAT_CODE || code == Inset::MARGIN_CODE)
                return false;
+
+       return InsetCollapsable::insetAllowed(code);
+}
+
+
+bool InsetMinipage::showInsetDialog(BufferView * bv) const
+{
+       if (!inset.showInsetDialog(bv)) {
+               InsetMinipage * tmp = const_cast<InsetMinipage *>(this);
+               InsetMinipageMailer mailer(*tmp);
+               mailer.showDialog(bv);
        }
+
        return true;
 }
 
 
-#if 0
-LyXFont InsetMinipage::GetDrawFont(BufferView * bv,
-                                  LyXParagraph * p, int pos) const
+int InsetMinipage::getMaxWidth(BufferView * bv, UpdatableInset const * inset)
+       const
+{
+       if (owner() &&
+           static_cast<UpdatableInset*>(owner())->getMaxWidth(bv, inset) < 0) {
+               return -1;
+       }
+       if (!params_.width.zero()) {
+               int ww1 = latexTextWidth(bv);
+               int ww2 = InsetCollapsable::getMaxWidth(bv, inset);
+               if (ww2 > 0 && ww2 < ww1) {
+                       return ww2;
+               }
+               return ww1;
+       }
+       // this should not happen!
+       return InsetCollapsable::getMaxWidth(bv, inset);
+}
+
+
+int InsetMinipage::latexTextWidth(BufferView * bv) const
 {
-       LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
-       fn.decSize().decSize();
-       return fn;
+       return params_.width.inPixels(InsetCollapsable::latexTextWidth(bv));
+}
+
+
+InsetMinipage::Params::Params()
+       : pos(center),
+         inner_pos(inner_center),
+         width(100, LyXLength::PCW)
+{}
+
+
+string const InsetMinipageMailer:: name_("minipage");
+
+InsetMinipageMailer::InsetMinipageMailer(InsetMinipage & inset)
+       : inset_(inset)
+{}
+
+
+string const InsetMinipageMailer::inset2string() const
+{
+       return params2string(inset_.params());
+}
+
+
+void InsetMinipageMailer::string2params(string const & in,
+                                       InsetMinipage::Params & params)
+{
+       params = InsetMinipage::Params();
+
+       if (in.empty())
+               return;
+
+       istringstream data(STRCONV(in));
+       LyXLex lex(0,0);
+       lex.setStream(data);
+
+       if (lex.isOK()) {
+               lex.next();
+               string const token = lex.getString();
+               if (token != "minipage")
+                       return;
+       }
+
+       // This is part of the inset proper that is usually swallowed
+       // by Buffer::readInset
+       if (lex.isOK()) {
+               lex.next();
+               string const token = lex.getString();
+               if (token != "Minipage")
+                       return;
+       }
+
+       if (lex.isOK()) {
+               params.read(lex);
+       }
+}
+
+
+string const
+InsetMinipageMailer::params2string(InsetMinipage::Params const & params)
+{
+       ostringstream data;
+       data << name_ << ' ';
+       params.write(data);
+       return STRCONV(data.str());
 }
-#endif