summaryrefslogtreecommitdiffstats
path: root/lib/kformula/tokenelement.cc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-05-23 20:48:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-05-29 15:16:28 +0900
commit8b78a8791bc539bcffe7159f9d9714d577cb3d7d (patch)
tree1328291f966f19a22d7b13657d3f01a588eb1083 /lib/kformula/tokenelement.cc
parent95834e2bdc5e01ae1bd21ac0dfa4fa1d2417fae9 (diff)
downloadkoffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.tar.gz
koffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/kformula/tokenelement.cc')
-rw-r--r--lib/kformula/tokenelement.cc124
1 files changed, 0 insertions, 124 deletions
diff --git a/lib/kformula/tokenelement.cc b/lib/kformula/tokenelement.cc
deleted file mode 100644
index 9970ac45..00000000
--- a/lib/kformula/tokenelement.cc
+++ /dev/null
@@ -1,124 +0,0 @@
-/* This file is part of the KDE project
- Copyright (C) 2006 Alfredo Beaumont Sainz <alfredo.beaumont@gmail.com>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library 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
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
-*/
-
-#include <algorithm>
-
-#include <tqpainter.h>
-
-#include <tdelocale.h>
-
-#include "entities.h"
-#include "elementtype.h"
-#include "sequenceelement.h"
-#include "textelement.h"
-#include "glyphelement.h"
-#include "tokenelement.h"
-#include "identifierelement.h"
-#include "kformulacommand.h"
-#include "kformulacontainer.h"
-#include "kformuladocument.h"
-#include "formulaelement.h"
-#include "creationstrategy.h"
-
-KFORMULA_NAMESPACE_BEGIN
-
-TokenElement::TokenElement( BasicElement* parent ) : TokenStyleElement( parent ),
- m_textOnly( true )
-{
-}
-
-int TokenElement::buildChildrenFromMathMLDom(TQPtrList<BasicElement>& list, TQDomNode n)
-{
- while ( ! n.isNull() ) {
- if ( n.isText() ) {
- TQString textelements = n.toText().data();
- textelements = textelements.stripWhiteSpace();
-
- for (uint i = 0; i < textelements.length(); i++) {
- TextElement* child = new TextElement(textelements[i]);
- child->setParent(this);
- child->setCharFamily( charFamily() );
- child->setCharStyle( charStyle() );
- list.append(child);
- }
- }
- else if ( n.isEntityReference() ) {
- TQString entity = n.toEntityReference().nodeName();
- const entityMap* begin = entities;
- const entityMap* end = entities + entityMap::size();
- const entityMap* pos = std::lower_bound( begin, end, entity.ascii() );
- if ( pos == end || TQString( pos->name ) != entity ) {
- kdWarning() << "Invalid entity refererence: " << entity << endl;
- }
- else {
- TextElement* child = new TextElement( TQChar( pos->unicode ) );
- child->setParent(this);
- child->setCharFamily( charFamily() );
- child->setCharStyle( charStyle() );
- list.append(child);
- }
- }
- else if ( n.isElement() ) {
- m_textOnly = false;
- // Only mglyph element is allowed
- TQDomElement e = n.toElement();
- if ( e.tagName().lower() != "mglyph" ) {
- kdWarning( DEBUGID ) << "Invalid element inside Token Element\n";
- return -1;
- }
- GlyphElement* child = new GlyphElement();
- child->setParent(this);
- child->setCharFamily( charFamily() );
- child->setCharStyle( charStyle() );
- if ( child->buildFromMathMLDom( e ) == -1 ) {
- return -1;
- }
- list.append( child );
- }
- else {
- kdWarning() << "Invalid content in TokenElement\n";
- }
- n = n.nextSibling();
- }
-// parse();
- kdWarning() << "Num of children " << list.count() << endl;
- return 1;
-}
-
-luPt TokenElement::getSpaceBefore( const ContextStyle& context,
- ContextStyle::TextStyle tstyle,
- double factor )
-{
- if ( !context.isScript( tstyle ) ) {
- return context.getMediumSpace( tstyle, factor );
- }
- return 0;
-}
-
-luPt TokenElement::getSpaceAfter( const ContextStyle& context,
- ContextStyle::TextStyle tstyle,
- double factor )
-{
- if ( !context.isScript( tstyle ) ) {
- return context.getThinSpace( tstyle, factor );
- }
- return 0;
-}
-
-KFORMULA_NAMESPACE_END