lyx_mirror/src/frontends/controllers/ControlInclude.C

115 lines
2.2 KiB
C++
Raw Normal View History

/**
* \file ControlInclude.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Alejandro Aguilar Sierra
* \author John Levon
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "ControlInclude.h"
#include "helper_funcs.h"
#include "Kernel.h"
#include "buffer.h"
#include "funcrequest.h"
#include "gettext.h"
#include "lyxrc.h"
#include "insets/insetinclude.h"
#include "support/filetools.h"
#include <utility>
using lyx::support::IsFileReadable;
using lyx::support::MakeAbsPath;
using lyx::support::OnlyPath;
using std::pair;
using std::string;
ControlInclude::ControlInclude(Dialog & parent)
: Dialog::Controller(parent)
{}
bool ControlInclude::initialiseParams(string const & data)
{
InsetIncludeMailer::string2params(data, params_);
return true;
}
void ControlInclude::clearParams()
{
params_ = InsetCommandParams();
}
void ControlInclude::dispatchParams()
{
string const lfun = InsetIncludeMailer::params2string(params_);
kernel().dispatch(FuncRequest(LFUN_INSET_APPLY, lfun));
}
void ControlInclude::setParams(InsetCommandParams const & params)
{
params_ = params;
}
string const ControlInclude::Browse(string const & in_name, Type in_type)
{
string const title = _("Select document to include");
// input TeX, verbatim, or LyX file ?
string pattern;
switch (in_type) {
case INPUT:
pattern = _("*.(tex|lyx)| LaTeX/LyX Documents (*.tex *.lyx)");
break;
case VERBATIM:
pattern = _("*| All files (*)");
break;
case INCLUDE:
pattern = _("*.(tex|lyx)| LaTeX/LyX Documents (*.tex *.lyx)");
break;
}
pair<string, string> dir1(N_("Documents|#o#O"),
string(lyxrc.document_path));
string const docpath = OnlyPath(kernel().buffer().fileName());
return browseRelFile(in_name, docpath, title, pattern, false, dir1);
}
void ControlInclude::load(string const & file)
{
kernel().dispatch(FuncRequest(LFUN_CHILDOPEN, file));
}
bool ControlInclude::fileExists(string const & file)
{
string const fileWithAbsPath
= MakeAbsPath(file,
OnlyPath(kernel().buffer().fileName()));
if (IsFileReadable(fileWithAbsPath))
return true;
return false;
}