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
|
|
|
|
|
*
|
2002-09-09 17:32:53 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS
|
|
|
|
|
*/
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "insetcommand.h"
|
|
|
|
|
|
2002-08-01 17:28:59 +00:00
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
2002-05-29 16:21:03 +00:00
|
|
|
|
|
2000-07-27 08:55:59 +00:00
|
|
|
|
class Buffer;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
struct LaTeXFeatures;
|
|
|
|
|
|
|
|
|
|
// Created by AAS 970521
|
|
|
|
|
|
2002-09-09 17:32:53 +00:00
|
|
|
|
/// for including tex/lyx files
|
2001-04-17 14:17:11 +00:00
|
|
|
|
class InsetInclude: public InsetButton, boost::noncopyable {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
public:
|
2002-03-21 17:09:55 +00:00
|
|
|
|
/// the type of inclusion
|
|
|
|
|
enum Flags {
|
2002-09-09 17:32:53 +00:00
|
|
|
|
INCLUDE = 0, //<
|
|
|
|
|
VERB = 1, //<
|
|
|
|
|
INPUT = 2, //<
|
|
|
|
|
VERBAST = 3 //<
|
2001-03-14 10:57:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
2001-03-23 17:09:34 +00:00
|
|
|
|
struct Params {
|
2002-09-09 17:32:53 +00:00
|
|
|
|
Params(InsetCommandParams const & cp = InsetCommandParams("input"),
|
|
|
|
|
Flags f = INPUT,
|
2001-03-23 17:09:34 +00:00
|
|
|
|
string const & name = string())
|
2002-09-09 17:32:53 +00:00
|
|
|
|
: cparams(cp), flag(f),
|
2001-03-23 17:09:34 +00:00
|
|
|
|
masterFilename_(name) {}
|
2002-12-01 22:59:25 +00:00
|
|
|
|
|
2001-03-14 10:57:39 +00:00
|
|
|
|
InsetCommandParams cparams;
|
2001-03-23 17:09:34 +00:00
|
|
|
|
Flags flag;
|
|
|
|
|
string masterFilename_;
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
bool operator==(Params const &) const;
|
|
|
|
|
///
|
|
|
|
|
bool operator!=(Params const &) const;
|
2001-03-14 10:57:39 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
///
|
2001-03-23 17:09:34 +00:00
|
|
|
|
InsetInclude(Params const &);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2000-10-10 11:50:43 +00:00
|
|
|
|
InsetInclude(InsetCommandParams const &, Buffer const &);
|
2002-09-09 17:32:53 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
~InsetInclude();
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
2003-03-05 14:59:37 +00:00
|
|
|
|
///
|
|
|
|
|
virtual dispatch_result localDispatch(FuncRequest const & cmd);
|
|
|
|
|
|
2002-08-01 17:28:59 +00:00
|
|
|
|
/// Override these InsetButton methods if Previewing
|
|
|
|
|
int ascent(BufferView *, LyXFont const &) const;
|
|
|
|
|
///
|
|
|
|
|
int descent(BufferView *, LyXFont const &) const;
|
|
|
|
|
///
|
|
|
|
|
int width(BufferView *, LyXFont const &) const;
|
|
|
|
|
///
|
2003-03-17 01:34:36 +00:00
|
|
|
|
void draw(BufferView *, LyXFont const &, int, float &) const;
|
2002-08-01 17:28:59 +00:00
|
|
|
|
|
2001-03-14 10:57:39 +00:00
|
|
|
|
/// get the parameters
|
2001-03-23 17:09:34 +00:00
|
|
|
|
Params const & params(void) const;
|
2001-03-14 10:57:39 +00:00
|
|
|
|
/// set the parameters
|
2001-03-23 17:09:34 +00:00
|
|
|
|
void set(Params const & params);
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
2001-03-23 17:09:34 +00:00
|
|
|
|
///
|
2001-07-06 15:57:54 +00:00
|
|
|
|
virtual Inset * clone(Buffer const &, bool same_id = false) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
Inset::Code lyxCode() const { return Inset::INCLUDE_CODE; }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// This returns the list of labels on the child buffer
|
2000-09-14 17:53:12 +00:00
|
|
|
|
std::vector<string> const getLabelList() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// This returns the list of bibkeys on the child buffer
|
2003-02-18 14:44:49 +00:00
|
|
|
|
void fillWithBibKeys(std::vector<std::pair<string,string> > & keys) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2002-05-26 17:33:14 +00:00
|
|
|
|
void edit(BufferView *, int x, int y, mouse_button::state button);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-07-20 14:18:48 +00:00
|
|
|
|
void edit(BufferView * bv, bool front = true);
|
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
EDITABLE editable() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-03-08 13:52:57 +00:00
|
|
|
|
return IS_EDITABLE;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2001-07-20 14:18:48 +00:00
|
|
|
|
/// With lyx3 we won't overload these 3 methods
|
|
|
|
|
void write(Buffer const *, std::ostream &) const;
|
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void read(Buffer const *, LyXLex &);
|
2001-03-14 10:57:39 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
int latex(Buffer const *, std::ostream &,
|
2002-03-21 17:09:55 +00:00
|
|
|
|
bool fragile, bool free_spc) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
int ascii(Buffer const *, std::ostream &, int linelen) const;
|
2000-12-28 16:22:28 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
int linuxdoc(Buffer const *, std::ostream &) const;
|
2000-07-01 12:54:45 +00:00
|
|
|
|
///
|
2002-06-18 15:44:30 +00:00
|
|
|
|
int docbook(Buffer const *, std::ostream &, bool mixcont) const;
|
2000-07-01 12:54:45 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void validate(LaTeXFeatures &) const;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-03-19 18:25:36 +00:00
|
|
|
|
/// take up a whole row if we're not type INPUT
|
2000-04-04 00:19:15 +00:00
|
|
|
|
bool display() const;
|
2000-07-27 08:55:59 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// return true if the file is or got loaded.
|
|
|
|
|
bool loadIfNeeded() const;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2002-08-01 17:28:59 +00:00
|
|
|
|
///
|
|
|
|
|
void addPreview(grfx::PreviewLoader &) const;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
private:
|
2001-03-14 10:57:39 +00:00
|
|
|
|
/// get the text displayed on the button
|
2001-07-28 12:24:16 +00:00
|
|
|
|
string const getScreenLabel(Buffer const *) const;
|
2001-03-14 10:57:39 +00:00
|
|
|
|
/// is this a verbatim include ?
|
|
|
|
|
bool isVerbatim() const;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
/// get the filename of the master buffer
|
|
|
|
|
string const getMasterFilename() const;
|
|
|
|
|
/// get the included file name
|
|
|
|
|
string const getFileName() const;
|
2001-03-14 10:57:39 +00:00
|
|
|
|
|
|
|
|
|
/// the parameters
|
2001-03-23 17:09:34 +00:00
|
|
|
|
Params params_;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
/// holds the entity name that defines the file location (SGML)
|
2002-02-20 09:04:56 +00:00
|
|
|
|
string const include_label;
|
2002-08-01 17:28:59 +00:00
|
|
|
|
|
|
|
|
|
/// Use the Pimpl idiom to hide the internals of the previewer.
|
|
|
|
|
class PreviewImpl;
|
|
|
|
|
friend class PreviewImpl;
|
|
|
|
|
/// The pointer never changes although *preview_'s contents may.
|
|
|
|
|
boost::scoped_ptr<PreviewImpl> const preview_;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-03-14 10:57:39 +00:00
|
|
|
|
inline bool InsetInclude::isVerbatim() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-03-14 10:57:39 +00:00
|
|
|
|
return params_.flag == VERB || params_.flag == VERBAST;
|
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
|
|
|
|
///
|
|
|
|
|
virtual string const & name() const { return name_; }
|
|
|
|
|
///
|
|
|
|
|
virtual string const inset2string() const;
|
|
|
|
|
///
|
|
|
|
|
static void string2params(string const &, InsetInclude::Params &);
|
|
|
|
|
///
|
2003-03-07 14:08:10 +00:00
|
|
|
|
static string const params2string(InsetInclude::Params const &);
|
2003-03-05 14:59:37 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
2003-03-07 14:08:10 +00:00
|
|
|
|
static string const name_;
|
2003-03-05 14:59:37 +00:00
|
|
|
|
///
|
|
|
|
|
InsetInclude & inset_;
|
|
|
|
|
};
|
|
|
|
|
|
2002-09-09 17:32:53 +00:00
|
|
|
|
#endif // INSETINCLUDE_H
|