2003-07-25 17:11:25 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-10 10:18:58 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetWrap.h
|
2002-09-10 10:18:58 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Dekel Tsur
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-10 10:18:58 +00:00
|
|
|
*/
|
|
|
|
|
2003-12-01 13:35:49 +00:00
|
|
|
#ifndef INSETWRAP_H
|
|
|
|
#define INSETWRAP_H
|
2002-09-10 10:18:58 +00:00
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "InsetCollapsable.h"
|
2007-04-28 12:58:49 +00:00
|
|
|
#include "Length.h"
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "MailInset.h"
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
2002-09-10 10:18:58 +00:00
|
|
|
|
|
|
|
|
2005-01-19 15:03:31 +00:00
|
|
|
class InsetWrapParams {
|
|
|
|
public:
|
2003-03-05 23:19:45 +00:00
|
|
|
///
|
|
|
|
void write(std::ostream &) const;
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
void read(Lexer &);
|
2003-05-26 09:13:55 +00:00
|
|
|
|
2003-03-05 23:19:45 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string type;
|
2003-03-05 23:19:45 +00:00
|
|
|
///
|
2007-09-24 13:43:58 +00:00
|
|
|
int lines;
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string placement;
|
2003-03-05 23:19:45 +00:00
|
|
|
///
|
2007-09-24 13:43:58 +00:00
|
|
|
Length overhang;
|
|
|
|
///
|
2007-04-28 12:58:49 +00:00
|
|
|
Length width;
|
2003-03-05 23:19:45 +00:00
|
|
|
};
|
2002-09-10 10:18:58 +00:00
|
|
|
|
|
|
|
|
2003-03-05 23:19:45 +00:00
|
|
|
/** The wrap inset
|
|
|
|
*/
|
2002-09-10 10:18:58 +00:00
|
|
|
class InsetWrap : public InsetCollapsable {
|
|
|
|
public:
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
InsetWrap(BufferParams const &, std::string const &);
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
|
|
|
~InsetWrap();
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
void write(Buffer const & buf, std::ostream & os) const;
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
void read(Buffer const & buf, Lexer & lex);
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
///
|
2007-10-13 09:04:52 +00:00
|
|
|
InsetCode lyxCode() const { return WRAP_CODE; }
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
int latex(Buffer const &, odocstream &,
|
2007-05-28 22:27:45 +00:00
|
|
|
OutputParams const &) const;
|
2007-02-16 08:15:16 +00:00
|
|
|
///
|
|
|
|
int plaintext(Buffer const &, odocstream &,
|
2007-05-28 22:27:45 +00:00
|
|
|
OutputParams const &) const;
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
int docbook(Buffer const &, odocstream &,
|
2007-05-28 22:27:45 +00:00
|
|
|
OutputParams const &) const;
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
virtual docstring const editMessage() const;
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
2007-10-13 09:04:52 +00:00
|
|
|
bool insetAllowed(InsetCode) const;
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
2003-12-01 13:35:49 +00:00
|
|
|
bool showInsetDialog(BufferView *) const;
|
2003-03-05 23:19:45 +00:00
|
|
|
///
|
|
|
|
InsetWrapParams const & params() const { return params_; }
|
2005-04-22 08:57:22 +00:00
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
2007-08-12 21:43:58 +00:00
|
|
|
// Update the counters of this inset and of its contents
|
|
|
|
virtual void updateLabels(Buffer const &, ParIterator const &);
|
2003-10-17 18:01:15 +00:00
|
|
|
protected:
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2007-04-29 12:32:14 +00:00
|
|
|
///
|
2007-04-30 14:39:09 +00:00
|
|
|
virtual docstring name() const { return name_; }
|
2002-09-10 10:18:58 +00:00
|
|
|
private:
|
2007-08-30 18:03:17 +00:00
|
|
|
virtual Inset * clone() const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
2003-03-05 23:19:45 +00:00
|
|
|
InsetWrapParams params_;
|
2007-04-29 12:32:14 +00:00
|
|
|
///
|
|
|
|
docstring name_;
|
2003-03-05 23:19:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class InsetWrapMailer : public MailInset {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
InsetWrapMailer(InsetWrap & inset);
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
virtual Inset & inset() const { return inset_; }
|
2003-03-05 23:19:45 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
virtual std::string const & name() const { return name_; }
|
2003-03-05 23:19:45 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
virtual std::string const inset2string(Buffer const &) const;
|
2003-03-05 23:19:45 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
static void string2params(std::string const &, InsetWrapParams &);
|
2003-03-05 23:19:45 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
static std::string const params2string(InsetWrapParams const &);
|
2003-03-05 23:19:45 +00:00
|
|
|
private:
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
static std::string const name_;
|
2002-09-10 10:18:58 +00:00
|
|
|
///
|
2003-03-05 23:19:45 +00:00
|
|
|
InsetWrap & inset_;
|
2002-09-10 10:18:58 +00:00
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2002-09-10 10:18:58 +00:00
|
|
|
#endif
|