diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kghostview/scrollbox.cpp | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kghostview/scrollbox.cpp')
-rw-r--r-- | kghostview/scrollbox.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/kghostview/scrollbox.cpp b/kghostview/scrollbox.cpp index 8be3ab61..d318ec31 100644 --- a/kghostview/scrollbox.cpp +++ b/kghostview/scrollbox.cpp @@ -16,19 +16,19 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include <qdrawutil.h> -#include <qpainter.h> -#include <qpixmap.h> +#include <tqdrawutil.h> +#include <tqpainter.h> +#include <tqpixmap.h> #include "scrollbox.h" -ScrollBox::ScrollBox( QWidget* parent, const char* name ) - : QFrame( parent, name ) +ScrollBox::ScrollBox( TQWidget* parent, const char* name ) + : TQFrame( parent, name ) { setFrameStyle( Panel | Sunken ); } -void ScrollBox::mousePressEvent( QMouseEvent* e ) +void ScrollBox::mousePressEvent( TQMouseEvent* e ) { mouse = e->pos(); if( e->button() == RightButton ) @@ -37,7 +37,7 @@ void ScrollBox::mousePressEvent( QMouseEvent* e ) emit button2Pressed(); } -void ScrollBox::mouseMoveEvent( QMouseEvent* e ) +void ScrollBox::mouseMoveEvent( TQMouseEvent* e ) { if( e->state() != LeftButton ) return; @@ -47,21 +47,21 @@ void ScrollBox::mouseMoveEvent( QMouseEvent* e ) // Notify the word what the view position has changed // The word in turn will notify as that view position has changed - // Even if coordinates are out of range QScrollView handles + // Even if coordinates are out of range TQScrollView handles // this properly - emit valueChanged( QPoint( viewpos.x() + dx, viewpos.y() + dy ) ); + emit valueChanged( TQPoint( viewpos.x() + dx, viewpos.y() + dy ) ); emit valueChangedRelative( dx, dy ); mouse = e->pos(); } -void ScrollBox::resizeEvent( QResizeEvent * ) +void ScrollBox::resizeEvent( TQResizeEvent * ) { if ( paletteBackgroundPixmap() ) setPaletteBackgroundPixmap( paletteBackgroundPixmap()->convertToImage().smoothScale( size() ) ); } -void ScrollBox::drawContents( QPainter* paint ) +void ScrollBox::drawContents( TQPainter* paint ) { if ( pagesize.isEmpty() ) return; @@ -75,7 +75,7 @@ void ScrollBox::drawContents( QPainter* paint ) * */ - QRect c( contentsRect() ); + TQRect c( contentsRect() ); paint -> setPen( Qt::red ); @@ -92,30 +92,30 @@ void ScrollBox::drawContents( QPainter* paint ) paint->drawRect( x, y, w, h ); } -void ScrollBox::setPageSize( const QSize& s ) +void ScrollBox::setPageSize( const TQSize& s ) { pagesize = s; setFixedHeight( s.height() * width() / s.width() ); repaint(); } -void ScrollBox::setViewSize( const QSize& s ) +void ScrollBox::setViewSize( const TQSize& s ) { viewsize = s; repaint(); } -void ScrollBox::setViewPos( const QPoint& pos ) +void ScrollBox::setViewPos( const TQPoint& pos ) { viewpos = pos; repaint(); } -void ScrollBox::setThumbnail( QPixmap img ) +void ScrollBox::setThumbnail( TQPixmap img ) { // The line below is needed to work around certain "features" of styles such as liquid // see bug:61711 for more info (LPC, 20 Aug '03) - setBackgroundOrigin( QWidget::WidgetOrigin ); + setBackgroundOrigin( TQWidget::WidgetOrigin ); setPaletteBackgroundPixmap( img.convertToImage().smoothScale( size() ) ); } |