2002-02-27 09:59:52 +00:00
|
|
|
/*
|
|
|
|
* \file GraphicsCache.C
|
|
|
|
* Copyright 2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
2000-07-31 12:30:10 +00:00
|
|
|
*
|
2002-02-27 09:59:52 +00:00
|
|
|
* \author Baruch Even <baruch.even@writeme.com>
|
|
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
|
|
*/
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2000-07-31 16:39:50 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "GraphicsCache.h"
|
2001-02-22 16:53:59 +00:00
|
|
|
#include "GraphicsCacheItem.h"
|
2002-02-27 09:59:52 +00:00
|
|
|
#include "GraphicsImage.h"
|
|
|
|
#include "GraphicsParams.h"
|
|
|
|
#include "insets/insetgraphics.h"
|
2002-02-28 18:07:15 +00:00
|
|
|
#include "frontends/Dialogs.h"
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2002-02-27 17:27:59 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
namespace grfx {
|
|
|
|
|
|
|
|
GCache & GCache::get()
|
|
|
|
{
|
|
|
|
static bool start = true;
|
|
|
|
if (start) {
|
|
|
|
start = false;
|
2002-02-28 18:07:15 +00:00
|
|
|
Dialogs::initialiseGraphics();
|
2002-02-27 09:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now return the cache
|
|
|
|
static GCache singleton;
|
2000-09-14 17:53:12 +00:00
|
|
|
return singleton;
|
2000-07-31 12:30:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
GCache::GCache()
|
2000-07-31 16:39:50 +00:00
|
|
|
{
|
2002-02-27 09:59:52 +00:00
|
|
|
cache = new CacheType;
|
2000-07-31 16:39:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
// all elements are destroyed by the shared_ptr's in the map.
|
|
|
|
GCache::~GCache()
|
2000-07-31 12:30:10 +00:00
|
|
|
{
|
2002-02-27 09:59:52 +00:00
|
|
|
delete cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GCache::update(InsetGraphics const & inset)
|
|
|
|
{
|
|
|
|
// A subset only of InsetGraphicsParams is needed for display purposes.
|
|
|
|
// The GraphicsParams c-tor also interrogates lyxrc to ascertain whether
|
|
|
|
// to display or not.
|
|
|
|
GParams params(inset.params());
|
|
|
|
|
|
|
|
// Each inset can reference only one file, so check the cache for any
|
|
|
|
// graphics files referenced by inset. If the name of this file is
|
|
|
|
// different from that in params, then remove the reference.
|
|
|
|
CacheType::iterator it = find(inset);
|
|
|
|
|
|
|
|
if (it != cache->end()) {
|
|
|
|
CacheItemType item = it->second;
|
|
|
|
if (item->filename() != params.filename) {
|
|
|
|
item->remove(inset);
|
|
|
|
if (item->empty())
|
|
|
|
cache->erase(it);
|
|
|
|
}
|
2000-09-14 17:53:12 +00:00
|
|
|
}
|
2001-02-22 16:53:59 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
// Are we adding a new file or modifying the display of an existing one?
|
|
|
|
it = cache->find(params.filename);
|
|
|
|
|
|
|
|
if (it != cache->end()) {
|
|
|
|
it->second->modify(inset, params);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CacheItemType item(new GCacheItem(inset, params));
|
|
|
|
if (item.get() != 0)
|
|
|
|
(*cache)[params.filename] = item;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GCache::remove(InsetGraphics const & inset)
|
|
|
|
{
|
|
|
|
CacheType::iterator it = find(inset);
|
|
|
|
if (it == cache->end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
CacheItemType item = it->second;
|
|
|
|
item->remove(inset);
|
|
|
|
if (item->empty()) {
|
|
|
|
cache->erase(it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GCache::startLoading(InsetGraphics const & inset)
|
|
|
|
{
|
|
|
|
CacheType::iterator it = find(inset);
|
|
|
|
if (it == cache->end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
it->second->startLoading(inset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ImagePtr const GCache::image(InsetGraphics const & inset) const
|
|
|
|
{
|
|
|
|
CacheType::const_iterator it = find(inset);
|
|
|
|
if (it == cache->end())
|
|
|
|
return ImagePtr();
|
|
|
|
|
|
|
|
return it->second->image(inset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ImageStatus GCache::status(InsetGraphics const & inset) const
|
|
|
|
{
|
|
|
|
CacheType::const_iterator it = find(inset);
|
|
|
|
if (it == cache->end())
|
|
|
|
return ErrorUnknown;
|
|
|
|
|
|
|
|
return it->second->status(inset);
|
2000-07-31 12:30:10 +00:00
|
|
|
}
|
|
|
|
|
2000-07-31 16:39:50 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
void GCache::changeDisplay(bool changed_background)
|
2000-07-31 12:30:10 +00:00
|
|
|
{
|
2002-02-27 09:59:52 +00:00
|
|
|
CacheType::iterator it = cache->begin();
|
|
|
|
CacheType::iterator end = cache->end();
|
|
|
|
for(; it != end; ++it)
|
|
|
|
it->second->changeDisplay(changed_background);
|
|
|
|
}
|
2000-08-10 13:15:05 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
GCache::CacheType::iterator
|
|
|
|
GCache::find(InsetGraphics const & inset)
|
|
|
|
{
|
|
|
|
CacheType::iterator it = cache->begin();
|
|
|
|
for (; it != cache->end(); ++it) {
|
|
|
|
if (it->second->referencedBy(inset))
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cache->end();
|
2000-07-31 12:30:10 +00:00
|
|
|
}
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
GCache::CacheType::const_iterator
|
|
|
|
GCache::find(InsetGraphics const & inset) const
|
|
|
|
{
|
|
|
|
CacheType::const_iterator it = cache->begin();
|
|
|
|
for (; it != cache->end(); ++it) {
|
|
|
|
if (it->second->referencedBy(inset))
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cache->end();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace grfx
|