]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetVSpace.cpp
Move isMultiCell() to Cursor, and use it.
[lyx.git] / src / insets / InsetVSpace.cpp
index 42daae26750f32bfddb0eae6ca816beef3bd131f..0b782f00b859c36eb154623c8905d9e3adbcc683 100644 (file)
 #include "InsetVSpace.h"
 
 #include "Buffer.h"
+#include "BufferView.h"
 #include "Cursor.h"
 #include "Dimension.h"
 #include "DispatchResult.h"
 #include "FuncRequest.h"
-#include "support/gettext.h"
+#include "FuncStatus.h"
 #include "Lexer.h"
-#include "Text.h"
 #include "MetricsInfo.h"
 #include "OutputParams.h"
+#include "Text.h"
 
+#include "support/debug.h"
+#include "support/gettext.h"
+#include "support/lassert.h"
+
+#include "frontends/Application.h"
 #include "frontends/FontMetrics.h"
 #include "frontends/Painter.h"
 
@@ -47,7 +53,7 @@ InsetVSpace::InsetVSpace(VSpace const & space)
 
 InsetVSpace::~InsetVSpace()
 {
-       InsetVSpaceMailer(*this).hideDialog();
+       hideDialogs("vspace", this);
 }
 
 
@@ -56,13 +62,14 @@ void InsetVSpace::doDispatch(Cursor & cur, FuncRequest & cmd)
        switch (cmd.action) {
 
        case LFUN_INSET_MODIFY: {
-               InsetVSpaceMailer::string2params(to_utf8(cmd.argument()), space_);
+               InsetVSpace::string2params(to_utf8(cmd.argument()), space_);
                break;
        }
 
        case LFUN_MOUSE_RELEASE:
-               if (!cur.selection())
-                       InsetVSpaceMailer(*this).showDialog(&cur.bv());
+               if (!cur.selection() && cmd.button() == mouse_button::button1)
+                       cur.bv().showDialog("vspace", params2string(space()), 
+                               const_cast<InsetVSpace *>(this));
                break;
 
        default:
@@ -72,19 +79,40 @@ void InsetVSpace::doDispatch(Cursor & cur, FuncRequest & cmd)
 }
 
 
+bool InsetVSpace::getStatus(Cursor & cur, FuncRequest const & cmd,
+       FuncStatus & status) const
+{
+       switch (cmd.action) {
+       // we handle these
+       case LFUN_INSET_MODIFY:
+               if (cmd.getArg(0) == "vspace") {
+                       VSpace vspace;
+                       InsetVSpace::string2params(to_utf8(cmd.argument()), vspace);
+                       status.setOnOff(vspace == space_);
+               } 
+               status.setEnabled(true);
+               return true;
+       default:
+               return Inset::getStatus(cur, cmd, status);
+       }
+}
+
+
+void InsetVSpace::edit(Cursor & cur, bool, EntryDirection)
+{
+       cur.bv().showDialog("vspace", params2string(space()), 
+               const_cast<InsetVSpace *>(this));
+}
+
+
 void InsetVSpace::read(Lexer & lex)
 {
-       BOOST_ASSERT(lex.isOK());
+       LASSERT(lex.isOK(), /**/);
        string vsp;
        lex >> vsp;
        if (lex)
                space_ = VSpace(vsp);
-
-       string end_token;
-       lex >> end_token;
-       if (end_token != "\\end_inset")
-               lex.printError("Missing \\end_inset at this point. "
-                              "Read: `$$Token'");
+       lex >> "\\end_inset";
 }
 
 
@@ -209,46 +237,30 @@ int InsetVSpace::docbook(odocstream & os, OutputParams const &) const
 }
 
 
-string const InsetVSpaceMailer::name_ = "vspace";
-
-
-InsetVSpaceMailer::InsetVSpaceMailer(InsetVSpace & inset)
-       : inset_(inset)
-{}
-
-
-string const InsetVSpaceMailer::inset2string(Buffer const &) const
+docstring InsetVSpace::contextMenu(BufferView const &, int, int) const
 {
-       return params2string(inset_.space());
+       return from_ascii("context-vspace");
 }
 
 
-void InsetVSpaceMailer::string2params(string const & in, VSpace & vspace)
+void InsetVSpace::string2params(string const & in, VSpace & vspace)
 {
        vspace = VSpace();
        if (in.empty())
                return;
 
        istringstream data(in);
-       Lexer lex(0,0);
+       Lexer lex;
        lex.setStream(data);
-
-       string name;
-       lex >> name;
-       if (!lex || name != name_)
-               return print_mailer_error("InsetVSpaceMailer", in, 1, name_);
-
-       string vsp;
-       lex >> vsp;
-       if (lex)
-               vspace = VSpace(vsp);
+       lex.setContext("InsetVSpace::string2params");
+       lex >> "vspace" >> vspace;
 }
 
 
-string const InsetVSpaceMailer::params2string(VSpace const & vspace)
+string InsetVSpace::params2string(VSpace const & vspace)
 {
        ostringstream data;
-       data << name_ << ' ' << vspace.asLyXCommand();
+       data << "vspace" << ' ' << vspace.asLyXCommand();
        return data.str();
 }