1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-09 17:32:53 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetinclude.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-09 17:32:53 +00:00
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#ifndef INSET_INCLUDE_H
|
|
|
|
|
#define INSET_INCLUDE_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
#include "inset.h"
|
|
|
|
|
#include "insetcommandparams.h"
|
2003-10-10 21:08:55 +00:00
|
|
|
|
#include "render_button.h"
|
2002-08-01 17:28:59 +00:00
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
2003-06-12 08:52:36 +00:00
|
|
|
|
|
2000-07-27 08:55:59 +00:00
|
|
|
|
class Buffer;
|
2003-09-07 01:45:40 +00:00
|
|
|
|
class Dimension;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
struct LaTeXFeatures;
|
2003-10-10 21:08:55 +00:00
|
|
|
|
class RenderMonitoredPreview;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2002-09-09 17:32:53 +00:00
|
|
|
|
/// for including tex/lyx files
|
2003-07-25 21:20:24 +00:00
|
|
|
|
class InsetInclude: public InsetOld {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
public:
|
2001-03-14 10:57:39 +00:00
|
|
|
|
///
|
2003-09-19 10:16:33 +00:00
|
|
|
|
InsetInclude(InsetCommandParams const &);
|
2003-06-12 08:52:36 +00:00
|
|
|
|
InsetInclude(InsetInclude const &);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
~InsetInclude();
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
///
|
|
|
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
|
|
|
|
|
2002-08-01 17:28:59 +00:00
|
|
|
|
/// Override these InsetButton methods if Previewing
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2002-08-01 17:28:59 +00:00
|
|
|
|
///
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2003-10-21 13:04:14 +00:00
|
|
|
|
///
|
|
|
|
|
virtual bool display() const { return true; }
|
2002-08-01 17:28:59 +00:00
|
|
|
|
|
2001-03-14 10:57:39 +00:00
|
|
|
|
/// get the parameters
|
2003-09-19 10:16:33 +00:00
|
|
|
|
InsetCommandParams const & params(void) const;
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
2003-05-26 09:13:55 +00:00
|
|
|
|
///
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld::Code lyxCode() const { return InsetOld::INCLUDE_CODE; }
|
2003-09-18 20:18:39 +00:00
|
|
|
|
/** Fills \c list
|
|
|
|
|
* \param buffer the Buffer containing this inset.
|
|
|
|
|
* \param list the list of labels in the child buffer.
|
|
|
|
|
*/
|
|
|
|
|
void getLabelList(Buffer const & buffer,
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::vector<std::string> & list) const;
|
2003-09-18 20:18:39 +00:00
|
|
|
|
/** Fills \c keys
|
|
|
|
|
* \param buffer the Buffer containing this inset.
|
|
|
|
|
* \param keys the list of bibkeys in the child buffer.
|
|
|
|
|
*/
|
|
|
|
|
///
|
|
|
|
|
void fillWithBibKeys(Buffer const & buffer,
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::vector<std::pair<std::string,std::string> > & keys) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-09-19 10:16:33 +00:00
|
|
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
2001-07-20 14:18:48 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void write(Buffer const &, std::ostream &) const;
|
2001-03-14 10:57:39 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void read(Buffer const &, LyXLex &);
|
|
|
|
|
///
|
2003-10-31 18:45:43 +00:00
|
|
|
|
int latex(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-11-05 12:06:20 +00:00
|
|
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
|
|
|
OutputParams const &) const;
|
2000-12-28 16:22:28 +00:00
|
|
|
|
///
|
2003-10-31 18:45:43 +00:00
|
|
|
|
int linuxdoc(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2000-07-01 12:54:45 +00:00
|
|
|
|
///
|
2003-10-31 18:45:43 +00:00
|
|
|
|
int docbook(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const &) const;
|
2000-07-01 12:54:45 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void validate(LaTeXFeatures &) const;
|
2002-08-01 17:28:59 +00:00
|
|
|
|
///
|
2003-07-04 08:23:23 +00:00
|
|
|
|
void addPreview(lyx::graphics::PreviewLoader &) const;
|
2003-10-17 18:01:15 +00:00
|
|
|
|
protected:
|
|
|
|
|
///
|
|
|
|
|
virtual
|
2003-10-29 10:47:21 +00:00
|
|
|
|
DispatchResult
|
2003-10-17 18:01:15 +00:00
|
|
|
|
priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
private:
|
2003-10-09 19:27:07 +00:00
|
|
|
|
/// Slot receiving a signal that the preview is ready to display.
|
|
|
|
|
void statusChanged() const;
|
2003-10-10 21:08:55 +00:00
|
|
|
|
/** Slot receiving a signal that the external file has changed
|
|
|
|
|
* and the preview should be regenerated.
|
|
|
|
|
*/
|
|
|
|
|
void fileChanged() const;
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
|
friend class InsetIncludeMailer;
|
2003-09-09 18:27:24 +00:00
|
|
|
|
|
2003-09-19 10:16:33 +00:00
|
|
|
|
/// set the parameters
|
|
|
|
|
void set(InsetCommandParams const & params, Buffer const &);
|
|
|
|
|
/// get the text displayed on the button
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const getScreenLabel(Buffer const &) const;
|
2003-08-28 07:41:31 +00:00
|
|
|
|
///
|
|
|
|
|
void write(std::ostream &) const;
|
|
|
|
|
///
|
|
|
|
|
void read(LyXLex &);
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
|
|
|
|
/// the parameters
|
2003-09-19 10:16:33 +00:00
|
|
|
|
InsetCommandParams params_;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
/// holds the entity name that defines the file location (SGML)
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string const include_label;
|
2002-08-01 17:28:59 +00:00
|
|
|
|
|
|
|
|
|
/// The pointer never changes although *preview_'s contents may.
|
2003-10-10 21:08:55 +00:00
|
|
|
|
boost::scoped_ptr<RenderMonitoredPreview> const preview_;
|
2003-06-02 10:03:27 +00:00
|
|
|
|
|
|
|
|
|
/// cache
|
2003-06-12 08:52:36 +00:00
|
|
|
|
mutable bool set_label_;
|
2003-10-10 21:08:55 +00:00
|
|
|
|
mutable RenderButton button_;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2003-03-05 14:59:37 +00:00
|
|
|
|
#include "mailinset.h"
|
|
|
|
|
|
|
|
|
|
class InsetIncludeMailer : public MailInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
InsetIncludeMailer(InsetInclude & inset);
|
|
|
|
|
///
|
2003-03-10 13:33:39 +00:00
|
|
|
|
virtual InsetBase & inset() const { return inset_; }
|
2003-03-05 14:59:37 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
virtual std::string const & name() const { return name_; }
|
2003-03-05 14:59:37 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
virtual std::string const inset2string(Buffer const &) const;
|
2003-03-05 14:59:37 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
static void string2params(std::string const &, InsetCommandParams &);
|
2003-03-05 14:59:37 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
static std::string const params2string(InsetCommandParams const &);
|
2003-03-05 14:59:37 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
static std::string const name_;
|
2003-03-05 14:59:37 +00:00
|
|
|
|
///
|
|
|
|
|
InsetInclude & inset_;
|
|
|
|
|
};
|
|
|
|
|
|
2002-09-09 17:32:53 +00:00
|
|
|
|
#endif // INSETINCLUDE_H
|