You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
966 B
C++
47 lines
966 B
C++
#include "KoListStyleStack.h"
|
|
#include <KoDom.h>
|
|
#include <KoXmlNS.h>
|
|
|
|
KoListStyleStack::KoListStyleStack()
|
|
: m_initialLevel( 0 )
|
|
{
|
|
}
|
|
|
|
KoListStyleStack::~KoListStyleStack()
|
|
{
|
|
}
|
|
|
|
void KoListStyleStack::pop()
|
|
{
|
|
m_stack.pop();
|
|
}
|
|
|
|
void KoListStyleStack::push( const QDomElement& style )
|
|
{
|
|
m_stack.push( style );
|
|
}
|
|
|
|
void KoListStyleStack::setInitialLevel( int initialLevel )
|
|
{
|
|
Q_ASSERT( m_stack.isEmpty() );
|
|
m_initialLevel = initialLevel;
|
|
}
|
|
|
|
QDomElement KoListStyleStack::currentListStyle() const
|
|
{
|
|
Q_ASSERT( !m_stack.isEmpty() );
|
|
return m_stack.top();
|
|
}
|
|
|
|
QDomElement KoListStyleStack::currentListStyleProperties() const
|
|
{
|
|
QDomElement style = currentListStyle();
|
|
return KoDom::namedItemNS( style, KoXmlNS::style, "list-level-properties" );
|
|
}
|
|
|
|
QDomElement KoListStyleStack::currentListStyleTextProperties() const
|
|
{
|
|
QDomElement style = currentListStyle();
|
|
return KoDom::namedItemNS( style, KoXmlNS::style, "text-properties" );
|
|
}
|