]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
Make it compile when USE_BOOST_FORMAT is unset
[lyx.git] / src / insets / insetparent.C
index c190ce79980e80b62456d8adaca65bbfcf1aa762..a34133dd7708ca6f286b6b51162679e68dbaf561 100644 (file)
@@ -1,11 +1,12 @@
-/* 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 (C) 1997-1998 LyX Team
- * 
- *======================================================*/
+ * \author Alejandro Aguilar Sierra
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 
 // Created by asierra 970813
 #endif
 
 #include "insetparent.h"
-#include "filetools.h"
+#include "support/filetools.h"
 #include "BufferView.h"
-#include "LyXView.h"
-#include "lyxfunc.h"
-#include "commandtags.h"
+#include "frontends/LyXView.h"
+#include "support/LOstream.h"
+#include "funcrequest.h"
+#include "buffer.h"
+#include "gettext.h"
 
+#include "BoostFormat.h"
 
-extern BufferView *current_view;
+using std::ostream;
 
 
-InsetParent::InsetParent(LString fn, Buffer* owner): InsetCommand("lyxparent")
+InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf, bool)
+       : InsetCommand(p)
 {
-    if (owner)
-       setContents(MakeAbsPath(fn, OnlyPath(owner->getFileName())));
-    else
-       setContents(fn);
+       string const fn = p.getContents();
+       setContents(MakeAbsPath(fn, bf.filePath()));
 }
 
-void InsetParent::Edit(int, int)
-{    
-    current_view->getOwner()->getLyXFunc()->Dispatch(LFUN_CHILDOPEN, 
-                                                    getContents().c_str());
+
+string const InsetParent::getScreenLabel(Buffer const *) const
+{
+#if USE_BOOST_FORMAT
+       return boost::io::str(boost::format(_("Parent: %s")) % getContents());
+#else
+       return _("Parent: ") + getContents();
+#endif
 }
 
-// LaTeX must just ignore this command
-int InsetParent::Latex(FILE *file, signed char fragile)
+
+void InsetParent::edit(BufferView * bv, int, int, mouse_button::state)
 {
-    fprintf(file, "%%#{lyx}");
-    InsetCommand::Latex(file, fragile);
-    return 0;
+       bv->owner()->dispatch(FuncRequest(LFUN_CHILDOPEN, getContents()));
 }
 
+
+void InsetParent::edit(BufferView * bv, bool)
+{
+       edit(bv, 0, 0, mouse_button::none);
+}
+
+
 // LaTeX must just ignore this command
-int InsetParent::Latex(LString &file, signed char fragile)
+int InsetParent::latex(Buffer const * buf, ostream & os,
+                      bool fragile, bool free_spc) const
 {
-    file += "%%#{lyx}";
-    InsetCommand::Latex(file, fragile);
-    return 0;
+       os << "%%#{lyx}";
+       InsetCommand::latex(buf, os, fragile, free_spc);
+       return 0;
 }