174 lines
3.4 KiB
C++
174 lines
3.4 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*************************************************************************
|
|
*
|
|
* 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.
|
|
*
|
|
************************************************************************/
|
|
|
|
#include <precomp.h>
|
|
#include <udm/html/htmlitem.hxx>
|
|
|
|
// NOT FULLY DECLARED SERVICES
|
|
|
|
|
|
namespace csi
|
|
{
|
|
namespace html
|
|
{
|
|
|
|
using namespace csi::xml;
|
|
|
|
template <class ELEM>
|
|
inline ELEM &
|
|
PushElem( Element & i_rMain,
|
|
DYN ELEM * let_dpSub,
|
|
DYN Item * let_dpItem )
|
|
{
|
|
i_rMain << let_dpSub;
|
|
if ( let_dpItem != 0 )
|
|
*let_dpSub << let_dpItem;
|
|
return *let_dpSub;
|
|
}
|
|
|
|
|
|
bool
|
|
Body::LineBreakAfterBeginTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
Paragraph::LineBreakAfterEndTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
const char *
|
|
Headline::sTags[6] = { "h1", "h2", "h3", "h4", "h5", "h6" };
|
|
|
|
bool
|
|
Headline::LineBreakAfterEndTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
TableCell::LineBreakAfterEndTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
TableRow::LineBreakAfterBeginTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
Table::Table( const String & i_sBorder,
|
|
const String & i_sWidth,
|
|
const String & i_sCellPadding,
|
|
const String & i_sCellSpacing )
|
|
: csi::xml::AnElement("table")
|
|
{
|
|
if ( i_sBorder.length() > 0 )
|
|
*this << new AnAttribute(String("border"),i_sBorder);
|
|
if ( i_sBorder.length() > 0 )
|
|
*this << new AnAttribute(String("width"),i_sWidth);
|
|
if ( i_sBorder.length() > 0 )
|
|
*this << new AnAttribute(String("cellpadding"),i_sCellPadding);
|
|
if ( i_sBorder.length() > 0 )
|
|
*this << new AnAttribute(String("cellspacing"),i_sCellSpacing);
|
|
}
|
|
|
|
TableRow &
|
|
Table::AddRow()
|
|
{
|
|
TableRow * ret = new TableRow;
|
|
*this << ret;
|
|
return *ret;
|
|
}
|
|
|
|
bool
|
|
Table::FinishEmptyTag_XmlStyle() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
Table::LineBreakAfterBeginTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
DefListTerm::LineBreakAfterEndTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
DefListDefinition::LineBreakAfterEndTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
DefList::LineBreakAfterBeginTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
DefList::FinishEmptyTag_XmlStyle() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
ListItem::LineBreakAfterEndTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
NumeratedList::LineBreakAfterBeginTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
SimpleList::LineBreakAfterBeginTag() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
} // namespace html
|
|
} // namespace csi
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|