diff options
Diffstat (limited to 'kword/KWordFormulaFrameSetEditIface.cpp')
-rw-r--r-- | kword/KWordFormulaFrameSetEditIface.cpp | 276 |
1 files changed, 276 insertions, 0 deletions
diff --git a/kword/KWordFormulaFrameSetEditIface.cpp b/kword/KWordFormulaFrameSetEditIface.cpp new file mode 100644 index 00000000..ebe4cc31 --- /dev/null +++ b/kword/KWordFormulaFrameSetEditIface.cpp @@ -0,0 +1,276 @@ +/* This file is part of the KDE project + Copyright (C) 2002 Laurent MONTEL <lmontel@mandrakesoft.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 "KWordFormulaFrameSetEditIface.h" + +#include "KWFrame.h" +#include "KWFormulaFrameSet.h" +#include "KWDocument.h" +#include <dcopclient.h> +#include <kformulacontainer.h> +#include <kformuladocument.h> +#include <kformulaview.h> + +KWordFormulaFrameSetEditIface::KWordFormulaFrameSetEditIface( KWFormulaFrameSetEdit *_framesetedit ) + :DCOPObject() +{ + m_framesetedit = _framesetedit; +} + +void KWordFormulaFrameSetEditIface::copy() +{ + m_framesetedit->copy(); +} + +void KWordFormulaFrameSetEditIface::cut() +{ + m_framesetedit->cut(); +} + +void KWordFormulaFrameSetEditIface::paste() +{ + m_framesetedit->paste(); +} + +void KWordFormulaFrameSetEditIface::selectAll() +{ + m_framesetedit->selectAll(); +} + +void KWordFormulaFrameSetEditIface::addThinSpace() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addThinSpace(); +} + +void KWordFormulaFrameSetEditIface::addMediumSpace() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addMediumSpace(); +} + +void KWordFormulaFrameSetEditIface::addThickSpace() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addThickSpace(); +} + +void KWordFormulaFrameSetEditIface::addQuadSpace() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addQuadSpace(); +} + +void KWordFormulaFrameSetEditIface::addBracket( int left, int right ) +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument() + ->wrapper()->addBracket( static_cast<KFormula::SymbolType>( left ), + static_cast<KFormula::SymbolType>( right ) ); +} + +void KWordFormulaFrameSetEditIface::addParenthesis() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addParenthesis(); +} + +void KWordFormulaFrameSetEditIface::addSquareBracket() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addSquareBracket(); +} + +void KWordFormulaFrameSetEditIface::addCurlyBracket() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addCurlyBracket(); +} + +void KWordFormulaFrameSetEditIface::addLineBracket() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addLineBracket(); +} + +void KWordFormulaFrameSetEditIface::addFraction() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addFraction(); +} + +void KWordFormulaFrameSetEditIface::addRoot() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addRoot(); +} + +void KWordFormulaFrameSetEditIface::addIntegral() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addIntegral(); +} + +void KWordFormulaFrameSetEditIface::addProduct() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addProduct(); +} + +void KWordFormulaFrameSetEditIface::addSum() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addSum(); +} + +void KWordFormulaFrameSetEditIface::addMatrix() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addMatrix(); +} + +void KWordFormulaFrameSetEditIface::addMatrix( uint rows, uint columns ) +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addMatrix( rows, columns ); +} + +void KWordFormulaFrameSetEditIface::addOneByTwoMatrix() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addOneByTwoMatrix(); +} + +void KWordFormulaFrameSetEditIface::addNameSequence() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addNameSequence(); +} + +void KWordFormulaFrameSetEditIface::addLowerLeftIndex() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addLowerLeftIndex(); +} + +void KWordFormulaFrameSetEditIface::addUpperLeftIndex() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addUpperLeftIndex(); +} + +void KWordFormulaFrameSetEditIface::addLowerRightIndex() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addLowerRightIndex(); +} + +void KWordFormulaFrameSetEditIface::addUpperRightIndex() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addUpperRightIndex(); +} + +void KWordFormulaFrameSetEditIface::addGenericLowerIndex() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addGenericLowerIndex(); +} + +void KWordFormulaFrameSetEditIface::addGenericUpperIndex() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addGenericUpperIndex(); +} + +void KWordFormulaFrameSetEditIface::removeEnclosing() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->removeEnclosing(); +} + +void KWordFormulaFrameSetEditIface::makeGreek() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->makeGreek(); +} + +void KWordFormulaFrameSetEditIface::insertSymbol( const QString &name ) +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->insertSymbol( name ); +} + +void KWordFormulaFrameSetEditIface::appendColumn() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->appendColumn(); +} + +void KWordFormulaFrameSetEditIface::insertColumn() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->insertColumn(); +} + +void KWordFormulaFrameSetEditIface::removeColumn() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->removeColumn(); +} + +void KWordFormulaFrameSetEditIface::appendRow() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->appendRow(); +} + +void KWordFormulaFrameSetEditIface::insertRow() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->insertRow(); +} + +void KWordFormulaFrameSetEditIface::removeRow() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->removeRow(); +} + +void KWordFormulaFrameSetEditIface::moveLeft( int flag ) +{ + m_framesetedit->getFormulaView()->moveLeft( flag ); +} + +void KWordFormulaFrameSetEditIface::moveRight( int flag ) +{ + m_framesetedit->getFormulaView()->moveRight( flag ); +} + +void KWordFormulaFrameSetEditIface::moveUp( int flag ) +{ + m_framesetedit->getFormulaView()->moveUp( flag ); +} + +void KWordFormulaFrameSetEditIface::moveDown( int flag ) +{ + m_framesetedit->getFormulaView()->moveDown( flag ); +} + +void KWordFormulaFrameSetEditIface::moveHome( int flag ) +{ + m_framesetedit->getFormulaView()->moveHome( flag ); +} + +void KWordFormulaFrameSetEditIface::moveEnd( int flag ) +{ + m_framesetedit->getFormulaView()->moveEnd( flag ); +} + +bool KWordFormulaFrameSetEditIface::isHome() const +{ + return m_framesetedit->getFormulaView()->isHome(); +} + +bool KWordFormulaFrameSetEditIface::isEnd() const +{ + return m_framesetedit->getFormulaView()->isEnd(); +} + +void KWordFormulaFrameSetEditIface::eraseSelection( int direction ) +{ + m_framesetedit->getFormulaView()->eraseSelection( static_cast<KFormula::Direction>( direction ) ); +} + +void KWordFormulaFrameSetEditIface::addText( const QString &str ) +{ + m_framesetedit->getFormulaView()->addText( str ); +} + +void KWordFormulaFrameSetEditIface::addNegThinSpace() +{ + m_framesetedit->formulaFrameSet()->kWordDocument()->formulaDocument()->wrapper()->addNegThinSpace(); +} |