summaryrefslogtreecommitdiff
path: root/udm/inc/udm/html/htmlitem.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'udm/inc/udm/html/htmlitem.hxx')
-rw-r--r--udm/inc/udm/html/htmlitem.hxx408
1 files changed, 408 insertions, 0 deletions
diff --git a/udm/inc/udm/html/htmlitem.hxx b/udm/inc/udm/html/htmlitem.hxx
new file mode 100644
index 000000000000..3e24d36c4859
--- /dev/null
+++ b/udm/inc/udm/html/htmlitem.hxx
@@ -0,0 +1,408 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#ifndef CSI_HTML_HTMLITEM_HXX
+#define CSI_HTML_HTMLITEM_HXX
+
+// USED SERVICES
+ // BASE CLASSES
+#include <udm/xml/xmlitem.hxx>
+ // COMPONENTS
+ // PARAMETERS
+
+
+#define COMPATIBLE_NETSCAPE_47
+
+namespace csi
+{
+namespace html
+{
+
+
+
+/** <BODY>
+*/
+class Body : public csi::xml::AnElement
+{
+ public:
+ Body()
+ : csi::xml::AnElement( "body" ) {}
+ private:
+ virtual bool LineBreakAfterBeginTag() const;
+};
+
+
+#ifdef COMPATIBLE_NETSCAPE_47
+/** <BR>
+*/
+class HorizontalLine : public xml::XmlCode
+{
+ public:
+ HorizontalLine()
+ : xml::XmlCode("<hr>\n") {}
+};
+
+#else
+/** <HR>
+*/
+class HorizontalLine : public csi::xml::AnEmptyElement
+{
+ public:
+ HorizontalLine()
+ : csi::xml::AnEmptyElement("hr") {}
+ private:
+ virtual bool LineBreakAfterBeginTag() const;
+};
+#endif
+
+
+/** <IMG .... >
+*/
+class Image : public csi::xml::AnEmptyElement
+{
+ public:
+ Image(
+ const ::csv::String & i_sSrc,
+ const ::csv::String & i_sWidth,
+ const ::csv::String & i_sHeight,
+ const ::csv::String & i_sAlign,
+ const ::csv::String & i_sBorder );
+};
+
+/** <A name="">
+*/
+class Label : public csi::xml::AnElement
+{
+ public:
+ Label(
+ const ::csv::String & i_sLabel )
+ : csi::xml::AnElement("a")
+ { *this << new csi::xml::AnAttribute(String("name"), i_sLabel); }
+};
+
+/** <p>
+*/
+class Paragraph : public csi::xml::AnElement
+{
+ public:
+ Paragraph()
+ : csi::xml::AnElement("p") {}
+ private:
+ virtual bool LineBreakAfterEndTag() const;
+};
+
+/** <H1-6>
+*/
+class Headline : public csi::xml::APureElement
+{
+ public:
+ Headline(
+ int i_nNr )
+ : csi::xml::APureElement(sTags[i_nNr-1]) { csv_assert(1 <= i_nNr AND i_nNr < 7); }
+ private:
+ static const char * sTags[6];
+ virtual bool LineBreakAfterEndTag() const;
+};
+
+#ifdef COMPATIBLE_NETSCAPE_47
+/** <BR>
+*/
+class LineBreak : public xml::XmlCode
+{
+ public:
+ LineBreak()
+ : xml::XmlCode("<br>\n") {}
+};
+
+#else
+/** <BR>
+*/
+class LineBreak : public csi::xml::ASglTag
+{
+ public:
+ LineBreak()
+ : csi::xml::ASglTag("br") {}
+ private:
+ virtual bool LineBreakAfterBeginTag() const;
+};
+#endif
+
+
+/** <b>
+*/
+class Bold : public csi::xml::APureElement
+{
+ public:
+ Bold()
+ : csi::xml::APureElement("b") {}
+};
+
+/** <i>
+*/
+class Italic : public csi::xml::APureElement
+{
+ public:
+ Italic()
+ : csi::xml::APureElement("i") {}
+};
+
+/** <strong>
+*/
+class Strong : public csi::xml::APureElement
+{
+ public:
+ Strong()
+ : csi::xml::APureElement("strong") {}
+};
+
+/** <em>
+*/
+class Emphasized : public csi::xml::APureElement
+{
+ public:
+ Emphasized()
+ : csi::xml::APureElement("em") {}
+};
+
+/** <font>
+*/
+class Font : public csi::xml::AnElement
+{
+ public:
+ Font()
+ : csi::xml::AnElement("font") {}
+};
+
+
+/** <A href="">
+*/
+class Link : public csi::xml::AnElement
+{
+ public:
+ Link(
+ const ::csv::String &i_sDestinaton )
+ : csi::xml::AnElement("a")
+ { *this << new csi::xml::AnAttribute(String("href"), i_sDestinaton); }
+};
+
+class TableCell : public csi::xml::AnElement
+{
+ public:
+ TableCell()
+ : csi::xml::AnElement("td") {}
+ private:
+ virtual bool LineBreakAfterEndTag() const;
+};
+
+class TableRow : public csi::xml::AnElement
+{
+ public:
+ TableRow()
+ : csi::xml::AnElement("tr") {}
+
+ TableCell & AddCell(
+ DYN csi::xml::Item* let_dpItem = 0 );
+ private:
+ virtual bool LineBreakAfterBeginTag() const;
+};
+
+/** <table ....>
+*/
+class Table : public csi::xml::AnElement
+{
+ public:
+ Table()
+ : csi::xml::AnElement("table") {}
+ Table(
+ const ::csv::String & i_sBorder,
+ const ::csv::String & i_sWidth,
+ const ::csv::String & i_sCellPadding,
+ const ::csv::String & i_sCellSpacing );
+ TableRow & AddRow();
+ private:
+ virtual bool FinishEmptyTag_XmlStyle() const;
+ virtual bool LineBreakAfterBeginTag() const;
+};
+
+
+
+class DefListTerm : public csi::xml::AnElement
+{
+ public:
+ DefListTerm()
+ : csi::xml::AnElement("dt") {}
+ private:
+ virtual bool LineBreakAfterEndTag() const;
+};
+
+class DefListDefinition : public csi::xml::AnElement
+{
+ public:
+ DefListDefinition()
+ : csi::xml::AnElement("dd") {}
+ private:
+ virtual bool LineBreakAfterEndTag() const;
+};
+
+/** <DL>
+*/
+class DefList : public csi::xml::AnElement
+{
+ public:
+ DefList()
+ : csi::xml::AnElement("dl") {}
+
+ DefListTerm & AddTerm(
+ DYN csi::xml::Item* let_dpItem = 0 );
+ DefListDefinition & AddDefinition(
+ DYN csi::xml::Item* let_dpItem = 0 );
+ private:
+ virtual bool LineBreakAfterBeginTag() const;
+ virtual bool FinishEmptyTag_XmlStyle() const;
+};
+
+
+class ListItem : public csi::xml::AnElement
+{
+ public:
+ ListItem()
+ : csi::xml::AnElement("li") {}
+ private:
+ virtual bool LineBreakAfterEndTag() const;
+};
+
+/** <OL>
+*/
+class NumeratedList : public csi::xml::AnElement
+{
+ public:
+ NumeratedList()
+ : csi::xml::AnElement("ol") {}
+
+ ListItem & AddItem(
+ DYN csi::xml::Item* let_dpItem = 0 );
+ private:
+ virtual bool LineBreakAfterBeginTag() const;
+};
+
+/** <UL>
+*/
+class SimpleList : public csi::xml::AnElement
+{
+ public:
+ SimpleList()
+ : csi::xml::AnElement("ul") {}
+
+ ListItem & AddItem(
+ DYN csi::xml::Item* let_dpItem = 0 );
+ private:
+ virtual bool LineBreakAfterBeginTag() const;
+};
+
+
+class ClassAttr : public csi::xml::AnAttribute
+{
+ public:
+ ClassAttr(
+ const ::csv::String & i_sValue )
+ : csi::xml::AnAttribute( String("class"), i_sValue ) {}
+};
+
+class StyleAttr : public csi::xml::AnAttribute
+{
+ public:
+ StyleAttr(
+ const ::csv::String & i_sValue )
+ : csi::xml::AnAttribute( String("style"), i_sValue ) {}
+};
+
+class SizeAttr : public csi::xml::AnAttribute
+{
+ public:
+ SizeAttr(
+ const ::csv::String & i_sValue )
+ : csi::xml::AnAttribute( String("size"), i_sValue ) {}
+};
+
+class ColorAttr : public csi::xml::AnAttribute
+{
+ public:
+ ColorAttr(
+ const ::csv::String & i_sValue )
+ : csi::xml::AnAttribute( String("color"), i_sValue ) {}
+};
+
+class BgColorAttr : public csi::xml::AnAttribute
+{
+ public:
+ BgColorAttr(
+ const ::csv::String & i_sValue )
+ : csi::xml::AnAttribute( String("bgcolor"), i_sValue ) {}
+};
+
+class AlignAttr : public csi::xml::AnAttribute
+{
+ public:
+ AlignAttr(
+ const ::csv::String & i_sValue )
+ : csi::xml::AnAttribute( String("align"), i_sValue ) {}
+};
+
+class VAlignAttr : public csi::xml::AnAttribute
+{
+ public:
+ VAlignAttr(
+ const ::csv::String & i_sValue )
+ : csi::xml::AnAttribute( String("valign"), i_sValue ) {}
+};
+
+class WidthAttr : public csi::xml::AnAttribute
+{
+ public:
+ WidthAttr(
+ const ::csv::String & i_sValue )
+ : csi::xml::AnAttribute( String("width"), i_sValue ) {}
+};
+
+
+
+class Sbr : public csi::xml::XmlCode // Sourcefile lineBreak
+{
+ public:
+ Sbr()
+ : csi::xml::XmlCode("\n") {}
+};
+
+
+} // namespace html
+} // namespace csi
+
+namespace Html = csi::html;
+
+#endif
+
+