From eba47f8f0637f451e21348187591e1f1fd58ac74 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 2 Aug 2010 19:23:46 +0000 Subject: TQt conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kview/kimageviewer/canvas.h | 68 +++++++++++++++++++++---------------------- kview/kimageviewer/viewer.cpp | 2 +- kview/kimageviewer/viewer.h | 4 +-- 3 files changed, 37 insertions(+), 37 deletions(-) (limited to 'kview/kimageviewer') diff --git a/kview/kimageviewer/canvas.h b/kview/kimageviewer/canvas.h index 61b565b4..18aae3be 100644 --- a/kview/kimageviewer/canvas.h +++ b/kview/kimageviewer/canvas.h @@ -21,14 +21,14 @@ #ifndef KIMAGEVIEWER_CANVAS_H #define KIMAGEVIEWER_CANVAS_H -class QColor; -class QSize; -class QImage; -class QRect; -class QPoint; -class QWidget; - -#include +class TQColor; +class TQSize; +class TQImage; +class TQRect; +class TQPoint; +class TQWidget; + +#include #include #include namespace KImageViewer @@ -47,7 +47,7 @@ namespace KImageViewer * your program: * *
-   QWidget * widget = KParts::ComponentFactory::createInstanceFromQuery( "KImageViewer/Canvas", QString::null, this );
+   TQWidget * widget = KParts::ComponentFactory::createInstanceFromQuery( "KImageViewer/Canvas", TQString::null, this );
    m_canvas = static_cast( widget->qt_cast( "KImageViewer::Canvas" ) );
    if( ! ( widget && m_canvas ) )
    {
@@ -55,13 +55,13 @@ namespace KImageViewer
      kapp->quit();
    }
    setCentralWidget( widget );
-   connect( widget, SIGNAL( contextPress( const QPoint & ) ), SLOT( mySlot( const QPoint & ) ) );
-   connect( m_canvas->widget(), SIGNAL( contextPress( const QPoint & ) ), SLOT( mySlot( const QPoint & ) ) );
+   connect( widget, TQT_SIGNAL( contextPress( const TQPoint & ) ), TQT_SLOT( mySlot( const TQPoint & ) ) );
+   connect( m_canvas->widget(), TQT_SIGNAL( contextPress( const TQPoint & ) ), TQT_SLOT( mySlot( const TQPoint & ) ) );
    
