mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 02:49:46 +00:00
94e61a3bc9
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20202 a592a061-630c-0410-9148-cb99ea01b6c8
203 lines
5.0 KiB
C++
203 lines
5.0 KiB
C++
/**
|
|
* \file ControlGraphics.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
* \author Herbert Voß
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "ControlGraphics.h"
|
|
|
|
#include "frontend_helpers.h"
|
|
|
|
#include "FuncRequest.h"
|
|
#include "gettext.h"
|
|
#include "LyXRC.h"
|
|
|
|
#include "graphics/GraphicsCache.h"
|
|
#include "graphics/GraphicsCacheItem.h"
|
|
#include "graphics/GraphicsImage.h"
|
|
|
|
#include "insets/InsetGraphics.h"
|
|
|
|
#include "support/convert.h"
|
|
#include "support/FileFilterList.h"
|
|
#include "support/filetools.h"
|
|
#include "support/Package.h"
|
|
#include "support/types.h"
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
|
|
|
using std::make_pair;
|
|
using std::string;
|
|
using std::pair;
|
|
using std::vector;
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
namespace lyx {
|
|
|
|
using support::addName;
|
|
using support::FileFilterList;
|
|
using support::FileName;
|
|
using support::isFileReadable;
|
|
using support::makeAbsPath;
|
|
using support::package;
|
|
using support::readBB_from_PSFile;
|
|
|
|
namespace frontend {
|
|
|
|
|
|
ControlGraphics::ControlGraphics(Dialog & parent)
|
|
: Controller(parent)
|
|
{}
|
|
|
|
|
|
bool ControlGraphics::initialiseParams(string const & data)
|
|
{
|
|
InsetGraphicsParams params;
|
|
InsetGraphicsMailer::string2params(data, buffer(), params);
|
|
params_.reset(new InsetGraphicsParams(params));
|
|
return true;
|
|
}
|
|
|
|
|
|
void ControlGraphics::clearParams()
|
|
{
|
|
params_.reset();
|
|
}
|
|
|
|
|
|
void ControlGraphics::dispatchParams()
|
|
{
|
|
InsetGraphicsParams tmp_params(params());
|
|
string const lfun =
|
|
InsetGraphicsMailer::params2string(tmp_params, buffer());
|
|
dispatch(FuncRequest(getLfun(), lfun));
|
|
}
|
|
|
|
|
|
docstring const ControlGraphics::browse(docstring const & in_name) const
|
|
{
|
|
docstring const title = _("Select graphics file");
|
|
|
|
// Does user clipart directory exist?
|
|
string clipdir = addName(package().user_support().absFilename(), "clipart");
|
|
string const encoded_clipdir = FileName(clipdir).toFilesystemEncoding();
|
|
if (!(fs::exists(encoded_clipdir) && fs::is_directory(encoded_clipdir)))
|
|
// No - bail out to system clipart directory
|
|
clipdir = addName(package().system_support().absFilename(), "clipart");
|
|
pair<docstring, docstring> dir1(_("Clipart|#C#c"), from_utf8(clipdir));
|
|
pair<docstring, docstring> dir2(_("Documents|#o#O"), from_utf8(lyxrc.document_path));
|
|
// Show the file browser dialog
|
|
return browseRelFile(in_name, from_utf8(bufferFilepath()),
|
|
title,
|
|
FileFilterList(),
|
|
false, dir1, dir2);
|
|
}
|
|
|
|
|
|
string const ControlGraphics::readBB(string const & file)
|
|
{
|
|
FileName const abs_file(makeAbsPath(file, bufferFilepath()));
|
|
|
|
// try to get it from the file, if possible. Zipped files are
|
|
// unzipped in the readBB_from_PSFile-Function
|
|
string const bb = readBB_from_PSFile(abs_file);
|
|
if (!bb.empty())
|
|
return bb;
|
|
|
|
// we don't, so ask the Graphics Cache if it has loaded the file
|
|
int width = 0;
|
|
int height = 0;
|
|
|
|
graphics::Cache & gc = graphics::Cache::get();
|
|
if (gc.inCache(abs_file)) {
|
|
graphics::Image const * image = gc.item(abs_file)->image();
|
|
|
|
if (image) {
|
|
width = image->getWidth();
|
|
height = image->getHeight();
|
|
}
|
|
}
|
|
|
|
return ("0 0 " + convert<string>(width) + ' ' + convert<string>(height));
|
|
}
|
|
|
|
|
|
bool ControlGraphics::isFilenameValid(string const & fname) const
|
|
{
|
|
// It may be that the filename is relative.
|
|
FileName const name(makeAbsPath(fname, bufferFilepath()));
|
|
return isFileReadable(name);
|
|
}
|
|
|
|
|
|
void ControlGraphics::editGraphics()
|
|
{
|
|
BOOST_ASSERT(params_.get());
|
|
|
|
dialog().applyView();
|
|
string const lfun =
|
|
InsetGraphicsMailer::params2string(params(), buffer());
|
|
dispatch(FuncRequest(LFUN_GRAPHICS_EDIT, lfun));
|
|
}
|
|
|
|
|
|
namespace {
|
|
|
|
char const * const bb_units[] = { "bp", "cm", "mm", "in" };
|
|
size_t const bb_size = sizeof(bb_units) / sizeof(char *);
|
|
|
|
// These are the strings that are stored in the LyX file and which
|
|
// correspond to the LaTeX identifiers shown in the comments at the
|
|
// end of each line.
|
|
char const * const rorigin_lyx_strs[] = {
|
|
// the LaTeX default is leftBaseline
|
|
"",
|
|
"leftTop", "leftBottom", "leftBaseline", // lt lb lB
|
|
"center", "centerTop", "centerBottom", "centerBaseline", // c ct cb cB
|
|
"rightTop", "rightBottom", "rightBaseline" }; // rt rb rB
|
|
|
|
// These are the strings, corresponding to the above, that the GUI should
|
|
// use. Note that they can/should be translated.
|
|
char const * const rorigin_gui_strs[] = {
|
|
N_("Default"),
|
|
N_("Top left"), N_("Bottom left"), N_("Baseline left"),
|
|
N_("Center"), N_("Top center"), N_("Bottom center"), N_("Baseline center"),
|
|
N_("Top right"), N_("Bottom right"), N_("Baseline right") };
|
|
|
|
size_t const rorigin_size = sizeof(rorigin_lyx_strs) / sizeof(char *);
|
|
|
|
} // namespace anon
|
|
|
|
|
|
vector<string> const getBBUnits()
|
|
{
|
|
return vector<string>(bb_units, bb_units + bb_size);
|
|
}
|
|
|
|
|
|
vector<RotationOriginPair> getRotationOriginData()
|
|
{
|
|
static vector<RotationOriginPair> data;
|
|
if (!data.empty())
|
|
return data;
|
|
|
|
data.resize(rorigin_size);
|
|
for (size_type i = 0; i < rorigin_size; ++i) {
|
|
data[i] = make_pair(_(rorigin_gui_strs[i]),
|
|
rorigin_lyx_strs[i]);
|
|
}
|
|
|
|
return data;
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|