]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
reformatting and remove using delc
[lyx.git] / src / insets / insetparent.C
index 7bd4fa94da837ed1903fcfeac8344689661baaa1..128ee44b04de2ae93e90427db13bc10c41512c47 100644 (file)
 #include "LyXView.h"
 #include "lyxfunc.h"
 #include "commandtags.h"
+#include "buffer.h"
+#include "gettext.h"
 
+using std::ostream;
 
-InsetParent::InsetParent(string const & fn, Buffer * owner)
-       : InsetCommand("lyxparent")
+
+InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf)
+       : InsetCommand(p)
+{
+       string const fn = p.getContents();
+       setContents(MakeAbsPath(fn, OnlyPath(bf.fileName())));
+}
+
+
+string const InsetParent::getScreenLabel() const 
 {
-       if (owner)
-               setContents(MakeAbsPath(fn, OnlyPath(owner->fileName())));
-       else
-               setContents(fn);
+       return string(_("Parent:")) + getContents();
 }
 
 
 void InsetParent::Edit(BufferView * bv, int, int, unsigned int)
 {    
        bv->owner()->getLyXFunc()->
-               Dispatch(LFUN_CHILDOPEN, getContents().c_str());
+               Dispatch(LFUN_CHILDOPEN, getContents());
 }
 
 
 // LaTeX must just ignore this command
-int InsetParent::Latex(ostream & os, signed char fragile, bool free_spc) const
+int InsetParent::Latex(Buffer const * buf, ostream & os,
+                      bool fragile, bool free_spc) const
 {
        os << "%%#{lyx}";
-       InsetCommand::Latex(os, fragile, free_spc);
+       InsetCommand::Latex(buf, os, fragile, free_spc);
        return 0;
 }