mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
8b67659646
Known problems: - No space is output after a \hfill. I probably broke this with the InsetCommand patch. I'll have a look later. - Although the encoding is now UTF8 the arguments of the inputenc package are still the old ones, so LaTeX will not run. - Labels and references with non-ASCII characters are broken. This needs to be fixed in lyx::support::escape(), but this is a file format change. - Something seems to be wrong with index entries, but this is probably also due to the InsetCommand changes. Have fun! git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15378 a592a061-630c-0410-9148-cb99ea01b6c8
131 lines
3.5 KiB
C++
131 lines
3.5 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file render_preview.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*
|
|
* lyx::graphics::RenderPreview is an abstract base class that can help
|
|
* insets to generate previews. The daughter class must instantiate two small
|
|
* methods. The Inset would own an instance of this daughter class.
|
|
*/
|
|
|
|
#ifndef RENDER_PREVIEW_H
|
|
#define RENDER_PREVIEW_H
|
|
|
|
#include "render_base.h"
|
|
|
|
#include "support/FileMonitor.h"
|
|
#include "support/docstring.h"
|
|
|
|
#include <boost/signal.hpp>
|
|
#include <boost/signals/trackable.hpp>
|
|
#include <boost/signals/connection.hpp>
|
|
|
|
class Buffer;
|
|
class LyXRC_PreviewStatus;
|
|
class MetricsInfo;
|
|
class PainterInfo;
|
|
|
|
namespace lyx {
|
|
namespace graphics {
|
|
|
|
class PreviewImage;
|
|
class PreviewLoader;
|
|
|
|
} // namespace graphics
|
|
} // namespace lyx
|
|
|
|
|
|
class RenderPreview : public RenderBase, public boost::signals::trackable {
|
|
public:
|
|
/// a wrapper for Previews::status()
|
|
static LyXRC_PreviewStatus status();
|
|
|
|
RenderPreview(InsetBase const *);
|
|
RenderPreview(RenderPreview const &, InsetBase const *);
|
|
std::auto_ptr<RenderBase> clone(InsetBase const *) const;
|
|
|
|
/// Compute the size of the object, returned in dim
|
|
void metrics(MetricsInfo &, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
/** Find the PreviewLoader and add a LaTeX snippet to it.
|
|
* Do not start the loading process.
|
|
*/
|
|
void addPreview(lyx::docstring const & latex_snippet, Buffer const &);
|
|
|
|
/** Add a LaTeX snippet to the PreviewLoader.
|
|
* Do not start the loading process.
|
|
*/
|
|
void addPreview(lyx::docstring const & latex_snippet,
|
|
lyx::graphics::PreviewLoader & ploader);
|
|
|
|
/// Begin the loading process.
|
|
void startLoading(Buffer const & buffer) const;
|
|
|
|
/** Remove a snippet from the cache of previews.
|
|
* Useful if previewing the contents of a file that has changed.
|
|
*/
|
|
void removePreview(Buffer const &);
|
|
|
|
/** \returns a pointer to the PreviewImage associated with this snippet
|
|
* of latex.
|
|
*/
|
|
lyx::graphics::PreviewImage const *
|
|
getPreviewImage(Buffer const & buffer) const;
|
|
|
|
/// equivalent to dynamic_cast
|
|
virtual RenderPreview * asPreview() { return this; }
|
|
|
|
private:
|
|
/// Not implemented.
|
|
RenderPreview & operator=(RenderPreview const &);
|
|
|
|
/// This method is connected to the PreviewLoader::imageReady signal.
|
|
void imageReady(lyx::graphics::PreviewImage const &);
|
|
|
|
/// The thing that we're trying to generate a preview of.
|
|
std::string snippet_;
|
|
|
|
/** Store the connection to the preview loader so that we connect
|
|
* only once.
|
|
*/
|
|
boost::signals::connection ploader_connection_;
|
|
|
|
/// Inform the core that the inset has changed.
|
|
InsetBase const * parent_;
|
|
};
|
|
|
|
|
|
class RenderMonitoredPreview : public RenderPreview {
|
|
public:
|
|
RenderMonitoredPreview(InsetBase const *);
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
///
|
|
void setAbsFile(std::string const & file);
|
|
///
|
|
bool monitoring() const { return monitor_.monitoring(); }
|
|
void startMonitoring() const { monitor_.start(); }
|
|
void stopMonitoring() const { monitor_.stop(); }
|
|
|
|
|
|
/// Connect and you'll be informed when the file changes.
|
|
typedef lyx::support::FileMonitor::slot_type slot_type;
|
|
boost::signals::connection fileChanged(slot_type const &);
|
|
|
|
/// equivalent to dynamic_cast
|
|
virtual RenderMonitoredPreview * asMonitoredPreview() { return this; }
|
|
|
|
private:
|
|
///
|
|
mutable lyx::support::FileMonitor monitor_;
|
|
};
|
|
|
|
#endif // RENDERPREVIEW_H
|