arabica/include/DOM/Text.hpp

66 lines
1.8 KiB
C++
Raw Normal View History

2002-06-21 13:16:28 +02:00
#ifndef JEZUK_DOM_TEXT_H
#define JEZUK_DOM_TEXT_H
////////////////////////////
// C++ DOM definition
//
// $Id$
////////////////////////////
2007-09-05 00:55:47 +02:00
#include <DOM/CharacterData.hpp>
2002-06-21 13:16:28 +02:00
2007-09-05 13:47:13 +02:00
namespace Arabica
{
2002-06-21 13:16:28 +02:00
namespace DOM
{
template<class stringT, class string_adaptorT> class Text_impl;
2002-06-21 13:16:28 +02:00
template<class stringT, class string_adaptorT = Arabica::default_string_adaptor<stringT> >
class Text : public CharacterData<stringT, string_adaptorT>
2002-06-21 13:16:28 +02:00
{
typedef Text_impl<stringT, string_adaptorT> Text_implT;
2002-06-21 13:16:28 +02:00
public:
typedef Node<stringT, string_adaptorT> NodeT;
typedef CharacterData<stringT, string_adaptorT> CharacterDataT;
Text() : CharacterDataT() { }
explicit Text(Text_implT* impl) : CharacterDataT(impl) { }
Text(const Text& rhs) : CharacterDataT(rhs) { }
explicit Text(const NodeT& rhs) : CharacterDataT(rhs, 0)
2002-06-21 13:16:28 +02:00
{
typename Text::Type type = rhs.getNodeType();
if((type != Text::TEXT_NODE) && (type != Text::CDATA_SECTION_NODE))
//throw std::runtime_error("bad_cast: Cannot cast Node to Text");
throw std::bad_cast();
2002-06-21 13:16:28 +02:00
} // Text
2005-08-30 13:35:12 +02:00
protected:
Text(const NodeT& rhs, int dummy) : CharacterDataT(rhs, 0) { }
2005-08-30 13:35:12 +02:00
2002-06-21 13:16:28 +02:00
Text splitText(int offset)
{
return tImpl()->splitText(offset);
} // splitText
protected:
Text_implT* tImpl() const { return dynamic_cast<Text_implT*>(CharacterDataT::impl()); }
2002-06-21 13:16:28 +02:00
}; // class Text
////////////////////////////////////////////////////////////////////
template<class stringT, class string_adaptorT>
class Text_impl : virtual public CharacterData_impl<stringT, string_adaptorT>
2002-06-21 13:16:28 +02:00
{
public:
virtual ~Text_impl() { }
////////////////////////////////////////////////////////////
// DOM::Text methods
virtual Text_impl<stringT, string_adaptorT>* splitText(int offset) = 0;
2002-06-21 13:16:28 +02:00
}; // Text_impl
} // namespace DOM
2007-09-05 13:47:13 +02:00
} // namespace Arabica
2002-06-21 13:16:28 +02:00
#endif