]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
The markDirty() and fitCursor() changes
[lyx.git] / src / insets / insetparent.C
index f516755bd15eaf1550640e6ee44e7b1e0ec6203c..f0edc618fa5b4b72119c6bf13d34fbed9e9fccba 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
+ * \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 "LyXView.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 "BoostFormat.h"
 
 using std::ostream;
 
@@ -40,20 +39,23 @@ InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf, bool)
 
 string const InsetParent::getScreenLabel(Buffer const *) const
 {
-       return string(_("Parent:")) + getContents();
+#if USE_BOOST_FORMAT
+       return boost::io::str(boost::format(_("Parent: %s")) % getContents());
+#else
+       return _("Parent: ") + getContents();
+#endif
 }
 
 
-void InsetParent::edit(BufferView * bv, int, int, unsigned int)
+void InsetParent::edit(BufferView * bv, int, int, mouse_button::state)
 {
-       bv->owner()->getLyXFunc()->
-               dispatch(LFUN_CHILDOPEN, getContents());
+       bv->owner()->dispatch(FuncRequest(LFUN_CHILDOPEN, getContents()));
 }
 
 
 void InsetParent::edit(BufferView * bv, bool)
 {
-       edit(bv, 0, 0, 0);
+       edit(bv, 0, 0, mouse_button::none);
 }