]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
fix #832
[lyx.git] / src / insets / insetparent.C
index cf495ec7ec44ed4a0055b7ca8892705e9037c0dd..7f1097ba6f7560743f59e9dac0e52ca20c81c460 100644 (file)
@@ -1,30 +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
- *      
- *           Copyright 1997-2001 The LyX Team.
- * 
- * ====================================================== */
+ * \author Alejandro Aguilar Sierra
+ *
+ * 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 "LyXView.h"
-#include "commandtags.h"
+#include "frontends/LyXView.h"
+#include "support/LOstream.h"
+#include "funcrequest.h"
 #include "buffer.h"
 #include "gettext.h"
-#include "lyxfunc.h"
+
+#include "support/filetools.h"
+#include "support/lstrings.h"
 
 using std::ostream;
 
@@ -33,26 +31,25 @@ InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf, bool)
        : InsetCommand(p)
 {
        string const fn = p.getContents();
-       setContents(MakeAbsPath(fn, OnlyPath(bf.fileName())));
+       setContents(MakeAbsPath(fn, bf.filePath()));
 }
 
 
-string const InsetParent::getScreenLabel(Buffer const *) const 
+string const InsetParent::getScreenLabel(Buffer const *) const
 {
-       return string(_("Parent:")) + getContents();
-}
-
-
-void InsetParent::edit(BufferView * bv, int, int, unsigned int)
-{    
-       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, 0);
+       switch (cmd.action) {
+               case LFUN_INSET_EDIT:
+                       cmd.view()->owner()->dispatch(FuncRequest(LFUN_CHILDOPEN, getContents()));
+                       return DISPATCHED;
+               default:
+                       return UNDISPATCHED;
+       }
 }