/* This file is part of the KDE project Copyright 2002 Laurent Montel Copyright 2002 Philipp Mueller Copyright 2002 John Dailey 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 "KSpreadLayoutIface.h" #include #include "kspread_format.h" using namespace KSpread; LayoutIface::LayoutIface(Format *_layout) { layout=_layout; } void LayoutIface::setBgColor(const TQString& _c) { TQColor c(_c); layout->setBgColor(c); } void LayoutIface::setBgColor(int r,int g,int b) { TQColor c(r,g,b); layout->setBgColor(c); } void LayoutIface::setTextColor(int r,int g,int b) { TQColor c(r,g,b); layout->setTextColor(c); } void LayoutIface::setTextColor(const TQString& _c) { TQColor c(_c); layout->setTextColor(c); } void LayoutIface::setAngle(int angle) { layout->setAngle(angle); } void LayoutIface::setVerticalText(bool _vertical) { layout->setVerticalText(_vertical); } void LayoutIface::setMultiRow(bool _multi) { layout->setMultiRow( _multi ); } void LayoutIface::setAlign( const TQString& _Align ) { Format::Align Align; if(_Align=="Left") Align=Format::Left; else if(_Align=="Right") Align=Format::Right; else if(_Align=="Center") Align=Format::Center; else Align=Format::Undefined; layout->setAlign( Align); } void LayoutIface::setAlignY( const TQString& _AlignY ) { Format::AlignY AlignY; if(_AlignY=="Top") AlignY=Format::Top; else if(_AlignY=="Middle") AlignY=Format::Middle; else if(_AlignY=="Bottom") AlignY=Format::Bottom; else AlignY=Format::Middle; layout->setAlignY( AlignY); } void LayoutIface::setPostfix(const TQString &_postfix) { layout->setPostfix( _postfix ); } void LayoutIface::setPrefix(const TQString &_prefix) { layout->setPrefix( _prefix ); } void LayoutIface::setFormatType(const TQString &_formatType) { FormatType format; layout->setPrecision(2); if (_formatType=="Generic") format = Generic_format; else if(_formatType=="Number") format=Number_format; else if(_formatType=="Money") format=Money_format; else if(_formatType=="Percentage") format=Percentage_format; else if(_formatType=="Scientific") format=Scientific_format; else if(_formatType=="ShortDate") format=ShortDate_format; else if(_formatType=="TextDate") format=TextDate_format; else if(_formatType=="Time") format=Time_format; else if(_formatType=="SecondeTime") format=SecondeTime_format; else if(_formatType=="fraction_half") format=fraction_half; else if(_formatType=="fraction_quarter") format=fraction_quarter; else if(_formatType=="fraction_eighth") format=fraction_eighth; else if(_formatType=="fraction_sixteenth") format=fraction_sixteenth; else if(_formatType=="fraction_tenth") format=fraction_tenth; else if(_formatType=="fraction_hundredth") format=fraction_hundredth; else if(_formatType=="fraction_one_digit") format=fraction_one_digit; else if(_formatType=="fraction_two_digits") format=fraction_two_digits; else if(_formatType=="fraction_three_digits") format=fraction_three_digits; else format=Generic_format; layout->setFormatType( format); } void LayoutIface::setPrecision(int _p) { layout->setPrecision( _p ); } void LayoutIface::setTextFontBold(bool _b) { layout->setTextFontBold( _b ); } void LayoutIface::setTextFontItalic(bool _b) { layout->setTextFontItalic( _b ); } void LayoutIface::setTextFontUnderline(bool _b) { layout->setTextFontUnderline( _b ); } void LayoutIface::setTextFontStrike(bool _b) { layout->setTextFontStrike( _b ); } void LayoutIface::setTextFontSize( int _size ) { layout->setTextFontSize( _size ); } void LayoutIface::setTextFontFamily( const TQString& _font ) { layout->setTextFontFamily( _font ); } //border left void LayoutIface::setLeftBorderStyle( const TQString& _style ) { if(_style=="DotLine") layout->setLeftBorderStyle(TQt::DotLine); else if(_style=="DashLine") layout->setLeftBorderStyle(TQt::DashLine); else if(_style=="DashDotLine") layout->setLeftBorderStyle(TQt::DashDotLine); else if(_style=="DashDotDotLine") layout->setLeftBorderStyle(TQt::DashDotDotLine); else if(_style=="SolidLine") layout->setLeftBorderStyle(TQt::SolidLine); else layout->setLeftBorderStyle(TQt::SolidLine); } void LayoutIface::setLeftBorderColor(const TQString& _c) { TQColor c(_c); layout->setLeftBorderColor(c ); } void LayoutIface::setLeftBorderColor(int r,int g,int b) { TQColor c(r,g,b); layout->setLeftBorderColor(c ); } void LayoutIface::setLeftBorderWidth( int _size ) { layout->setLeftBorderWidth( _size ); } //border right void LayoutIface::setRightBorderStyle( const TQString& _style ) { if(_style=="DotLine") layout->setRightBorderStyle(TQt::DotLine); else if(_style=="DashLine") layout->setRightBorderStyle(TQt::DashLine); else if(_style=="DashDotLine") layout->setRightBorderStyle(TQt::DashDotLine); else if(_style=="DashDotDotLine") layout->setRightBorderStyle(TQt::DashDotDotLine); else if(_style=="SolidLine") layout->setRightBorderStyle(TQt::SolidLine); else layout->setRightBorderStyle(TQt::SolidLine); } void LayoutIface::setRightBorderColor(const TQString& _c) { TQColor c(_c); layout->setRightBorderColor(c ); } void LayoutIface::setRightBorderColor(int r,int g,int b) { TQColor c(r,g,b); layout->setRightBorderColor(c ); } void LayoutIface::setRightBorderWidth( int _size ) { layout->setRightBorderWidth( _size ); } //border top void LayoutIface::setTopBorderStyle( const TQString& _style ) { if(_style=="DotLine") layout->setTopBorderStyle(TQt::DotLine); else if(_style=="DashLine") layout->setTopBorderStyle(TQt::DashLine); else if(_style=="DashDotLine") layout->setTopBorderStyle(TQt::DashDotLine); else if(_style=="DashDotDotLine") layout->setTopBorderStyle(TQt::DashDotDotLine); else if(_style=="SolidLine") layout->setTopBorderStyle(TQt::SolidLine); else layout->setTopBorderStyle(TQt::SolidLine); } void LayoutIface::setTopBorderColor(const TQString& _c) { TQColor c(_c); layout->setTopBorderColor(c ); } void LayoutIface::setTopBorderColor(int r,int g,int b) { TQColor c(r,g,b); layout->setTopBorderColor(c ); } void LayoutIface::setTopBorderWidth( int _size ) { layout->setTopBorderWidth( _size ); } //border bottom void LayoutIface::setBottomBorderStyle( const TQString& _style ) { if(_style=="DotLine") layout->setBottomBorderStyle(TQt::DotLine); else if(_style=="DashLine") layout->setBottomBorderStyle(TQt::DashLine); else if(_style=="DashDotLine") layout->setBottomBorderStyle(TQt::DashDotLine); else if(_style=="DashDotDotLine") layout->setBottomBorderStyle(TQt::DashDotDotLine); else if(_style=="SolidLine") layout->setBottomBorderStyle(TQt::SolidLine); else layout->setBottomBorderStyle(TQt::SolidLine); } void LayoutIface::setBottomBorderColor(const TQString& _c) { TQColor c(_c); layout->setBottomBorderColor(c ); } void LayoutIface::setBottomBorderColor(int r,int g,int b) { TQColor c(r,g,b); layout->setBottomBorderColor(c ); } void LayoutIface::setBottomBorderWidth( int _size ) { layout->setBottomBorderWidth( _size ); } //fall back diagonal void LayoutIface::setFallDiagonalStyle( const TQString& _style ) { if(_style=="DotLine") layout->setFallDiagonalStyle(TQt::DotLine); else if(_style=="DashLine") layout->setFallDiagonalStyle(TQt::DashLine); else if(_style=="DashDotLine") layout->setFallDiagonalStyle(TQt::DashDotLine); else if(_style=="DashDotDotLine") layout->setFallDiagonalStyle(TQt::DashDotDotLine); else if(_style=="SolidLine") layout->setFallDiagonalStyle(TQt::SolidLine); else layout->setFallDiagonalStyle(TQt::SolidLine); } void LayoutIface::setFallDiagonalColor(const TQString& _c) { TQColor c(_c); layout->setFallDiagonalColor(c ); } void LayoutIface::setFallDiagonalColor(int r,int g,int b) { TQColor c(r,g,b); layout->setFallDiagonalColor(c ); } void LayoutIface::setFallDiagonalWidth( int _size ) { layout->setFallDiagonalWidth( _size ); } //GoUpDiagonal void LayoutIface::setGoUpDiagonalStyle( const TQString& _style ) { if(_style=="DotLine") layout->setGoUpDiagonalStyle(TQt::DotLine); else if(_style=="DashLine") layout->setGoUpDiagonalStyle(TQt::DashLine); else if(_style=="DashDotLine") layout->setGoUpDiagonalStyle(TQt::DashDotLine); else if(_style=="DashDotDotLine") layout->setGoUpDiagonalStyle(TQt::DashDotDotLine); else if(_style=="SolidLine") layout->setGoUpDiagonalStyle(TQt::SolidLine); else layout->setGoUpDiagonalStyle(TQt::SolidLine); } void LayoutIface::setGoUpDiagonalColor(const TQString& _c) { TQColor c(_c); layout->setGoUpDiagonalColor(c ); } void LayoutIface::setGoUpDiagonalColor(int r,int g,int b) { TQColor c(r,g,b); layout->setGoUpDiagonalColor(c ); } void LayoutIface::setGoUpDiagonalWidth( int _size ) { layout->setGoUpDiagonalWidth( _size ); } void LayoutIface::setIndent( double indent ) { if( indent >= 0.0 ) layout->setIndent( indent ); else layout->setIndent( 0.0 ); } void LayoutIface::setDontPrintText ( bool _print) { layout->setDontPrintText ( _print); }