mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a9b448a027
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@581 a592a061-630c-0410-9148-cb99ea01b6c8
63 lines
1.2 KiB
C
63 lines
1.2 KiB
C
/* This file is part of*
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright (C) 1997-1999 LyX Team
|
|
*
|
|
* ====================================================== */
|
|
|
|
|
|
// 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 "lyxfunc.h"
|
|
#include "commandtags.h"
|
|
|
|
|
|
InsetParent::InsetParent(string const & fn, Buffer * owner)
|
|
: InsetCommand("lyxparent")
|
|
{
|
|
if (owner)
|
|
setContents(MakeAbsPath(fn, OnlyPath(owner->fileName())));
|
|
else
|
|
setContents(fn);
|
|
}
|
|
|
|
|
|
void InsetParent::Edit(BufferView * bv, int, int, unsigned int)
|
|
{
|
|
bv->owner()->getLyXFunc()->
|
|
Dispatch(LFUN_CHILDOPEN, getContents().c_str());
|
|
}
|
|
|
|
|
|
// LaTeX must just ignore this command
|
|
int InsetParent::Latex(ostream & os, signed char fragile) const
|
|
{
|
|
os << "%%#{lyx}";
|
|
InsetCommand::Latex(os, fragile);
|
|
return 0;
|
|
}
|
|
|
|
|
|
#ifndef USE_OSTREAM_ONLY
|
|
// LaTeX must just ignore this command
|
|
int InsetParent::Latex(string & file, signed char fragile) const
|
|
{
|
|
file += "%%#{lyx}";
|
|
InsetCommand::Latex(file, fragile);
|
|
return 0;
|
|
}
|
|
#endif
|