You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.1 KiB
125 lines
3.1 KiB
// -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; -*-
|
|
/* 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 "KPrObject2DIface.h"
|
|
#include "KPrObjectIface.h"
|
|
|
|
#include "KPrObject.h"
|
|
#include <kdebug.h>
|
|
#include <tdeapplication.h>
|
|
#include <dcopclient.h>
|
|
|
|
KPrObject2DIface::KPrObject2DIface(KPr2DObject *obj_)
|
|
: KPrObjectIface(obj_)
|
|
{
|
|
obj = obj_;
|
|
}
|
|
|
|
TQColor KPrObject2DIface::gradientColor1() const
|
|
{
|
|
return obj->getGColor1();
|
|
}
|
|
|
|
TQColor KPrObject2DIface::gradientColor2() const
|
|
{
|
|
return obj->getGColor2();
|
|
}
|
|
|
|
void KPrObject2DIface::setGUnbalanced( bool b )
|
|
{
|
|
obj->setGUnbalanced(b);
|
|
}
|
|
|
|
void KPrObject2DIface::setGXFactor( int f )
|
|
{
|
|
obj->setGXFactor(f);
|
|
}
|
|
|
|
void KPrObject2DIface::setGYFactor( int f )
|
|
{
|
|
obj->setGYFactor(f);
|
|
}
|
|
|
|
int KPrObject2DIface::xGradientFactor() const
|
|
{
|
|
return obj->getGXFactor();
|
|
}
|
|
|
|
int KPrObject2DIface::yGradientFactor() const
|
|
{
|
|
return obj->getGYFactor();
|
|
}
|
|
|
|
TQString KPrObject2DIface::gradientFillType() const
|
|
{
|
|
switch(obj->getFillType())
|
|
{
|
|
case FT_BRUSH:
|
|
return TQString("BRUSH");
|
|
case FT_GRADIENT:
|
|
return TQString("GRADIENT");
|
|
}
|
|
return TQString();
|
|
}
|
|
|
|
void KPrObject2DIface::setGradientType( const TQString & type)
|
|
{
|
|
if(type=="PLAIN")
|
|
obj->setGType(BCT_PLAIN);
|
|
else if(type=="GHORZ")
|
|
obj->setGType(BCT_GHORZ);
|
|
else if(type=="GVERT")
|
|
obj->setGType(BCT_GVERT);
|
|
else if(type=="GDIAGONAL1")
|
|
obj->setGType(BCT_GDIAGONAL1);
|
|
else if(type=="GDIAGONAL2")
|
|
obj->setGType(BCT_GDIAGONAL2);
|
|
else if(type=="GCIRCLE")
|
|
obj->setGType(BCT_GCIRCLE);
|
|
else if(type=="GRECT")
|
|
obj->setGType(BCT_GRECT);
|
|
else if(type=="GPIPECROSS")
|
|
obj->setGType(BCT_GPIPECROSS);
|
|
else if(type=="GPYRAMID")
|
|
obj->setGType(BCT_GPYRAMID);
|
|
else
|
|
kdDebug(33001)<<"Error KPrObject2DIface::setGradientType\n";
|
|
}
|
|
|
|
void KPrObject2DIface::setFillType( const TQString & type)
|
|
{
|
|
if(type=="BRUSH")
|
|
obj->setFillType(FT_BRUSH);
|
|
else if(type=="GRADIENT")
|
|
obj->setFillType(FT_GRADIENT);
|
|
else
|
|
kdDebug(33001)<<"Error KPrObject2DIface::setFillType\n";
|
|
}
|
|
|
|
void KPrObject2DIface::setGradientColor1( const TQColor &col )
|
|
{
|
|
obj->setGColor1( col );
|
|
}
|
|
|
|
void KPrObject2DIface::setGradientColor2( const TQColor &col )
|
|
{
|
|
obj->setGColor2( col );
|
|
}
|