/* This file is part of the KDE project Copyright (C) 2002, Laurent MONTEL 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. */ #ifndef KOTEXTVIEW_IFACE_H #define KOTEXTVIEW_IFACE_H #include #include #include #include #include #include class KoTextView; class KOTEXT_EXPORT KoTextViewIface : public DCOPObject { K_DCOP public: KoTextViewIface( KoTextView *_textview ); k_dcop: void insertSoftHyphen(); void insertNonbreakingSpace(); void insertNonbreakingHyphen(); void insertText( const TQString &text ); void newParagraph(); void setBold(bool b); void setItalic(bool on); void setUnderline(bool on); void setDoubleUnderline(bool on); void setStrikeOut(bool on); void setPointSize( int s ); void setTextSubScript(bool on); void setTextSuperScript(bool on); void setUnderlineColor( const TQColor & color ); void setDefaultFormat(); void setRelativeTextSize( double _size); TQColor textColor() const; TQString textFontFamily()const; TQColor textBackgroundColor()const; TQColor textUnderlineColor() const; bool textDoubleUnderline() const; bool textItalic() const; bool textBold() const; bool textUnderline()const; bool textStrikeOut()const; bool textSubScript() const; bool textSuperScript() const; // TODO text shadow double relativeTextSize() const; bool wordByWord() const; void setWordByWord( bool _b ); void setTextColor(const TQColor &color); void setTextBackgroundColor(const TQColor &); void setAlign(int align); void setAlign(const TQString &); bool isReadWrite() const ; void setReadWrite( bool b ); void hideCursor(); void showCursor(); int cursorParagraph() const; int cursorIndex() const; void moveCursorLeft(bool select); void moveCursorRight(bool select); void moveCursorUp(bool select); void moveCursorDown(bool select); void moveCursorHome(bool select); void moveCursorEnd(bool select); void moveCursorWordRight(bool select); void moveCursorWordLeft(bool select); void moveCursorLineEnd(bool select); void moveCursorLineStart(bool select); bool paragraphHasBorder() const; //return line spacing in pt double lineSpacing() const; double rightMargin() const; double leftMargin() const; double marginFirstLine() const; double spaceAfterParag() const; double spaceBeforeParag() const; void setMarginFirstLine(double pt); void setLineSpacing(double pt); void setLeftMargin(double pt); void setRightMargin(double pt); void setSpaceBeforeParag(double pt); void setSpaceAfterParag(double pt); // apply border, for the futur add border style void setLeftBorder( const TQColor & c,double width ); void setRightBorder( const TQColor & c,double width ); void setTopBorder( const TQColor & c,double width ); void setBottomBorder(const TQColor & c,double width ); void setLeftBorderColor( const TQColor & c ); void setRightBorderColor( const TQColor & c ); void setTopBorderColor( const TQColor & c); void setBottomBorderColor(const TQColor & c ); void setLeftBorderWidth( double _witdh ); void setRightBorderWidth( double _witdh ); void setTopBorderWidth( double _witdh ); void setBottomBorderWidth( double _witdh ); //return border width in pt double leftBorderWidth() const ; double rightBorderWidth() const; double topBorderWidth() const; double bottomBorderWidth() const; TQColor leftBorderColor() const ; TQColor rightBorderColor() const; TQColor topBorderColor() const; TQColor bottomBorderColor() const; void changeCaseOfText( const TQString & caseType); bool isALinkVariable() const; //return false if there is not a link bool changeLinkVariableUrl( const TQString & _url) const; //return false if there is not a link bool changeLinkVariableName( const TQString & _name) const; //be carefull these functions return TQString() when there is not //a variable TQString linkVariableUrl( ) const; TQString linkVariableName( ) const; bool isANoteVariable() const ; TQString noteVariableText() const; //return false if there is not a note variable bool setNoteVariableText(const TQString & note) const; void removeComment(); TQString underlineStyle() const; TQString strikeOutStyle()const; void setLanguage(const TQString & _lang); TQString language() const; void addBookmarks(const TQString &url); void copyLink(); void removeLink(); void copyTextOfComment(); TQString fontAttibute()const; private: KoTextView *m_textView; protected: //TQString lineStyleToString( KoTextFormat::LineStyle _style ) const; }; #endif