]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / insetparent.C
index 4afdbab43c51414dee5593e708ec2971738d1079..9ded7ca7c3af5884d9749e10931925f9d6d73fd3 100644 (file)
@@ -1,31 +1,28 @@
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetparent.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Alejandro Aguilar Sierra
  *
- *           Copyright 1997-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 
 // Created by asierra 970813
 
 #include <config.h>
 
-
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "insetparent.h"
-#include "support/filetools.h"
 #include "BufferView.h"
 #include "frontends/LyXView.h"
 #include "support/LOstream.h"
-#include "commandtags.h"
+#include "funcrequest.h"
 #include "buffer.h"
 #include "gettext.h"
-#include "lyxfunc.h"
+
+#include "support/filetools.h"
+#include "support/lstrings.h"
 
 using std::ostream;
 
@@ -40,28 +37,27 @@ InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf, bool)
 
 string const InsetParent::getScreenLabel(Buffer const *) const
 {
-       return string(_("Parent:")) + getContents();
-}
-
-
-void InsetParent::edit(BufferView * bv, int, int, mouse_button::state)
-{    
-       bv->owner()->getLyXFunc()->
-               dispatch(LFUN_CHILDOPEN, getContents());
+       return bformat(_("Parent: %1$s"), getContents());
 }
 
 
-void InsetParent::edit(BufferView * bv, bool)
+dispatch_result InsetParent::localDispatch(FuncRequest const & cmd)
 {
-       edit(bv, 0, 0, mouse_button::none);
+       switch (cmd.action) {
+               case LFUN_INSET_EDIT:
+                       cmd.view()->owner()->dispatch(FuncRequest(LFUN_CHILDOPEN, getContents()));
+                       return DISPATCHED;
+               default:
+                       return UNDISPATCHED;
+       }
 }
 
 
 // LaTeX must just ignore this command
 int InsetParent::latex(Buffer const * buf, ostream & os,
-                      bool fragile, bool free_spc) const
+                      LatexRunParams const & runparams) const
 {
        os << "%%#{lyx}";
-       InsetCommand::latex(buf, os, fragile, free_spc);
+       InsetCommand::latex(buf, os, runparams);
        return 0;
 }