diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kivio/kiviopart/KIvioStencilIface.cc | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kivio/kiviopart/KIvioStencilIface.cc')
-rw-r--r-- | kivio/kiviopart/KIvioStencilIface.cc | 176 |
1 files changed, 176 insertions, 0 deletions
diff --git a/kivio/kiviopart/KIvioStencilIface.cc b/kivio/kiviopart/KIvioStencilIface.cc new file mode 100644 index 00000000..9b91bcf6 --- /dev/null +++ b/kivio/kiviopart/KIvioStencilIface.cc @@ -0,0 +1,176 @@ +#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*/ ) +{ + +} + +QRect KivioStencilIface::rect() +{ + return QRect(); +} + +void KivioStencilIface::setPosition( double /*f1*/, double /*f2*/ ) +{ + +} + +void KivioStencilIface::setDimensions( double /*f1*/, double /*f2*/ ) +{ + +} + +QColor KivioStencilIface::fgColor() +{ + return QColor(); +} + +void KivioStencilIface::setFGColor( QColor ) +{ + +} + +void KivioStencilIface::setBGColor( QColor ) +{ + +} + +QColor KivioStencilIface::bgColor() +{ + return QColor(); +} + +void KivioStencilIface::setLineWidth( double ) +{ + +} +double KivioStencilIface::lineWidth() +{ + return 0.0; +} + +// FOnt stuff +QColor KivioStencilIface::textColor() +{ + return QColor(); +} + +void KivioStencilIface::setTextColor( QColor ) +{ + +} + +QFont KivioStencilIface::textFont() +{ + return QFont(); +} + +void KivioStencilIface::setTextFont( const QFont & ) +{ + +} + +int KivioStencilIface::hTextAlign() +{ + return 0; +} + +int KivioStencilIface::vTextAlign() +{ + return 0; +} + +void KivioStencilIface::setHTextAlign(int) +{ + +} + +void KivioStencilIface::setVTextAlign(int) +{ + +} + +void KivioStencilIface::setText( const QString & ) +{ + +} + +QString KivioStencilIface::text() +{ + return QString::null; +} + +bool KivioStencilIface::isSelected() +{ + return false; +} + +void KivioStencilIface::select() +{ + +} + +void KivioStencilIface::unselect() +{ + +} + +void KivioStencilIface::subSelect( const double &, const double & ) +{ + +} |