2001-03-28 12:59:29 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2001 The LyX Team.
|
|
|
|
*
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* \file ControlGraphics.C
|
|
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-04-26 18:40:38 +00:00
|
|
|
#include "ViewBase.h"
|
|
|
|
#include "ButtonControllerBase.h"
|
2001-03-28 12:59:29 +00:00
|
|
|
#include "ControlGraphics.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "Dialogs.h"
|
|
|
|
#include "LyXView.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
#include "gettext.h"
|
2001-03-28 12:59:29 +00:00
|
|
|
|
|
|
|
#include "insets/insetgraphics.h"
|
2001-04-26 18:40:38 +00:00
|
|
|
#include "insets/insetgraphicsParams.h" // need operator!=()
|
2001-03-28 12:59:29 +00:00
|
|
|
|
2001-03-30 09:51:46 +00:00
|
|
|
#include "support/FileInfo.h" // for FileInfo
|
|
|
|
#include "helper_funcs.h" // for browseFile
|
|
|
|
#include "support/filetools.h" // for AddName
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "BufferView.h"
|
2001-03-30 09:51:46 +00:00
|
|
|
|
|
|
|
using std::pair;
|
|
|
|
using std::make_pair;
|
|
|
|
|
2001-03-28 12:59:29 +00:00
|
|
|
ControlGraphics::ControlGraphics(LyXView & lv, Dialogs & d)
|
|
|
|
: ControlInset<InsetGraphics, InsetGraphicsParams>(lv, d)
|
|
|
|
{
|
|
|
|
d_.showGraphics.connect(SigC::slot(this, &ControlGraphics::showInset));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
InsetGraphicsParams const ControlGraphics::getParams(string const &)
|
|
|
|
{
|
|
|
|
return InsetGraphicsParams();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
InsetGraphicsParams const
|
|
|
|
ControlGraphics::getParams(InsetGraphics const & inset)
|
|
|
|
{
|
|
|
|
return inset.getParams();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ControlGraphics::applyParamsToInset()
|
|
|
|
{
|
|
|
|
// Set the parameters in the inset, it also returns true if the new
|
|
|
|
// parameters are different from what was in the inset already.
|
|
|
|
bool changed = inset()->setParams(params());
|
|
|
|
// Tell LyX we've got a change, and mark the document dirty,
|
|
|
|
// if it changed.
|
|
|
|
lv_.view()->updateInset(inset(), changed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ControlGraphics::applyParamsNoInset()
|
|
|
|
{}
|
2001-03-30 09:51:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
// We need these in the file browser.
|
|
|
|
extern string system_lyxdir;
|
|
|
|
extern string user_lyxdir;
|
|
|
|
|
|
|
|
string const ControlGraphics::Browse(string const & in_name)
|
|
|
|
{
|
2002-01-13 15:01:25 +00:00
|
|
|
string const title = N_("Graphics|#G#g");
|
2001-03-30 09:51:46 +00:00
|
|
|
// FIXME: currently we need the second '|' to prevent mis-interpretation
|
2001-09-14 13:46:55 +00:00
|
|
|
string const pattern = "*.(eps|png|jpeg|jpg|gif)|";
|
2001-03-30 09:51:46 +00:00
|
|
|
|
|
|
|
// Does user clipart directory exist?
|
|
|
|
string clipdir = AddName (user_lyxdir, "clipart");
|
|
|
|
FileInfo fileInfo(clipdir);
|
|
|
|
if (!(fileInfo.isOK() && fileInfo.isDir()))
|
|
|
|
// No - bail out to system clipart directory
|
|
|
|
clipdir = AddName (system_lyxdir, "clipart");
|
2002-01-13 15:01:25 +00:00
|
|
|
pair<string, string> dir1(N_("Clipart|#C#c"), clipdir);
|
2001-03-30 09:51:46 +00:00
|
|
|
|
|
|
|
// Show the file browser dialog
|
2002-01-13 15:01:25 +00:00
|
|
|
return browseFile(&lv_, in_name, title, pattern, dir1);
|
2001-03-30 09:51:46 +00:00
|
|
|
}
|