mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
17c8764e0a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6651 a592a061-630c-0410-9148-cb99ea01b6c8
70 lines
1.4 KiB
C
70 lines
1.4 KiB
C
/**
|
|
* \file insetparent.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
|
|
// Created by asierra 970813
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "insetparent.h"
|
|
#include "support/filetools.h"
|
|
#include "BufferView.h"
|
|
#include "frontends/LyXView.h"
|
|
#include "support/LOstream.h"
|
|
#include "funcrequest.h"
|
|
#include "buffer.h"
|
|
#include "gettext.h"
|
|
|
|
#include "support/BoostFormat.h"
|
|
|
|
using std::ostream;
|
|
|
|
|
|
InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf, bool)
|
|
: InsetCommand(p)
|
|
{
|
|
string const fn = p.getContents();
|
|
setContents(MakeAbsPath(fn, bf.filePath()));
|
|
}
|
|
|
|
|
|
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
|
|
}
|
|
|
|
|
|
void InsetParent::edit(BufferView * bv, int, int, mouse_button::state)
|
|
{
|
|
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(Buffer const * buf, ostream & os,
|
|
bool fragile, bool free_spc) const
|
|
{
|
|
os << "%%#{lyx}";
|
|
InsetCommand::latex(buf, os, fragile, free_spc);
|
|
return 0;
|
|
}
|