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.
177 lines
2.1 KiB
177 lines
2.1 KiB
#include "kivio_stencil.h"
|
|
#include "KIvioStencilIface.h"
|
|
|
|
KivioStencilIface::KivioStencilIface( KivioStencil *s ) :
|
|
DCOPObject(), stencil(s)
|
|
{
|
|
|
|
}
|
|
DCOPRef KivioStencilIface::ref()
|
|
{
|
|
return DCOPRef(this);
|
|
}
|
|
// DCOPRef duplicate();
|
|
|
|
bool KivioStencilIface::connected()
|
|
{
|
|
return false;
|
|
}
|
|
void KivioStencilIface::setConnected(bool /*c*/)
|
|
{
|
|
|
|
}
|
|
|
|
double KivioStencilIface::x()
|
|
{
|
|
return 0.0;
|
|
}
|
|
void KivioStencilIface::setX( double /*f*/ )
|
|
{
|
|
|
|
}
|
|
|
|
double KivioStencilIface::y()
|
|
{
|
|
return 0.0;
|
|
}
|
|
|
|
void KivioStencilIface::setY( double /*f*/ )
|
|
{
|
|
|
|
}
|
|
|
|
double KivioStencilIface::w()
|
|
{
|
|
return 0.0;
|
|
}
|
|
|
|
void KivioStencilIface::setW( double /*f*/ )
|
|
{
|
|
|
|
}
|
|
|
|
double KivioStencilIface::h()
|
|
{
|
|
return 0.0;
|
|
}
|
|
|
|
void KivioStencilIface::setH( double /*f*/ )
|
|
{
|
|
|
|
}
|
|
|
|
TQRect KivioStencilIface::rect()
|
|
{
|
|
return TQRect();
|
|
}
|
|
|
|
void KivioStencilIface::setPosition( double /*f1*/, double /*f2*/ )
|
|
{
|
|
|
|
}
|
|
|
|
void KivioStencilIface::setDimensions( double /*f1*/, double /*f2*/ )
|
|
{
|
|
|
|
}
|
|
|
|
TQColor KivioStencilIface::fgColor()
|
|
{
|
|
return TQColor();
|
|
}
|
|
|
|
void KivioStencilIface::setFGColor( TQColor )
|
|
{
|
|
|
|
}
|
|
|
|
void KivioStencilIface::setBGColor( TQColor )
|
|
{
|
|
|
|
}
|
|
|
|
TQColor KivioStencilIface::bgColor()
|
|
{
|
|
return TQColor();
|
|
}
|
|
|
|
void KivioStencilIface::setLineWidth( double )
|
|
{
|
|
|
|
}
|
|
double KivioStencilIface::lineWidth()
|
|
{
|
|
return 0.0;
|
|
}
|
|
|
|
// FOnt stuff
|
|
TQColor KivioStencilIface::textColor()
|
|
{
|
|
return TQColor();
|
|
}
|
|
|
|
void KivioStencilIface::setTextColor( TQColor )
|
|
{
|
|
|
|
}
|
|
|
|
TQFont KivioStencilIface::textFont()
|
|
{
|
|
return TQFont();
|
|
}
|
|
|
|
void KivioStencilIface::setTextFont( const TQFont & )
|
|
{
|
|
|
|
}
|
|
|
|
int KivioStencilIface::hTextAlign()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int KivioStencilIface::vTextAlign()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void KivioStencilIface::setHTextAlign(int)
|
|
{
|
|
|
|
}
|
|
|
|
void KivioStencilIface::setVTextAlign(int)
|
|
{
|
|
|
|
}
|
|
|
|
void KivioStencilIface::setText( const TQString & )
|
|
{
|
|
|
|
}
|
|
|
|
TQString KivioStencilIface::text()
|
|
{
|
|
return TQString();
|
|
}
|
|
|
|
bool KivioStencilIface::isSelected()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void KivioStencilIface::select()
|
|
{
|
|
|
|
}
|
|
|
|
void KivioStencilIface::unselect()
|
|
{
|
|
|
|
}
|
|
|
|
void KivioStencilIface::subSelect( const double &, const double & )
|
|
{
|
|
|
|
}
|