* * You can't connect signals or slots using KImageViewer::Canvas, because this interface - * doesn't inherit from QObject. But you can cast to QWidget and use that instead (or just - * keep the original pointer to QWidget around, like shown in the example). + * doesn't inherit from TQObject. But you can cast to TQWidget and use that instead (or just + * keep the original pointer to TQWidget around, like shown in the example). * * This interface is not guaranteed to be kept binary or source compatible * until it's finished. So if you're using this interface please get in contact @@ -73,12 +73,12 @@ class KDE_EXPORT Canvas /** * set the background color of the canvas */ - virtual void setBgColor( const QColor & ) = 0; + virtual void setBgColor( const TQColor & ) = 0; /** * returns the current background color */ - virtual const QColor & bgColor() const = 0; + virtual const TQColor & bgColor() const = 0; /** * the depth of the contained image @@ -88,12 +88,12 @@ class KDE_EXPORT Canvas /** * the size of the unzoomed image */ - virtual QSize imageSize() const = 0; + virtual TQSize imageSize() const = 0; /** * the size of the zoomed (current) image */ - virtual QSize currentSize() const = 0; + virtual TQSize currentSize() const = 0; /** * returns the zoom factor @@ -105,7 +105,7 @@ class KDE_EXPORT Canvas * Take care that the canas may delete the image so you probably need to * make a copy of the image if you want to keep it around. */ - virtual const QImage * image() const = 0; + virtual const TQImage * image() const = 0; /** * Scrolls the content so that the point (x, y) is in the top-left corner. @@ -136,7 +136,7 @@ class KDE_EXPORT Canvas * Return the selected rectangle. If nothing is selected the rectangle is * empty but doesn't have to be null. */ - virtual QRect selection() const = 0; + virtual TQRect selection() const = 0; /** * Returns whether the aspect ratio of the image is kept @@ -151,7 +151,7 @@ class KDE_EXPORT Canvas /** * @return the description of the blend effect */ - virtual QString blendEffectDescription( unsigned int ) const { return QString::null; } + virtual TQString blendEffectDescription( unsigned int ) const { return TQString::null; } /** * Sets the blending effect used to create a transition between images @@ -166,23 +166,23 @@ class KDE_EXPORT Canvas /** * @return the current maximum image size */ - virtual const QSize & maximumImageSize() const = 0; + virtual const TQSize & maximumImageSize() const = 0; /** * @return the current minimum image size */ - virtual const QSize & minimumImageSize() const = 0; + virtual const TQSize & minimumImageSize() const = 0; /** - * @return a pointer to the QWidget interface of this object + * @return a pointer to the TQWidget interface of this object */ - virtual QWidget * widget() = 0; + virtual TQWidget * widget() = 0; signals: /** * a mouse button was pressed and a context menu should be openend */ - virtual void contextPress( const QPoint & ) = 0; + virtual void contextPress( const TQPoint & ) = 0; /** * the size of the image has changed (a new image was loaded, or the @@ -190,7 +190,7 @@ class KDE_EXPORT Canvas * * it passes the new size of the image */ - virtual void imageSizeChanged( const QSize & ) = 0; + virtual void imageSizeChanged( const TQSize & ) = 0; /** * The zoom of the image has changed. @@ -201,7 +201,7 @@ class KDE_EXPORT Canvas * The selection has changed. Connect to this signal if you want to * do something with a selection of the image (e.g. crop). */ - virtual void selectionChanged( const QRect & ) = 0; + virtual void selectionChanged( const TQRect & ) = 0; /** * Emitted when an image is finished being shown. If a blend effect is being used @@ -227,7 +227,7 @@ class KDE_EXPORT Canvas /** * The current mouse cursor position on the image. */ - virtual void cursorPos( const QPoint & ) = 0; + virtual void cursorPos( const TQPoint & ) = 0; public slots: /** @@ -239,7 +239,7 @@ class KDE_EXPORT Canvas /** * Give the canvas a new image to show. The zoom level is kept. */ - virtual void setImage( const QImage & ) = 0; + virtual void setImage( const TQImage & ) = 0; /** * Give the canvas a new image to show. @@ -247,7 +247,7 @@ class KDE_EXPORT Canvas * You have to pass the size the image should have when it appears * on screen. */ - virtual void setImage( const QImage &, const QSize & ) = 0; + virtual void setImage( const TQImage &, const TQSize & ) = 0; /** * Set the zoom to be used when showing the image. @@ -257,7 +257,7 @@ class KDE_EXPORT Canvas /** * Fit the image into the requested width and height. */ - virtual void boundImageTo( const QSize & size ) = 0; + virtual void boundImageTo( const TQSize & size ) = 0; /** * Set the maximum size of the image. If this is set the image will @@ -265,7 +265,7 @@ class KDE_EXPORT Canvas * * If you set this to 0x0 the image size may be as big as possible */ - virtual void setMaximumImageSize( const QSize & ) = 0; + virtual void setMaximumImageSize( const TQSize & ) = 0; /** * Set the minimum size of the image. If this is set the image will @@ -273,14 +273,14 @@ class KDE_EXPORT Canvas * * If you set this to 0x0 the image size can be as small as possible */ - virtual void setMinimumImageSize( const QSize & ) = 0; + virtual void setMinimumImageSize( const TQSize & ) = 0; /** * Resize the image to the given size. It will keep the aspect ratio * as long as keepAspectRatio is true (default). The image will be as * large as possible within the given constraints. */ - virtual void resizeImage( const QSize & ) = 0; + virtual void resizeImage( const TQSize & ) = 0; /** * Hides the scrollbars of the canvas. It's still possible to scroll diff --git a/kview/kimageviewer/viewer.cpp b/kview/kimageviewer/viewer.cpp index a74e0de9..1a5890d6 100644 --- a/kview/kimageviewer/viewer.cpp +++ b/kview/kimageviewer/viewer.cpp @@ -22,7 +22,7 @@ namespace KImageViewer { - Viewer::Viewer( QObject * parent, const char * name ) + Viewer::Viewer( TQObject * parent, const char * name ) : KParts::ReadWritePart( parent, name ) { } diff --git a/kview/kimageviewer/viewer.h b/kview/kimageviewer/viewer.h index 647fd9ba..995be8b9 100644 --- a/kview/kimageviewer/viewer.h +++ b/kview/kimageviewer/viewer.h @@ -49,7 +49,7 @@ class KDE_EXPORT Viewer : public KParts::ReadWritePart { Q_OBJECT public: - Viewer( QObject * parent = 0, const char * name = 0 ); + Viewer( TQObject * parent = 0, const char * name = 0 ); virtual ~Viewer(); @@ -77,7 +77,7 @@ class KDE_EXPORT Viewer : public KParts::ReadWritePart * So if you want to display a new image (not change the one shown) this * is the method to use. Else take a look at Canvas::setImage(). */ - virtual void newImage( const QImage & ) = 0; + virtual void newImage( const TQImage & ) = 0; /** * Tell the view to reload the current image. The host for this view -- cgit v1.2.1