2009-06-05 17:49:10 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file output_xhtml.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Richard Heck
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OUTPUT_XHTML_H
|
|
|
|
#define OUTPUT_XHTML_H
|
|
|
|
|
2009-11-19 16:29:57 +00:00
|
|
|
#include "support/docstream.h"
|
|
|
|
|
|
|
|
#include <deque>
|
|
|
|
#include <vector>
|
2009-06-05 17:49:10 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
class Buffer;
|
|
|
|
class OutputParams;
|
2009-08-09 18:35:39 +00:00
|
|
|
class Text;
|
2009-06-05 17:49:10 +00:00
|
|
|
|
2009-11-19 18:28:36 +00:00
|
|
|
// Inspiration for the *Tag structs and for XHTMLStream
|
|
|
|
// came from MathStream and its cousins.
|
|
|
|
|
2009-11-19 16:29:57 +00:00
|
|
|
struct StartTag {
|
2009-11-19 18:24:19 +00:00
|
|
|
///
|
|
|
|
StartTag(std::string const & tag) : tag_(tag) {}
|
2009-11-19 16:29:57 +00:00
|
|
|
///
|
|
|
|
StartTag(std::string const & tag, std::string const & attr,
|
|
|
|
bool keepempty = false)
|
|
|
|
: tag_(tag), attr_(attr), keepempty_(keepempty) {}
|
2009-11-19 17:51:06 +00:00
|
|
|
/// <tag_ attr_>
|
|
|
|
docstring asTag() const;
|
|
|
|
/// </tag_>
|
|
|
|
docstring asEndTag() const;
|
2009-11-19 16:29:57 +00:00
|
|
|
///
|
|
|
|
std::string tag_;
|
|
|
|
///
|
|
|
|
std::string attr_;
|
|
|
|
/// whether to keep things like "<tag></tag>" or discard them
|
|
|
|
/// you would want this for td, e.g, but maybe not for a div
|
|
|
|
bool keepempty_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct EndTag {
|
|
|
|
///
|
|
|
|
EndTag(std::string tag) : tag_(tag) {}
|
2009-11-19 17:51:06 +00:00
|
|
|
/// </tag_>
|
|
|
|
docstring asEndTag() const;
|
2009-11-19 16:29:57 +00:00
|
|
|
///
|
|
|
|
std::string tag_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Tags like <img />
|
|
|
|
struct CompTag {
|
|
|
|
///
|
|
|
|
CompTag(std::string const & tag, std::string const & attr)
|
|
|
|
: tag_(tag), attr_(attr) {}
|
2009-11-19 17:51:06 +00:00
|
|
|
/// <tag_ attr_ />
|
|
|
|
docstring asTag() const;
|
2009-11-19 16:29:57 +00:00
|
|
|
///
|
|
|
|
std::string tag_;
|
|
|
|
///
|
|
|
|
std::string attr_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class XHTMLStream {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
explicit XHTMLStream(odocstream & os);
|
2009-06-05 18:41:28 +00:00
|
|
|
///
|
2009-11-19 16:29:57 +00:00
|
|
|
void cr();
|
|
|
|
///
|
|
|
|
odocstream & os() { return os_; }
|
|
|
|
///
|
|
|
|
// int & tab() { return tab_; }
|
|
|
|
/// closes any font tags that are eligible to be closed,
|
|
|
|
/// i.e., last on the tag_stack_.
|
|
|
|
/// \return false if there are open font tags we could not close.
|
|
|
|
/// because they are "blocked" by open non-font tags on the stack.
|
|
|
|
bool closeFontTags();
|
|
|
|
///
|
|
|
|
XHTMLStream & operator<<(docstring const &);
|
|
|
|
///
|
2009-11-19 20:22:04 +00:00
|
|
|
XHTMLStream & operator<<(const char *);
|
|
|
|
///
|
2009-11-19 17:51:06 +00:00
|
|
|
XHTMLStream & operator<<(char_type);
|
2009-11-19 16:29:57 +00:00
|
|
|
///
|
|
|
|
XHTMLStream & operator<<(StartTag const &);
|
|
|
|
///
|
|
|
|
XHTMLStream & operator<<(EndTag const &);
|
|
|
|
///
|
|
|
|
XHTMLStream & operator<<(CompTag const &);
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
void clearTagDeque();
|
|
|
|
///
|
|
|
|
bool isTagOpen(std::string const &);
|
|
|
|
///
|
|
|
|
odocstream & os_;
|
|
|
|
///
|
|
|
|
// int tab_;
|
|
|
|
///
|
|
|
|
typedef std::deque<StartTag> TagDeque;
|
|
|
|
///
|
|
|
|
typedef std::vector<StartTag> TagStack;
|
|
|
|
/// holds start tags until we know there is content in them.
|
|
|
|
TagDeque pending_tags_;
|
|
|
|
/// remembers the history, so we can make sure we nest properly.
|
|
|
|
TagStack tag_stack_;
|
|
|
|
};
|
|
|
|
|
2009-11-19 16:35:58 +00:00
|
|
|
///
|
|
|
|
void xhtmlParagraphs(Text const & text,
|
|
|
|
Buffer const & buf,
|
2009-11-19 17:51:06 +00:00
|
|
|
XHTMLStream & xs,
|
2009-11-19 16:35:58 +00:00
|
|
|
OutputParams const & runparams);
|
2009-11-19 16:29:57 +00:00
|
|
|
|
2009-11-19 16:35:58 +00:00
|
|
|
namespace html {
|
2009-11-19 16:29:57 +00:00
|
|
|
///
|
|
|
|
docstring escapeChar(char_type c);
|
|
|
|
/// converts a string to a form safe for links, etc
|
|
|
|
docstring htmlize(docstring const & str);
|
2009-11-19 17:51:06 +00:00
|
|
|
|
|
|
|
// to be removed
|
2009-11-19 16:29:57 +00:00
|
|
|
/// \return true if tag was opened, false if not
|
|
|
|
bool openTag(odocstream & os, std::string const & tag,
|
|
|
|
std::string const & attr);
|
|
|
|
/// \return true if tag was opened, false if not
|
|
|
|
bool closeTag(odocstream & os, std::string const & tag);
|
2009-06-05 17:49:10 +00:00
|
|
|
}
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif
|